A Flash Developer Resource Site

Search:

Type: Posts; User: MrBoris

Page 1 of 8 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    804

    Any variable that arrives at the PHP script in...

    Any variable that arrives at the PHP script in this form...

    $variable = somevalue;

    ...should work fine. Don't use . or other odd charcters in variable names.
  2. Replies
    6
    Views
    1,218

    What you could do is make the items you want to...

    What you could do is make the items you want to appear in both your main movie and your pop-ups into seperate .swfs. Then use loadMovie to display them in your main movie but link directly to them...
  3. Replies
    1
    Views
    381

    Yes, you can just use the normal mailto:...

    Yes, you can just use the normal mailto: reference in a link or getURL command.
  4. Replies
    6
    Views
    1,218

    Put your music in another .swf altogether and...

    Put your music in another .swf altogether and then use loadMovie to load it into another level. Then your main movie in _level0 can jump from scene to scene while your music.swf (in _level1) plays on...
  5. Replies
    1
    Views
    458

    on(rollOver) yourTarget._y = 50; } ...

    on(rollOver)
    yourTarget._y = 50;
    }

    on(rollOut)
    yourTarget._y = 0;
    }

    This will shift the _y of yourTarget by 50 pixels on a rollover.
  6. Is there a more effiecient way to accomplish...

    Is there a more effiecient way to accomplish this?

    If you post some code I'll have a look...
  7. Replies
    14
    Views
    921

    Ok, still need to know what code is inside of the...

    Ok, still need to know what code is inside of the MC "uptrigger"...
  8. Replies
    14
    Views
    921

    Where is this button, what's inside "uptrigger"...

    Where is this button, what's inside "uptrigger" and where is it?
  9. Almost right, but you left something out. Try: ...

    Almost right, but you left something out. Try:

    on (press) {
    _root.services._y = _root.services._y + 5;
    }

    In your version, the _y after the = has no value, since it doesn't refer to an...
  10. Replies
    2
    Views
    604

    What do you mean when you say the movies are...

    What do you mean when you say the movies are "being loaded on top of each other"? If you mean you're using loadmovie to load .swfs into different levels, then you can pass variables between .swfs...
  11. Replies
    14
    Views
    921

    With this line... loadVariablesNum...

    With this line...

    loadVariablesNum ("./yourtext.txt", 0);

    ...you're loading your variables into _level0. But, if I understand correctly, the place where you want the text to appear is inside...
  12. Replies
    14
    Views
    921

    Can you paste the code you're using to load in...

    Can you paste the code you're using to load in the text file? That's probably where the problem lies..
  13. Replies
    4
    Views
    693

    Which version of PHP are you using?

    Which version of PHP are you using?
  14. Thread: PHP Problem

    by MrBoris
    Replies
    1
    Views
    942

    If things only go wrong when you start using...

    If things only go wrong when you start using LoadMovie, then it sounds like your _level targetting is not correct. Double check that the level/target used in your loadVariables command is correct.
    ...
  15. Replies
    2
    Views
    770

    There's a property in Flash that will return the...

    There's a property in Flash that will return the url of where the .swf is playing: _url

    Helps?
  16. Your problem is this last chunk of code... on...

    Your problem is this last chunk of code...

    on (release) {
    realname = "";
    BizAddy = "";
    ProjectTitle = "";
    ContPhone = "";
    Email = "";
    Additional = "";
    }
  17. You need to send the form information collected...

    You need to send the form information collected in Flash directly to the file "senddata.php" and not to the HTML page (that won't work).

    To receive information from "senddata.php" in Flash, you'll...
  18. Are you sure that the senddata.php file has been...

    Are you sure that the senddata.php file has been uploaded correctly to your server?
  19. Replies
    1
    Views
    407

    To target frames from within your .swf file you...

    To target frames from within your .swf file you need to do two things.

    First, in Dreamweaver, make sure the frame you're targetting has a name.

    Second, in Flash, use that frame name in the...
  20. This will send the usernum info along with the...

    This will send the usernum info along with the other form data:

    on (release) {
    if (Comment eq "" or Comment eq "Please Input Data") {
    Comment = "Please Input Data";
    } else { ...
  21. Thread: bookmark icon.

    by MrBoris
    Replies
    7
    Views
    1,078

    Try http://www.favicon.com or search Google for...

    Try http://www.favicon.com or search Google for "creating favicon" for a list of tutorials.
  22. Replies
    1
    Views
    382

    Because the problem is almost certainly within...

    Because the problem is almost certainly within your code, you need to post the actual code you are using (rather than the approximation you've used above).

    Then we can help...
  23. Replies
    15
    Views
    1,840

    Pleasure, glad to have helped.

    Pleasure, glad to have helped.
  24. Replies
    15
    Views
    1,840

    Sorry, I forgot you wanted the buttons inside the...

    Sorry, I forgot you wanted the buttons inside the movie clip.

    In that case change the button code to:

    on (release) {
    tellTarget ("../") {
    gotoAndPlay ("Scene 2", "dateLabel");
    }
    }
  25. Replies
    15
    Views
    1,840

    We're on a roll... What's left to do?

    We're on a roll... What's left to do?
Results 1 to 25 of 190
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center