My boss is chapping my ***!

I need some help!

I submitted this project to my bosses. And they want to make some changes.

Go here to view:
Web Banner

They LIKE what I have done… but they want it to move quicker from product to next product.

This might mess with my loading of images and sound. So a longer preLoader in the front my have to happen.

My question is:
I suggested that I could put a button that PAUSES the movie if you want to take the time to read the body copy.
But if you don’t press the PAUSE BUTTON the movie plays quicker… maybe 3 seconds max on each scene.

Keep in mind that I have a looping sound playing in the background.

Is their some action script or code that I can place in a button that will pause the movie as long as the mouse is over a PAUSE BUTTON or maybe a stop/go buttons to stop and play the action ANYWHERE in the movie???

Help!!!
**** Managers!!!

I haven’t got flash on this pc, but this code will make a button stop the movie as long as the mouse is over it.(say the button is called myButtton.)

if you centralize your code (write the button code on the first frame of the main stage)
[AS]myButton.onRollOver() = function(){
_root.stop();
}

myButton.onRollOut() = function(){
_root. play#
// or if you use scenes
_root.nextScene();
}

/this is an alternative way. This code must be placed on the button/
on (rollOver){
_root.stop();
}
on(rollOut){
_root.play();
// for scenes
_root.nextScene();
}
[/AS]

you should have the display go through all of the products swiftly, and then start back at the first one, and cycle through at the slower rate. if you havn’t already, up your FPS from 12 to 24. Also, your computer voice does not pronounce vacuums very well… its kinda funny. but other than that, you’ve got some good work…

Where do I find the 12 - 24 rate???

Yes the computer generated voice I found has a hard time with many words!!!
I tried to fool it and spell the word vacum and that didn’t do it.

Where do I find the 12 - 24 rate???
And what would the purpose be?

Found it.

That real fast now!!!

the 12-24 doubles the frame rate of your animation. notice how smooth everything is? if you want it slower, then make your motion tweens longer…

try “va- qumb” or “va-cume”

you can fool the robot speach if you spell things out phonetically…

Thanks!

I will try all of that.

I didn’t save my old version I should have and I be the 24 rate would have done the trick!
Plus adding the “PAUSE”

I will try the spelling trick as well.

Thanks!