Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
petran76 #1
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
-
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... -
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.... -
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"... -
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 -
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... -
jasan3114 #2
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



Reply With Quote

