Ask a Question related to Macromedia Director Basics, Design and Development.
-
Five #1
Video Slider Change Color
I would like to have a video slider that changes color. What I mean, is
that I want the slider to slide along for instance a white rectangle. Once
the video slider has played an area, I want that part of it to turn red.
If that is unclear, here is a quick pic of what I have in mind:
[url]http://ty.land.ru/vid_slider.jpg[/url]
I just wanted to know if this was possible to do in director.
Thanks,
Ty
Five Guest
-
Video controller/slider problem
I am trying to hook up a slider component to work as a video controller. My video player component is called vidScreen. The slider is:... -
Image change according to slider values?
I'm trying to create a simple interface where a tempersture is vaired, and a picture changes according to this. Ideally, what i'd like is to be able... -
Macromedia Video Slider
Hi, Macromedia have a tutorial for a video slider on their site - basicaly the code is as follows: on mouseDown -- This assumes that the... -
custom volume slider for digital video
You´re never telling the slider to turn the volume up!!!!.... see??? u need to identify weather the user is moving up or down de mouse not only when... -
slider to video
Hi, What is the logic for a video slider bar ?... i have one way movement perfect...that is as the video plays the bar moves correctly to the % of... -
JB #2
Re: Video Slider Change Color
One approach would be to overlay a 'tinter' sprite, perhaps with
'darkest' ink over the slider base. The set the width of the overlay
sprite proportioned to the video sprite currenttime / video sprite's
member duration, check the lingo terms used for your media.
JB Guest
-
Five #3
Re: Video Slider Change Color
JB <lingoguy@sbcglobal.net> wrote:
I am not familiar with this at all, but I'll give it a try. I am attempting> One approach would be to overlay a 'tinter' sprite, perhaps with
> 'darkest' ink over the slider base. The set the width of the overlay
> sprite proportioned to the video sprite currenttime / video sprite's
> member duration, check the lingo terms used for your media.
to use avi (which doesn't have a built in slider). Learning as I go, I
guess.
Five Guest
-
JB #4
Re: Video Slider Change Color
The easiest approach would probably to adapt the library
window/media/quicktime slider. It does, I think a moving handle rather
than a growing box
I don't AVI much but that behavior may well work with AVIs too.
Again the keyAVI properties used to drive a slider are the duration of
member videoMemberr and the movieTime of sprite videoSprite
for video on channel 10
on exitFrame
playFraction = sprite(10).movieTime / float(sprite(10).member.duration)
--With the progress rect on channel 12 and the slider range rect on 11.
-- ( width works when the regpoint is on the left of the sprite)
sprite(12).width = sprite(11).width * playFraction
end
JB Guest



Reply With Quote

