.SWF fullscreen

Hi,
I make a .swf with adobe flash professional cs4 to view a video from adobe flash media server ! All is working greate,i can see the video that i stream with Flash media server but when i press the fullscreen button to see the video in fullscreen nothing happens! I can not see the video in fullscreen!What causes this problem?What should i do?
Thanks in advance

most people would consider that as an important security issue and not so much adobe trying to be mean to you personally.
in any case, if you're still able, please mark this thread as answered.

Similar Messages

  • .swf fullscreen doesn't work???

    Hello,
    I can post the file if you want.... just ask
    But my proublem is that I have a flash presentation.
    The defalt for moving the slide screens back and forth are left and right arrows.
    It works fine when tested or even the .swf file.
    But then the left and right buttons don't respond when I go to fullscreen.
    It's a presentation so I need to be in fullscreeen......
    Anyone know whats up???

    most people would consider that as an important security issue and not so much adobe trying to be mean to you personally.
    in any case, if you're still able, please mark this thread as answered.

  • HTMLLoader SWF fullscreen problem

    The Adobe Air help docs say that SWF content loaded into an HTMLLoader object will disappear if the HTMLLoader object is scaled to a factor greater than 1.
    Does that mean that there's no way to display SWF content in an HTMLLoader object when the Air app is set to full screen?
    My SWF content called into the HTMLLoader object does disappear in this case when my app goes to full screen, and I was just wondering if anyone has found a workaround to this.
    Thanks,
    Eric

    i have just replaced on frame 1 with this:
    Ekonomi_1_1.addEventListener(Event.ADDED_TO_STAGE, FLVAdded, true);
    function FLVAdded(e:Event):void
    Ekonomi_1_1.fullScreenTakeOver = true;  // if you want your flv_pb to fill the screen.  otherwise, use false
    but it stuck, it stop at frame 1.
    then, i tried to put
    Ekonomi_1_1.addEventListener(Event.ADDED_TO_STAGE, FLVAdded, true);
    function FLVAdded(e:Event):void
    Ekonomi_1_1.fullScreenTakeOver = true;  // if you want your flv_pb to fill the screen.  otherwise, use false
    on frame 310 line 41-45, but it still do the same blank space.
    Will you please take a look on this file?
    eko.rar - Google Drive
    maybe there is some script that i missed

  • Make an swf fullscreen

    Hello,
    Im running a flash project on a large projector and for presenting the project I want the SWF to open full screen straight away, rather than clicking the maximise button on the window every time. Is there a way to do this? Sorry this might be a really stupid question but i can't figure it out and its annoying me!

    Read this : http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Stage.htm l#propertySummary
    and this : http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/StageDisp layState.html
    You can simply call :
    Stage.displayState = StageDisplayState.FULL_SCREEN

  • Fscommand2?

    Hi guys,
    I'm using a Nokia 6300 device for a flash lite 2.0
    standalone application. And I've got the SWF fullScreen on the
    device - which is great! But how do I get the device to show
    the getSignalLevel and getBatteryLevel commands? (I know the device
    can support these as I check the profile on device central)
    My script looks like this on frame one of my action layer
    using CS3:
    fscommand2 ("fullScreen", true, "getBatteryLevel",
    "getSignalLevel");
    stop();
    But it ain't showing the battery or signal level - any
    ideas?
    Garrod.

    Ciao
    yes, fscommand2("quit") works only in a key.
    Alessandro

  • Two SWFs on a page - one in fullscreen, dropping frames in OSX

    Hi
    The issue we're facing is choppy playback of a fullscreen video only in OSX while there is a second SWF underneath it on the HTML page (fullscreen mode in the SWF on top, while the other SWF in the background sits idle).
    We have one video player in the page at first, and when you click a button another video player of a different kind gets rendered on top of the first player.  The player on top plays fine in normal screen.  When it goes to fullscreen, we're noticing choppy playback, dropped frames.
    ***  If we remove the first player from the HTML page completely, the 2nd player plays smoothly in fullscreen. ***
    There's nothing in the code that is very CPU-intensive at all..
    What could be the issue?    I would assume that the top SWF (while in fullscreen) would be given priority so that video playback isnt choppy.
    Is this type of thing to be expected on MAC OSX when rendering two SWFs in a page?   But why wouldn't the top SWF have complete priority for rendering its video while in fullscreen?
    We tried killing the NetConnection, we tried suspending all event listeners (removeEventListener), but the problem persists.
    Any ideas?  Anything else we should try?

    Hi
    The issue we're facing is choppy playback of a fullscreen video only in OSX while there is a second SWF underneath it on the HTML page (fullscreen mode in the SWF on top, while the other SWF in the background sits idle).
    We have one video player in the page at first, and when you click a button another video player of a different kind gets rendered on top of the first player.  The player on top plays fine in normal screen.  When it goes to fullscreen, we're noticing choppy playback, dropped frames.
    ***  If we remove the first player from the HTML page completely, the 2nd player plays smoothly in fullscreen. ***
    There's nothing in the code that is very CPU-intensive at all..
    What could be the issue?    I would assume that the top SWF (while in fullscreen) would be given priority so that video playback isnt choppy.
    Is this type of thing to be expected on MAC OSX when rendering two SWFs in a page?   But why wouldn't the top SWF have complete priority for rendering its video while in fullscreen?
    We tried killing the NetConnection, we tried suspending all event listeners (removeEventListener), but the problem persists.
    Any ideas?  Anything else we should try?

  • Runnng external swf Actionscript while in fullscreen mode

    I am using Flash 9.0 (CS3 Pro). I am coding in Actionscript
    3.0
    I have two swf files, both interactive. During playback of
    the, a mouse event launches the second. I also want the mouse event
    to trigger a switch to fullscreen mode. The second swf is
    non-linear and requires user input to jump to the appropriate frame
    of the timeline. Everything tests and runs perfectly during
    standard screen mode but whenever I try to load and play the
    external swf file in fullscreen mode, Flash recognizes the
    actionscript built into the original SWF but ignores all of the
    Actionscript (this.stop(), this.gotoAndPlay(), etc.) embedded in
    the second (external) swf file.
    How can I get external swf files to load with their scripted
    functionality in fullscreen mode?
    Thanks for the help.
    Aaron
    The code I am using is:
    // --- this is the code contained in the first swf file
    // function to launch second SWF file
    function movieLaunch(event:MouseEvent):void
    // Sets display mode to fullscreen. With this line present,
    Flash does not look at any Actionscript in ip.swf
    // If I comment the below line out, the second SWF plays
    correctly and has full functionality
    stage.displayState = "fullScreen";
    // load and launch second movie (ip.swf) which is located in
    the same directory
    var request:URLRequest = new URLRequest("ip.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    addChild(loader);
    // Sets the listener for the button that will launch the
    second movie.
    launchMovieButton.addEventListener(MouseEvent.CLICK,
    movieLaunch);
    Text

    The keyboard is disabled in fullscreen mode. This may be
    causing the problem?

  • Viewing swf file offline.  Also viewing fullscreen?

    Hi everyone,
    I am doing a presentation for school and I was thinking that
    it would be a lot better to put it together in Flash rather than
    PowerPoint.
    However, I'm not sure how I should present it. I will be
    using a school laptop connected to a projector. It would be easy
    just to save the swf to the internet and play it in Internet
    Explorer, but I can't assume that I would be able to get internet
    access (although I probably will). I would like some alternative
    just in case.
    I know that I could save it to a CD or something and open it
    in Internet Explorer, but the only problem with that is that
    sometimes IE blocks files playing from the hard drive. I've
    encountered that problem before.
    Is there some kind of Flash Player that isn't an internet
    plug-in that I could use?
    In addition, if I do end up playing it in IE, it would be
    kind of nice not to see the browser, to have the video play
    fullscreen? Is that possible at all?
    There seem to be so many problems. Should I just give up and
    use PowerPoint instead? What would you do?
    Thanks

    Hi FreddyU
    you can simply publish your flash presentation as an exe file
    by doing the following:
    1- creating your flash file
    2- from the file menu choose publish settings
    3- In the Formats tab select Windows Projector(.exe) check
    box and click publish button
    4- You will find an exe file created in the same place you
    saved the fla file in it and you can play it out of the IE of
    course.
    Hope it helps :)

  • Keep image size unchanged when fullscreen the swf movie

    Hi,
    i am including a image on SWF file (using Flash CS4) i want images to keep its original dimension whether user fullscreen the SWF movie or play it on windows.
    currently i do not have any action script or coding on my .fla file. when i publish the movie and fullscreen it, the image i put in fla file get all stretched out and blur. Please help me to figure out how to keep the dimension unchanged.
    Thank you

    All you have to do is to set the scalemode of the stage to "noscale"
    In AS3 add the following code:
    import flash.display.StageDisplayState;
    stop();
    stage.displayState = StageDisplayState.FULL_SCREEN;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    There is a similar code for AS2, i think infact its the same this
    Stage.scaleMode = "noScale";
    Thanks
    Karthik
    P.s. if this post is helpful, please change the thread to answered.

  • FLVPlayback screws up fullscreen and resizes my swf on "Esc"

    OK, so I have been modifying the Adobe AS3 videogallery for my site. It got just about everything working but fullscreen.
    1) The HTML is set to enable fullscreen
    2) The playback component is the newest version
    3) The Flashplayer is version 10+
    So when you click on any of the videos in the menu it loads into the side panel and plays as it should. But when you click on the fullscreen button it goes into fullscreen mode, but only displays the first frame of my last video in the menu. That's all it does, really weird!
    When you press, "Esc" it exits out of fullscreen and the swf that was at 100% centered is now aligned top left at it's original size of 723px
    I have NO idea where to start here. The link to my site is below. Let me know what you think!
    http://www.xsxtreme.com/index2.html

    I mean sir, when I click on one of the imported videos the video itself covers the entire screen. What i need is when i click the button for video 1, for sample, it will load with the size i manually transform on the stage.. and when the time comes i press the FULLSCREEN button on the "SkinOverAll.swf" that when the fullscreen happens..
    Again, my settings stageDisplayState is FULL_SCREEN and scaleMode is NO_SCALE on the first frame. So, when i go and click the tab for video page it started fullscreen. The problem happens when i started clicking on one of the buttons on the video page, the screen all turns to black.. And when i hit ESC the screen turn to normal and no video is playing.. Tried playing the video, it work fine and press the FULLSCREEN BUTTON work fine too {that's because the stageDisplayState is NORMAL..
    I hope that you could really help with this one.. I have a deadline tomorrow..
    Thanks again,
    YSONG

  • Fullscreen a Floating Window containing a SWF

    I am working with Adobe Acrobat 9.5 Pro.  I have created a virtual tour in SWF format which I have embedded within a PDF.  The virtual tour has its own fullscreen option upon right clicking (I checked "Pass context menu to Flash Movie to enable this).  The fullscreen option that is within the SWF will fullscreen separate spherical images or floor plans depending on what is clicked (right click, then fullscreen). This function does not work when the SWF is embedded within the PDF. 
    I am needing the tour to open in a floating window and maintain its fullscreen capabilities when clicked.
    Any advice would be greatly appreciated.

    Gullible Jones wrote:
    Ah I see, needs the third mouse button. Wonder why that's not a keybinding by default. Anyway, thank you very much.
    Edit: umm yeah, that doesn't work at all. Guess I'll be sticking with XMonad for now, thank you Alt+T.
    I edited my post to include the default keybinding. It's Mod1-Shift-space.

  • Fullscreen button outside the swf?

    Hi,
    I don't know anything about Flash, so please be gentle with me....
    I have a swf file that doesn't have any fullscreen button although it's prepared for fullscreen anyway.
    Now I'd like to have some kind of button beside/under or elsewhere in the html that can activate the fullscreen mode for the swf.
    If it's possible to do this with a regular image, AS3 and html instead of creating a flash movie, that would be nice (see, that was probably a stupid qestion) as I have tried and tested half a dozen flash tutorials to no avail.
    Oh, and IF the only way to do it is to create a button in flash, it need to be transparent.....
    Thanks in advance for hints and help.

    if it's a web-based swf, the button needs to be in the swf.  a transparent button is fine.

  • Firefox exits DOM fullscreen when clicked on a swf, how do I have a div that contains flash in a DOM fullscreen?

    I am trying to make a div that contains flash to go fullscreen
    The markup:
    <div id="outer">
    <div id="top"/>
    <div id="flashContent"/>
    <div id="bottom"/>
    </div>
    This wiorks
    if (outer.mozRequestFullScreen) { outer.mozRequestFullScreen();}
    But when I click on a div #flashContent the browser exits fullscreen immediately. This happens only in Firefox, all other browsers stay in fullscreen. Is there a solution?

    We aren't able to answer development related questions on these forums. I suggest looking for help on the Mozilla Developer Network site: https://developer.mozilla.org/en-US/

  • How do I add a FullScreen button to Project Playback Skin?

    How do I add a fullscreen button to the project playback skin? I know how to load another skin (using Project -> Skin Editor) and how to add a custom playback skin (paste custom skin SWF into C:\Program Files\Adobe\Adobe Captivate 5\en_US\Gallery\Playbars) but I'm having a little trouble figuring out how to add a fullscreen button when editing the Flash AS3 so that it will show up in my custom playback skin when loaded into Captivate via Project->Skin Editor. Any ideas?

    Hi there
    I might assume that seeing as you were able to work the magick with the CC button it would be a simple task to pick apart the other elements and add the desired button without hijacking the CC button.
    I mean, if you are that deep in Flash territory and all, it doesn't seem like much of a stretch to figure out how the buttons are added, no?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • How do i allow youtube video to play in fullscreen in a blog on Server 10.6

    Hi,
    After many tries with podcast composer; iI decided to switch to youtube as host for my videos.
    I still encounter a problem though, i cannot put the video in fullscreen mode even when i click on the button. Nothing happens.
    I modified the whitelist.plist to allow all the necessaries tags, and they are now accepted. But sill no changes.
    Any one might help me?

    Hi TenStories,
    First - you MUST upload the actual video file into your server with your FLV in your SWF file pointing to its location.  E.g.
    Drag a Streaming Video Object to your stage (should look like a wire box with an X through it.
    Name it something e.g. "Promo"
    In another layer called Actions, with a keyframe at the same frame have the following:
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    promo.attachVideo (ns);
    ns.play("Videos/my_promo.f4v");
    when you play this locally, you'll see your video.
    Here's a fun idea when you want the end of the video to trigger a new action:
    In the same Actions frame as above, add:
    ns.onStatus = function(infoObject:Object) {
    if (infoObject.code == "NetStream.Play.Stop") {
         gotoAndPlay(2);
    This is a status object that reads when the streaming video object stops playing and then triggers an AS command.
    When you send this SWF to the server, you MUST copy the folder and upload the actual video to that location.  Note:
    ns.play("Videos/my_promo.f4v");      Your server:  public_html/Videos/my_promo.f4v
    You should have what you are looking to do.  Give it a shot and let us know how you did.  I checked out your site and noticed that you're not there yet.
    Dave

Maybe you are looking for

  • Safari quit unexpectedly and will not reopen on any user account

    I have an updated Macbook Pro with the most up to date Safari. I try to open it and it first tells me that the last time it closed unexpectedly and gives me the option to reopen, if I press it it shows me an error report and that it quit unexpectedly

  • Ipod touch 5g will not connect to home wifi

    Hello there! I have this problem where my ipod touch wil not let me connect to my home wifi. When I try to join, a message will pop up saying "incorrect password". I know for sure that the password is 100% right. My ipod touch had no problems connect

  • Urgent:Need to add Timeout for getting connection

    All, While using DriverManager.getConnection to get the connection,I need to add Timeout in my code so if I don't get a connection with in 30 seconds,I need to say'Operation Timed out. I was using DriverManager Api's setLoginTimeout method to set the

  • ButtonCombo in Screen Painter

    Dear All, Is it possible to add Buttoncombo same as CopyTo & CopyFrom button on Customized form.

  • Print Underline in SAP Scripts

    Hi Experts, I have one problem. I want print Bold and Under line for Header. In Print preview it is showing correct. when ever i am printing in the paper, it is getting gaps in Uderline. ( Ex: <u><b>Gas Meter Information</b></u>) In side the paper fo