Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 8 of 8
  1. #1
    Join Date
    Feb 2010
    Posts
    3

    Grin Full screen flash movies

    I have created few flash Tutorial videos using camtasia in which the control panel of the viseo consistsof fullscreen button when i play the video in IE or firefox the Fullscreen button works ok when i embade the flash video in autoplay media studio the fullscreen button doesnt work. can anyone help me

  2. #2
    Join Date
    Feb 2009
    Posts
    1,285
    If you're using a flash object to display the content, on the Full-Screen button you can set the application's window to maximize and then to resize the flash object to new dimensions.
    Code:
    Window.Maximize(Application.GetWndHandle());
    WinSize = Window.GetSize(Application.GetWndHandle());
    Flash.SetSize("FlashObject", WinSize.Width, WinSize.Height);
    to restore:
    Code:
    Window.Restore(Application.GetWndHandle());
    WinSize = Window.GetSize(Application.GetWndHandle());
    Flash.SetSize("FlashObject", WinSize.Width, WinSize.Height);
    Last edited by T3STY; 02-28-2010 at 09:56 AM.

  3. #3
    Join Date
    Feb 2010
    Posts
    3
    Quote Originally Posted by T3STY View Post
    If you're using a flash object to display the content, on the Full-Screen button you can set the application's window to maximize and then to resize the flash object to new dimensions.
    Code:
    Window.Maximize(Application.GetWndHandle());
    WinSize = Window.GetSize(Application.GetWndHandle());
    Flash.SetSize("FlashObject", WinSize.Width, WinSize.Height);
    to restore:
    Code:
    Window.Restore(Application.GetWndHandle());
    WinSize = Window.GetSize(Application.GetWndHandle());
    Flash.SetSize("FlashObject", WinSize.Width, WinSize.Height);
    Dear friend thank you for your prompt response but could you please explain me in dept as i am new to this application and i do not understand what you mean by fullscreen button

  4. #4
    Join Date
    Oct 2009
    Location
    127.0.0.1
    Posts
    279
    If all you have on your page is flash you can set it resize with the page. Select the flash and go to the properties box, set resize right to true and resize bottom to true.
    If you don't know where that is you can double click the flash file and under settings and set the scaling mode to exact fit. Under the attributes tab, under the auto-size select right and bottom. This will allow your flash file to scale with the page. Hope this helps you.
    There are 10 types of people in the world: those who understand binary, and those who don't.

  5. #5
    Join Date
    Feb 2009
    Posts
    1,285
    Quote Originally Posted by ismohammed View Post
    Dear friend thank you for your prompt response but could you please explain me in dept as i am new to this application and i do not understand what you mean by fullscreen button
    OK. let's start from beginning...
    In AMS there is a object plugin called Flash. As you may understand from it's name, it can show flash files (wich usually have .flv extension).
    In the before post, I provided you some code wich can be used to resize a flash object in your application (See the AMS help for more info about resizing objects and other functions). The code I provided you is suitable for almost all objects in AMS, Video, Images, buttons... you just have to use the right function before .SetSize(parameters);.

    EDIT
    I attached an example, the code used is a little different...
    Last edited by T3STY; 03-01-2010 at 10:57 AM.

  6. #6
    Join Date
    Nov 2009
    Location
    Morecambe, United Kingdom
    Posts
    202
    just a small note, ams doesnt actually support .flv files but however it does support .swf files but you can use a flv player and embed it into ams, which i worked out how to do and if you like i can show you.

  7. #7
    Join Date
    Feb 2010
    Posts
    3
    Quote Originally Posted by infinityscape View Post
    just a small note, ams doesnt actually support .flv files but however it does support .swf files but you can use a flv player and embed it into ams, which i worked out how to do and if you like i can show you.
    it is really appresiatable if you could show me how to do and thank you very much for your help T3STY i will try it tonight and let you know how i go with it tomorrow thank you all

  8. #8
    Join Date
    Feb 2009
    Posts
    1,285
    Quote Originally Posted by infinityscape View Post
    just a small note, ams doesnt actually support .flv files but however it does support .swf files but you can use a flv player and embed it into ams, which i worked out how to do and if you like i can show you.
    OOps... my bad. I was sure they're .flv files.. well..you may understand me as I never used flash objects in my works

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts