I started a project in version 1 and everything has been going well.
I started a new project in V2 and now I cannot get the screen resulution to work and/or the video I am trying to play with not size properly.
I had no issues with my existing project using V2, but creating a new project is exhibiting the issue.
Also, in full screen mode I do not se any video at all.
Any insights?
Using the following code, the video stretches off screen.
GLOBAL screenWidth as FLOAT
GLOBAL screenHeight as FLOAT
screenWidth=1920
screenHeight=1080
SetDisplayAspect(16.0/9.0 )
SetVirtualResolution(screenWidth,screenHeight)
SetScissor(0,0,screenWidth,screenHeight)
xpVid=0
ypVid=0
SetFolder("")
SetFolder("media")
LoadVideo("Experiment_001.mp4")
SetVideoDimensions(xpVid,ypVid,xpVid+720,ypVid+480)
PlayVideo()
DO
SYNC()
LOOP
home.wavecable.com/~mindsclay