Ask a Question related to Macromedia Director Basics, Design and Development.
-
Mintyman #1
video controls
Hi,
I am trying to make some movie controls for an AVI file. I would like to
make a pause button. I am currently using:
on mouseDown me
sprite(1).movieRate = 0
end
While this works I need to click on a seperate 'play' button to un pause the
video:
on mouseDown me
sprite(1).movieRate = 1
end
Is there a way to make the pause button pause on the first click and unpause
the video if clicked again?
Also, I am having trouble with my rewind button. Unlike the fast forward
button that zooms through the video at a higher speed, the rewind is VERY
slow and seems to be only showign the keyframes. Am i doing something wrong?
Mintyman Guest
-
Control.Controls bug? Control's child controls missing at the run time.
Hello, ..NET 1.1/VB.NET: I have a custom web control Public Class DatePicker Inherits Control Implements INamingContainer -
Why the properties of web user controls which inherted from my custom base UI controls MISSED?
Why the properties of web user controls which inherted from my custom base UI controls MISSED? How should I to set enable? -
user controls: dynamiclly added child controls dont survive post back ?
hi, i have some strange behaviour: i've created a web user control that add's some child controls (e.g: textbox, image buttons) to its control... -
mpeg video controls? QT installer?
I've just completed my first Interactive CD project. It works great...except apparently mpeg video gets converted to quicktime or something and will... -
Button controls for Digital Video
Does anybody know some Lingo that will control a button when pressed to jump ahead to another point in a digital video while it is playing? I would... -
Rob Dillon #2
Re: video controls
Use mouseUp instead of mouseDown. This gives your user the opportunity
to change their mind about using the button.
on mouseUp me
if sprite(X).movieRate = 1then
sprite(X).movieRate = 0
else
sprite(X).movieRate = 1
end if
end
that will toggle between play and pause every time the control is used.
Playing dv files backwards is an iffy situation. Playing the file
forward involves the video player compositing the images between the
keyframes. During normal play this will work just fine.
To play the file in reverse, the dv player needs to reach back to the
previous keyframe and composite the images in reverse order. Depending
on the codec used to compress the file, this may or may not actually be
possible. The compressor is encoding the information so that it will
play forward.
Some codecs don't show anything when played in reverse. Some only show
the keyframes, some play well.
--
Rob
_______
Rob Dillon
Team Macromedia
[url]http://www.ddg-designs.com[/url]
412-243-9119
[url]http://www.macromedia.com/software/trial/[/url]
Rob Dillon Guest



Reply With Quote

