A Flash Developer Resource Site

Search:

Type: Posts; User: slingsrat

Page 1 of 10 1 2 3 4

Search: Search took 0.06 seconds.

  1. Flash8 Hello

    Hello
  2. I seem to remember having a problem similar to...

    I seem to remember having a problem similar to this when I was designing a dial preloader. I solved it and wrote a tutorial perhaps it may help
  3. Replies
    3
    Views
    3,892

    sussed

    OK, i figured it out in case anyones interested. Its not too complicated.


    <?php
    mysql_connect("localhost","username","password") or die();
    mysql_select_db("comments") or die();
    $result =...
  4. Replies
    3
    Views
    3,892

    Yes, but it updates the variables so only the...

    Yes, but it updates the variables so only the last one is actually returned to flash. My actual question should be how do I add a variable into the fetch_array loop and concatenate with uservar and...
  5. Replies
    3
    Views
    3,892

    retrieve last 5 rows

    My code here works sweet for retrieving the last entry in my table.


    <?php
    mysql_connect("localhost","username","password") or die();
    mysql_select_db("comments") or die();
    $result =...
  6. I created this tutorial a long time ago ...

    I created this tutorial a long time ago

    http://www.flashkit.com/tutorials/Interactivity/Simple_S-Alan_Wis-922/index.php

    It uses a slider that outputted a value from 1 to 100 to control a...
  7. Replies
    2
    Views
    672

    Wow, flash 4! I remember starting out with that....

    Wow, flash 4! I remember starting out with that. Just assign each possible word a variable say

    firstword1 = "I"
    firstword2 = "Sally"
    firstword3 = "Tom"

    then generate a random number betwen 1...
  8. Replies
    0
    Views
    463

    [RESOLVED] facebook flash video

    I have a flash video here http://www.buffoonbrothers.com/main/video/bbanifb.swf which can be shared on fb from this page http://www.buffoonbrothers.com but the flash controls don't show up. Anyone...
  9. CS3 You'd probably have to upload your flash. In fact...

    You'd probably have to upload your flash. In fact the big Butt Alien worked for me for a while then wouldn't work again!
  10. Replies
    1
    Views
    364

    You can create a movieclip which is essentially a...

    You can create a movieclip which is essentially a little movie within the main movie and will allow you to remain on a single frame of the parent timeline. Or you could create a variable on the...
  11. It is a kind of round about way to extract the...

    It is a kind of round about way to extract the data once it has been outputted to a textbox. Couldn't it be added up before hand?
  12. Replies
    3
    Views
    1,304

    I would add in another variable, say if...

    I would add in another variable, say

    if animation >=25 && anidone == false

    and as soon as the animation starts sets the anidone variable to true. It then wont replay if you know what I mean!
  13. Replies
    4
    Views
    811

    Just multiply your final number by 100, use...

    Just multiply your final number by 100, use Math.round, then divide it by 100. Will give you 2 decimal places every time.
  14. Replies
    5
    Views
    850

    Just add tags around all your code. This...

    Just add <center> tags around all your code. This will align it centrally horizontally. I don't know how to centre it vertically though.
  15. Replies
    1
    Views
    590

    What script have you written so far? Have you...

    What script have you written so far? Have you written any character code yet?
  16. Replies
    5
    Views
    1,071

    The easiest way is to check your temporary...

    The easiest way is to check your temporary internet files. My 2008 news file is news2008.html. Otherwise i'll post it when I'm on my desktop next.
  17. Replies
    5
    Views
    1,071

    You need to use HTML then you can do basic...

    You need to use HTML then you can do basic formatting and change colours of individual words. You can then even add images. Check my website (change to 2008 news) to see an example.
  18. I'm guessing you didn't copy the controls.swf...

    I'm guessing you didn't copy the controls.swf file over as well? Will look something like ClearOverPlaySeekMute.swf
  19. Replies
    2
    Views
    417

    We need to know how you are displaying the logo...

    We need to know how you are displaying the logo animation. Is it an external .swf loaded to a new level or a movieclip? Posting you .fla file would help too.
  20. Replies
    4
    Views
    761

    Also because you are adding 1 to your random...

    Also because you are adding 1 to your random numbers the first elements in your array (element 0) will never be shown.
  21. Replies
    4
    Views
    761

    I see a few errors here. The reason you are...

    I see a few errors here. The reason you are getting undefined in _root[p] textboxes is that you are adding "i" to your random number (sayb). Say your random number is 6 your last textbox will have...
  22. Replies
    1
    Views
    495

    Make sure to use frame labels instead of frame...

    Make sure to use frame labels instead of frame numbers when using scenes. Frame 1 of your original first scene is now frame 4 (with loader added) as far as flash is concerned.
  23. Replies
    3
    Views
    510

    Try gotoAndStop

    Try gotoAndStop
  24. The _root of the timeline has nothing to do with...

    The _root of the timeline has nothing to do with the depth of movieclips. Try changing the "0" in your code to a higher number or use
    this.getNextHighestDepth()); to elevate it above your buttons
  25. Replies
    1
    Views
    346

    loadvariables

    I was wondering if I use
    loadVariablesNum("login3.php", 0, "POST");
    on the root timeline what variables get sent? Everything? Is this a problem and is there some better code to use? Thanks
Results 1 to 25 of 229
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center