Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default flash control

    Hello.
    I have problem controling a flash.
    I am testing a one frame flash and i am calling it
    <<onfocus="MM_controlShockwave('logo','','StopPlay ')">>
    and it works.
    But when i am trying to do this in a flash with more than one levels
    <<onfocus="MM_controlShockwave('logo','','StopPlay ')">>
    doesn't work. Any idea someone.
    Thank you.

    petran76 Guest

  2. Similar Questions and Discussions

    1. Can XML control the look of a Flash file?
      I've been asked to create a Flash file that gets ALL its information from an XML file, including document size, colours and just about everything...
    2. Flash movies control
      hi, does anyone know how to control a flash movie in director? i added couple of flash into director, and put them in the same frame on the stage....
    3. Flash sprite control
      Please help... Deadlines looms hours away.... I have a flash sprite on stage, I want to be able to click a "Rotate Forward" and "Rotate Back"...
    4. Flash Server Control
      Hello Does anyone know where I could find, or how to create a ASP.NET control that will display a Flash movie??? Thanks
    5. Using Table control in a custom composite control. Control does not render properly in design time.
      All, I have written a very simple custom composite control that includes a control of type System.Web.UI.WebControls.Table. The control...
  3. #2

    Default Re: flash control

    Just thinking aloud. When you have a movieclip placed on one frame, even if you
    put in script to stop, the movieclip will still keep playing simply because its
    on the frame where you gave the command to stop.
    You will need to put in a different script within the movie frames. Something
    like
    "on roll over - stop"
    What I have been doing, its crude but it works - I make an invisible button
    and place it in the movie , put in action script that on roll over the
    movieclip should pause , and that works pretty good. The movie clip ofcourse is
    placed on one frame in scene 1

    on(rollOver) {
    stop();
    }
    on(rollOut) {
    play();
    }
    Is that what you're trying to achieve !!!

    jasan3114 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