A Flash Developer Resource Site

Search:

Type: Posts; User: davyPaycheck

Page 1 of 20 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    433

    You forgot to add a line to update/increment the...

    You forgot to add a line to update/increment the numberOfTimesToLoop variable.

    It should probably be like this:
    if(numberOfTimesToLoop < 3){
    gotoAndPlay(1);
    numberOfTimesToLoop++;
    }
    else{...
  2. Replies
    1
    Views
    386

    Just look in the Help menu in Flash under "Using...

    Just look in the Help menu in Flash under "Using Components".
    There's a section on changing component features and "skins."
  3. Replies
    1
    Views
    336

    You will need to write code to handle your...

    You will need to write code to handle your various component events.
    One way to add handlers is to first create a listener object which "listens" for the event you want to associate with your...
  4. Replies
    5
    Views
    507

    You will need to indicate _root any time you wish...

    You will need to indicate _root any time you wish to target the root timeline from within another timeline. Also you will need to indicate _root followed by the path to any object on the root...
  5. Replies
    2
    Views
    414

    setInterval vs. enterFrame

    I'm creating a series of sliding images in a movie clip.
    They move across the screen by updating their _x position like this:
    _x += 5;

    In the past I've used enterFrame to update the position...
  6. remote actions targeting buttons within MCs

    I want to avoid having my code in more than one location throughout my movie. So I've placed it all on the first keyframe.
    My question is, how do I send button actions to buttons that are nested...
  7. Replies
    5
    Views
    507

    _root is the name of the movie's main timeline as...

    _root is the name of the movie's main timeline as opposed to a movie clip's timeline.

    It tells the Flash player what timeline to target.

    The _root level is the outer most level of movie clips....
  8. Shrav- got your email. Not sure why your SWF...

    Shrav-
    got your email. Not sure why your SWF isn't working. To be honest, my code was thrown together very quickly just to give you the general idea. It may not have been the best approach....
  9. Replies
    8
    Views
    915

    One last thing... thought I should remind you...

    One last thing...
    thought I should remind you that, if you want to replace a loaded movie with another loaded movie, you don't have to unload the first one at all.
    Simply load the second one into...
  10. Replies
    8
    Views
    915

    I'm confused... if you want to unload a loaded...

    I'm confused...
    if you want to unload a loaded movie, can't you just unload it?
    For example,

    myButton_btn.onPress = function (){
    _level7.unloadMovie();
    }
  11. The Drawing API allows you to draw using code...

    The Drawing API allows you to draw using code rather than using the timeline.
    I'm not too good at it. It's rather tedious. But it's cool. Take a look at this:...
  12. I threw together sort of a basic one. See...

    I threw together sort of a basic one. See attached. If you can't open it, let me know.
    The swish effect is more masking, perhaps with the drawing API. Not sure.

    ~D
  13. That nav effect is done with a mask. The main...

    That nav effect is done with a mask.
    The main design is on the lowest layer.
    Above that is all of the nav choices.
    Above that is a rectangular movie clip set as a mask.
    Then it's coded to move...
  14. Thread: textbox ?

    by davyPaycheck
    Replies
    3
    Views
    384

    Well, one thing you could do is make the...

    Well, one thing you could do is make the shortening of the string a function and have it only do it if the string is longer than x characters.

    For example:
    var myString = String (7.89903872676);...
  15. Replies
    8
    Views
    747

    YES! I rewrote my entire block of code and it...

    YES!
    I rewrote my entire block of code and it works.
    Must have been a typo.
    Never did figure out why it wasn't working but at this point I don't even care.

    Thanks so much!!!:D
  16. Replies
    8
    Views
    747

    Hmmm... Ok. What you wrote in your file is...

    Hmmm...
    Ok. What you wrote in your file is exactly like what I tried. So that means I must just have a typo in my code... instance name... something or other.

    Thanks for confirming that for me....
  17. Thread: textbox ?

    by davyPaycheck
    Replies
    3
    Views
    384

    You can set the text box to zero by giving it an...

    You can set the text box to zero by giving it an instance name (such as myText_txt) and then assigning it some text through actionscript:

    myText_txt.text = 0;

    Or you can just type a zero in it...
  18. Replies
    8
    Views
    747

    Can anyone else suggest anything? I can...

    <bump>
    Can anyone else suggest anything? I can style everything but the text size. Why can't I make the comboBox and the font in it bigger?

    :( Desperate....
  19. Replies
    8
    Views
    747

    Yeah. Maybe I need to physically change the scale...

    Yeah. Maybe I need to physically change the scale of the comboBox itself.
    I'll try that.

    Thanks.
  20. Replies
    8
    Views
    747

    Yes. Thank you. I've tried the setStyleProperty....

    Yes. Thank you. I've tried the setStyleProperty. It seems to work on everything but the font size. Why would that be? The color changes. Everything changes, but the font size stays at the default...
  21. Replies
    8
    Views
    747

    V1 comboBox - change font style?

    Working in FlashMX2004 Pro coding environment but have to edit a file containing a version 1 comboBox.
    All I want to do is increase the font size of the comboBox.
    I've tried everything I can think...
  22. Replies
    2
    Views
    354

    1. Make the letter 'i' in 'if' lowercase 'i'....

    1. Make the letter 'i' in 'if' lowercase 'i'. Right now you have it uppercase.

    2. Take out the _global in the 'if' statement. If your variables were defined as global on a keyframe, then the...
  23. You're right. I wasn't really thinking. How's...

    You're right. I wasn't really thinking. How's this:
    Suppose I have two check boxes called check1 and check2. Then I have a dynamic text box called output.

    function checkChange(component) {
    if...
  24. How about... if (yourCheckBox.selected ==...

    How about...

    if (yourCheckBox.selected == true){
    //do whatever
    }
  25. Replies
    9
    Views
    547

    I'm no old newbie but I'll give it a shot... ...

    I'm no old newbie but I'll give it a shot...

    Sure, you can load one movie into another movie that's inside another.

    Let's say the outer movie is called holder_mc. Inside that is empty_mc and...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center