On 1/23/06 10:32 AM, "Lee Unsworth" <[EMAIL PROTECTED]> wrote:
> > On 24 Jan 2006, at 17:52, Michael Rebar wrote: > >> On 1/22/06 3:30 PM, "Lee Unsworth" <[EMAIL PROTECTED]> wrote: >> >>> Is there a way in which i can get movie player to play in more than >>> one box so i have about 2 or 3 videos (of the same) going all at >>> once. >> >> Sure, just assign the same movie to more than one MoviePlayer. I'd >> recommend >> using an array. >> >> If you need more precise coordination between the movies, you'll >> need to >> manually pad. This may be acceptable only if you know what machine >> you'll do >> playback on. >> >> Another good trick is to mute all but one player -- this'll avoid >> slight >> audio synchronization problems. Alternatively, assign a movie with >> soundtrack to the main MoviePlayer, assign the same movie without >> an audio >> track to the other MoviePlayers. >> >> Human perception of visual stimuli slightly out of synch is a >> beautiful >> thing -- very forgiving. >> >> Michael > > I just done what you said and it worked great. The second video was > out of sync but does not matter about that one i just muted the audio > like you said. > > Now i have two videos playing on dual monitors. One video on each > screen. But i am not sure how i can make one of these videos full > screen. I want it to check to screen resolution and then fit to the > screen. i used the code > > window3.Left = Screen( 1 ).availableleft > window3.Top = Screen( 1 ).availabletop > window3.width = screen( 1 ).availablewidth > window3.height = screen( 1 ).availableheight > > to try and do this but it comes smaller. i have turned of the auto > resize that helped a bit but now i want it full screen. > Yes, use... window3.Left = 0 window3.Top = 0 window3.width = screen( 1 ).width window3.height = screen( 1 ).height The 'available' counterparts give you dimensions of the window minus dock et cetera. Michael _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
