A Flash Developer Resource Site

Search:

Type: Posts; User: Fleetatks

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    926

    This link should show you how to Display (trace,...

    This link should show you how to Display (trace, or whatever) the properties:
    http://www.negush.net/blog/listing-the-properties-of-an-object/

    What you were doing wrong was that data[i] was NOT...
  2. Ha! I figured it out. I forgot that the...

    Ha! I figured it out. I forgot that the assignment operator does stuff by reference, even when I want a hard copy.


    //I wanted to do a soft copy
    mc1.customClass = customClass1;
    mc2.customClass...
  3. I figured out a workaround, but I'd still like to...

    I figured out a workaround, but I'd still like to know how to do this whole child/parent reference variable thing.

    My workaround was to call a function that updates the main timeline's variables...
  4. I want a Child to change Parent's Variable

    I understand how scope, passing by reference, and passing a variable to Child/Parent work, but I'm stuck trying to combine the three.

    On the main timeline, I have some variables that are instances...
  5. Turns out setChildIndex can only be used if there...

    Turns out setChildIndex can only be used if there is nothing being moved via timeline, so only Actionscript based movement is allowed.

    For any1 with this same issue, the easiest work around I...
  6. setChildIndex causes infinite loop and new movieclips!

    Before I go on and break down my code for you guys, let me give you the situation.
    I want to have 2 movieclips (BattleAnimation1, BattleAnimation2), each with 1 movieclip inside them (Character). ...
  7. Replies
    7
    Views
    1,357

    maybe you should be doing cursor.mouseEnabled =...

    maybe you should be doing
    cursor.mouseEnabled = false;
    If cursor is inside another movie clip, make it so its highest-level parent is mouse disabled too. The graphical-moving thing is more of a...
  8. Replies
    2
    Views
    753

    Try putting this inside the play button's...

    Try putting this inside the play button's function:

    if ( movieclipname.currentFrameLabel != "last" ){
    movieclipname.play();
    }

    Then inside the movie clip you made, name the very last frame...
  9. Replies
    1
    Views
    873

    Poor quality music when imported

    I want to make a flash movie for this song and when I test played it the song didn't sound right. I unchecked compress and changed the speed and quality to the highest and it still sounds wrong. I...
Results 1 to 9 of 10




Click Here to Expand Forum to Full Width

HTML5 Development Center