Ask a Question related to Macromedia Director Basics, Design and Development.
-
cfinn #1
Clock display in a director movie
Is there any way to create a clock display in a director movie? One that
updates regularly and follows the time on the computer or a website? Is this
something best done with a Java application, and has anyone done anything
similar?
Many Thanks!
cfinn Guest
-
flash movie wont display outside network
I have been testing a new chat app for our company and while it tests just fine within our network, when we test it from outside our network, the... -
display movie time
i have quick time movie in director, i want to be able to see the duration of the movie on the screen. (in other words, a clock appears on the... -
Display more than 1 movie
Is it possible to display more than 1 movie at a time? I would like to edit and jump between 2 movies simultaneously. Andy -
Quick Time movie display error
Hi! I have inserted a QT movie into Director. The problem that I am facing is that it displays correctly on the Laptop's screen but when I project... -
Can Director MX save a movie as a Director 8.5 file?
Can Director MX save a movie as a Director 8.5 file? I can't find this option in "save as" or "export." HELP! -
JB #2
Re: Clock display in a director movie
There are ready made Flash analog clocks downloadable from flashkit.com
You can a periodicly called handler update a time display, prepareFrame
or idle handler could be used.
-- the idle handler gets called a lot betweeen frames, adding a little
logic minimizes the amount of writes to the text field, you cound modify
the time string
on idle
global lastTime
if the time <> lastTime then
member("timeDisplay").text = the time
lastTime = the time
end if
end
JB Guest
-
cfinn #3
Re: Clock display in a director movie
Thank you, that was perfect, i now have a clock running very smoothly in my application :-)
~Clare
cfinn Guest



Reply With Quote

