Passing actions from Flash to Director 8

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default Passing actions from Flash to Director 8

    Hi Group-

    I've used Flash 5 to create a short intoduction within a project Using
    Director 8. How can I pass an action onto Director to jump to a marker when the
    flash animation is finished? I went into Director help, and tried what was
    examples there to no avail.

    I'm using an action in Flash that is in the timeline, not connected to a
    button.

    Any help would be fantastic!

    TIA

    ombdinc Guest

  2. Similar Questions and Discussions

    1. Flash MX 2004 and Flash MX 04 Pro differences in the actions panel
      I just upgraded to MX 2004 Pro, and have not been able to find the "normal mode" on the actions panel. Has this been eliminated in professional? I...
    2. passing variable from Flash to Director... not working right
      Hello everybody, I can't figure out what's wrong, and I've done this many many times before, and never had any problems! I have a text entry...
    3. passing Variable from Director to Flash
      hi .. ... i'm sending variables from Director to a Flash Movie using the 'setVariable' command .. but it doesn't take it there in the normal sense...
    4. passing values from director to flash
      Hello, In Director file, one button is there and on click that, movie have to run on particular frame of the flash file. For example sample.swf...
    5. Help ::::: Passing info from flash to director getting mad results
      I'm aving a bit of trouble with flash passing info to director using getURL with event: Here's my problem : Three movies in flash called ...
  3. #2

    Default Re: Passing actions from Flash to Director 8

    If I have understood well a solution it is:

    property this

    on beginSprite me
    this = sprite(me.spriteNum)
    end

    on exitFrame
    if this.frame < this.member.frameCount then
    go to the frame
    else
    go to marker "blabla"
    end if
    end

    hth


    paolibo Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139