PDA

View Full Version : fas.avclip.Rect v.s. fas.avclip.xy


freevision
05-10-2002, 04:59 PM
hi.

I have a problem with movie X,Y and movie size. I didn't run both same time. there 6 movie on the stage and I wanna show theese one by one. I attached my file and explained in the fla file what I want to do. please take a look and reply me.


how can I do that?

thank u.

Freevision <<

Mentor Lee
05-10-2002, 05:53 PM
if you want to use fas.avclip.rect

you may need to use the following commands before use fas.avclip.rect

fscommand("fas.avclip.autosize","false") to disable the auto size
fscommand("fas.avclip.displaySize","FitToSize")

freevision
05-10-2002, 06:08 PM
yeah I know that but it doesn't appear that I want to do. u know. my video area size 507X380. it didn't fit to size. what can I do?

Mentor Lee
05-10-2002, 06:39 PM
change
fscommand ("fas.event.EndOfStream", "/:EndOfStreamAction");
fscommand ("fas.shell.GetInitDir", "/:InitDir");
fscommand ("fas.avclip.autoplay", "true");
fscommand ("fas.avclip.AutoSize", "FALSE");
fscommand ("fas.avclip.VideoOnTop", "TRUE");
fscommand ("fas.avclip.xy", "0,201");
fscommand ("fas.avclip.rect", "0,0,507,");
fscommand ("fas.avclip.DisplaySize", "FitToSize");
fscommand ("fas.avclip.FULLSCREEN", "FALSE");
fscommand ("allowscale", "0");

to
fscommand ("fas.event.EndOfStream", "/:EndOfStreamAction");
fscommand ("fas.shell.GetInitDir", "/:InitDir");
fscommand ("fas.avclip.autoplay", "true");
fscommand ("fas.avclip.AutoSize", "FALSE");
fscommand ("fas.avclip.VideoOnTop", "TRUE");
//fscommand ("fas.avclip.xy", "0,201"); // remove it
fscommand ("fas.avclip.rect", "0,201,507,501"); // 507*380
fscommand ("fas.avclip.DisplaySize", "FitToSize");
fscommand ("fas.avclip.FULLSCREEN", "FALSE");
fscommand ("allowscale", "FALSE"); // 0 ==> FALSE