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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to make a link from one shockwave movie to an other one? 1

Status
Not open for further replies.

quest00

Technical User
Jul 27, 2000
22
NL
how can a shockwave movie made in macromedia director and edited in aftershock(htmlfile) be linked to a other shockwave movie or another page<br>i tried to work it out in dreamweaver wat it worked (linking pages )in the preview brouwser but it did not once uploaded on my site.<br>can someone help here?
 
Try the following

on handler
loadNetId = preLoadnetThing(&quot;movie2.htm&quot;)
repeat while not netDone(loadNetId)
end repeat

if netError(loadNetId) = &quot;OK&quot; then
gotoNetMovie(&quot;movie2.htm&quot;)
else
go the frame
end if
end handler

there movie2.htm is the website that Director generates for your shockwave movie.

This will work until you use no global variables through different movies.
If you want use global variables you must call movie2.dcr instead of movie2.dcr, but then the server must be told that he enables the download of dcr-files.
For that you must talk to your ISP.

I hope this really helps [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top