>If I use Midworld to show a quicktime movie, is there any way to control >the placement of the window that is displaying the movie? > >Martin Martin, I don't know about MidWorld... But using the FB Quicktime Player example.... (R4 Examples/'Graphics/Quicktime'/QuickTime Player Project) Change the line in FBQTOpen for the Window from one with all the x,y mess to just : WINDOW WndID%,FSName$,(MovieTop%, MovieLeft%)-(MovieTop%+MCRect.Right%,MovieTop%+MCRect.Bottom%),_DocNoGrow_update VisRgn'build the window (beware the line wrap) And in the Menu choice area add: DIM myMovieLeft, myMovietop myMovieLeft = 100 myMovietop = 100 FN FBQTOpen(gMovieBlk&,"",0, myMovieLeft, myMovietop,0) Robert Covington