Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DirectMedia Xtra fullscreen problem

Status
Not open for further replies.

eslimc

Programmer
May 21, 2003
2
MX
Hi,

I'm using directmedia xtra to put an mpge video on full screen, but the script:

on cuePassed
RemoveFullScreen(sprite 6)

does not seems to work. any ideas how to get back to projector.exe?

Thanks
 
I used DM Xtra about 3 years ago. To get the mpeg full screen (640x480) I used

on mouseUp
set the height of sprite 6 to 480
set the width of sprite 6 to 640
set the loch of sprite 6 to 320
set the locv of sprite 6 to 240
go the frame +1
end

...and to get back to the projector I used...

on mouseUp
set the height of sprite 6 to 240
set the width of sprite 6 to 320
set the loch of sprite 6 to 211
set the locv of sprite 6 to 251
go the frame -5
end

...hope this helps,


BDC.
 
HI,

THANKS BDC, BUT DIDT DO ANY THING. I PUT BOTH BEHAVORS ON THE SAME MEMBER. ANY IDEAS?
 
I put the first one on a zoom icon sprite and the second in a different frame in the script channel.

The Xtra may have been updated since the last time I used it.

I guess you have tried here
"DirectMediaXtra sprites also receive the onCuePassed Lingo message. However, Director's documentation is inaccurate when it comes to the syntax of this particular Lingo message. The correct syntax is:
on cuePassed me, whichChannel, cuePointNumber, cuePointName"


BDC.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top