Hello tonyngu
You can use a global variable to pass values between your movies.
The code should someting like:
global typed_in_text
on some_handler
typed_in_text = member(field_in_movie_1).text
end
In the second movie it is:
global typed_in_text
on other_handler...
Hello Marshy
The gotoNetPage-command can use an optional parameter which will open a new window.
It's something like gotoNetPage URL, frame
The problem with this is that IE5 under WIN2000 (and only this combination) will open the new window extremly slow (sometimes it needs more than a...
Hello nowall
You've mixed up the handlers!
Here's your code:
on mouseDown me
sprite (61).movieRate = 0 -- Next line should be end mouseDown
on exitframe
if sprite(X).movieRate = 0 then
go the frame
else
nothing
end if
end exitframe
end -- This end can be cleared
I think that's the...
hello
add the following lines to your pause button's script:
on exitframe
if sprite(X).movieRate = 0 then
go the frame
else
nothing
end if
end exitframe
This should help
have fun
dambo
I've visited your site with netscape on a MAC ;), it works well. Just the parts of your image map are working well.
But i think it's a bit great (some 400K to download). The page is viewed after the complete download and it takes some time.
Have fun
dambo
Hello Frederik
I think the problem is that your QT-Movie has the property to be drawn directly to the stage.
This would cause that all other sprites lay behind the movie.
You can change this property in the info-window for the movie.
If you uncheck this, maybe your problems will vanish, but...
I am building a shockwave-movie which contains a textmember (not a textfield). This textmember is editable so you change some of the textproperties such as fontstyle, font alignment and so on.
Now my problem:
If i select only some of the letters and change the properties, the marked selection...
Is there a way to get a list of the fonts the user has installed on his system?
I need it fort a shockwave film, but it doesn't matters if there is a way by using javaScript, plain html, shockwave or something else.
Many thanks
dambo
Hello Darrenb!
Try the following text:
mailto:name@server?subject='subjectText'
This is the syntax used in Director but i think it works as wall in a browser.
Hope this helps
Have fun
dambo
I have looked up your page but I haven't any problems with the colors. I've used Netscape 4.7 on a MAC.
Maybe you should use only 'Web-save-colors' to be sure that all Browsers show the same colors.
Hope this helps
Have fun
Dambo
I have problems using gotoNetPage under Windows2000 with IE5/5.5
I try to open a new page from a shockwave-movie in a new Browser-Window. But using IE /Win2000, the browser freezes for a long time (sometimes up to several minutes). I call the page with "gotoNetPage adress, target". It...
Here is some Code that runs very well in Director 8
on mouseUp
set the exitLock to true
goToNetPage ("mailto:e-mail_adress")
end
on mouseleave me
set the exitLock to false
end
put this behavior to a button of your choice.
You can put some text to the subject field of the mail...
Try the following
on handler
loadNetId = preLoadnetThing("movie2.htm")
repeat while not netDone(loadNetId)
end repeat
if netError(loadNetId) = "OK" then
gotoNetMovie("movie2.htm")
else
go the frame
end if
end handler
there movie2.htm is the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.