Link to home
Start Free TrialLog in
Avatar of satmanuk
satmanukFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Flash 8 Pro - I need the script for 6 buttons to play different parts of cue point embeded streaming movie

Hi, I am using Flash 8 Pro with Flash Media Encoder on Windows XP.
I have an encoded movie for which it has 6 embedded navigation cue points; I would like 6 custom buttons (which will eventually sit on top of part of my movie; each having an ability to jump to part of the movie and automatically play their designated section of the movie before stoping.

Users will be greeted with a static greeting image which will be used as 'home' and can be returned to.
The other 5 buttons will each have a small sequence/situation to play where they each will stop on there own designated scene after they have run their course.

Possible useful points:

My movie will end up being streamed from either our own streaming server or a streaming server service.

I have had a play with embedded navigation cue points found located at
The Adobe live documents site but they stop short of helping me with what I am trying to do.

Fully appreciate anyone who guide me here.
Avatar of The_Blasted_One
The_Blasted_One
Flag of Russian Federation image

Then you need 6 frames in your scene. Each is the cue point.
Paste the following actions for each button:

on (release) {
      gotoAndStop(1);
}

where 1 is the number of the frame you want to jump to.

You need to paste this action in your first frame:

stop();

or it will start to play your frames one by one.



You can even create dedicated scene for each of the cue point, it doesn't matter, but I recommend you to do it in a single scene, it will ease the layers management and other stuff.
Sorry, it will be more safe:

on (release) {
      _root.gotoAndStop(1);
}
Avatar of satmanuk

ASKER

Thanks for having a go at helping, more than I got on other boards; I found a solution just before checking back here and it seems to fit perfectly what I am trying to do. There was a presentation with synchronized graphics template there at
I found the solution at http://www.adobe.com/devnet/flash/articles/vidtemplate_corppreso.html# 

Thanks

ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial