Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding control to a Director file to use in Dreamweaver?!

Status
Not open for further replies.

TJM7

Technical User
May 26, 2005
5
GB
Hi,
I have created a running animation in Director, runs perfectly however you can only control (ie play, pause and stop) from within the Director GUI.

However, what i need is the animation to be in a dreamweaver HTML page and can be paused, play or stopped by the user.

Do i add buttons within director and add some sort of Lingo script (will need help with this?!) or do i add buttons in dreamweaver that can control the director animation.
 
Why don't you add buttons in your Director Movie.
I believe you are making a tween animation, say frame 2 to 4

In your first frame, put this:
-- put your stop animation here
-- this will loop frame 1
on exitframe me
go the frame
end

In frame 4, put this:
-- this will loop your animation
on exitframe me
_movie.play(2)
end

For controlling the movie write something like this in a button sprite:

property pPlayAnimation

on beginSprite me
pPlayAnimation = false
end

on exitframe me
if (pPlayAnimation)then
_movie.play(2)
else
_movie.play(1)
end if
end

-- This will play and stop the animation
on mouseUp me
if pPlayAnimation = true then
pPlayAnimation = false
else
pPlayAnimation = true
end if
end

You can use frame labels instead of frame numbers.
Havent't try this out, but the idea is there.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top