RE: Window media player

2000-11-21 Thread Robert Wingate
> 6)??how to without using ESC key and go next frame while the > movie end?? I now understand your question. Try this: 1) delete the script in frame 1 2) use this in frame script 2: global WMPSpr, iDuration on exitFrame me sprite(WMPSpr).Filename = the moviePath & "xx.mpg" iDuration = sp

RE: Window media player

2000-11-20 Thread pua jeand
>While the DisplaySize=3, WMP had thrown a new and different window >across the screen, and I simply couldn't get it to recognize anything >other than ESC. WMP had taken the focus from Director in a way that >wouldn't let me through. Dear list, so sorry to my question, let me copy my step.. 1)in

RE: Window media player

2000-11-20 Thread Robert Wingate
> look like i still confuse..??still no get > the best answers??ok, my previos post the question is: [snip] Asking the exact same question again, simply because one dislikes the answers one receives (no matter how definitive), is reminiscent of the USA's current electoral fiasco. So I'll answe

Re: Window media player

2000-11-19 Thread pua jeand
on exitFrame if sprite(x).movieRate <> 0 then go the frame end if end exitFrame >>--i try to use u(Kerry) scrite(above) but it won't work.. >>cau' i check the MPEG file movie Rate always is 0, Dear list: thank ur to help me so much, but look like i still confuse..??still no get the best

Re: Window media player

2000-11-17 Thread Kerry Thompson
>--i try to use u scrite(above) but it won't work.. >cau' i check the MPEG file movie Rate always is 0, Ok, time to get specific. I need your life story. What are you using to play the MPEG (QT? DirectMedia?), what platform, which version of Director, which sprite holds the video, and how tall

RE: Window media player

2000-11-17 Thread Kerry Thompson
At 10:06 AM 11/17/00 -0800, you wrote: > > And by the way, you'll get better video performance if you do > > > > puppetTempo 1 > >That's a cool tip Kerry. Do you find that this works for all digital video >formats that can be imported into Director? Yes, it does. Before I go any farther, though,

RE: Window media player

2000-11-17 Thread Colin Kettenacker
> And by the way, you'll get better video performance if you do > > puppetTempo 1 > > before you start the video. Reset the frame rate after the video is done. That's a cool tip Kerry. Do you find that this works for all digital video formats that can be imported into Director? ck [To remove y

RE: Window media player

2000-11-17 Thread Mark A. Boyd
> > i'am using AvtiveX--Window media player to play xx.mpg file Oh, duh. Disregard my previous post. -- Mark A. Boyd Keep-On-Learnin' :) [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list, email [EMAIL

RE: Window media player

2000-11-17 Thread Robert Wingate
> i'am using AvtiveX--Window media player to play xx.mpg file > how do i set end of movie auto return to normal mode > (without pressing Esc) I once worked for about three hours on trapping keys from within WMP's DisplaySize=3 state, (during playback, not at the end) but couldn't get it to work.

Re: Window media player

2000-11-17 Thread Mark A. Boyd
At 07:05 PM 11/16/00, pua jeand wrote: >>>how do i set end of movie(MPEG movie) auto return to >>>normal mode(without pressing Esc) and also go to next frame?? >> >>Try this in a frame script: >> >>on exitFrame >> if sprite(x).movieRate <> 0 then >> go the frame >> end if >>end exitFrame

Re: Window media player

2000-11-16 Thread pua jeand
>From: Kerry Thompson <[EMAIL PROTECTED]> >>how do i set end of movie(MPEG movie) auto return to >>normal mode(without pressing Esc) and also go to next frame?? > >Try this in a frame script: > >on exitFrame > if sprite(x).movieRate <> 0 then > go the frame > end if >end exitFrame --i

Re: Window media player

2000-11-16 Thread Kerry Thompson
>how do i set end of movie auto return to >normal mode(without pressing Esc) and also go to next frame?? Try this in a frame script: on exitFrame if sprite(x).movieRate <> 0 then go the frame end if end exitFrame And by the way, you'll get better video performance if you do puppetT