Flvplayback + fullscreen projector

is there anyway to have a projector ALWAYS fullscreen, and use an flvplayback  component with fullscreen button at the same time?
it seems that they're somehow incompatible. if i have multiple instances of an flvplayback component on different scenes, when the projector is fullscreen, jumping to a scene with an flvplayback on it, leads to having a black screen only!
please help me use the proper codes. thanx.

everything loads ok and fast. it's just that I COULD run my project
perfectly fine IF and only IF adobe included the feature/ability to have the menu bar of the flash player removed when creating a windows projector.
i've searched about other ways to make this happen. like 3rd party softwares such as ZINC. they make the project a little slow. and i'm not sure it's even gonna work with the bugs flash itself has!
i'm trying "autopay media studio" from indigorose. it runs the flash smooth and fast. and i can simply remove the menu bar! so my project would look bold and professional.
i thought i might be able to do the fullscreen thing without a problem, within the flash. but it turned out that flash let me down!
i mean even if I open my project fullscreen with no problem (which isn't actually true), i still have to deal with users pressing escape key when their viewing a video inside my fullscreen project. you know what happens? if a video inside the flvplayback is in fullscreen and at the same time your project is in fullscreen, when the user exits the flvplayback fullscreen with the Escape key, the whole project isn't fullscreen anymore!
i know you're probably thinkin why not use a code that detects the exit fullscreen and make the project fullscreen again, but as i said earlier, there's another problem and it's that when i try to have a fullscreen project, with 2 scenes and flvplaybacks on each of them, switching between scenes just makes flash load a blank page!

Similar Messages

  • FLV in fullscreen Projector file forces background to black

    I am producing a fullscreen projector (.exe) file and have some large videos that cause the background to go black when they come on the stage.
    When I test the movie (not in fullscreen), it works just fine.
    I've tried the solutions offered in these questions:
    http://stackoverflow.com/questions/9165659/flash-projector-fullscreen-flv-always-has-black -background
    http://stackoverflow.com/questions/324102/non-fullscreen-flvplayback
    ..still no luck

    That's right -you mentioned the fullscreenTakeOver property and there seem to be many mentions of it in other forums as a fix, but I guess I needed a bit more handholding. I tried setting it to false using a few different methods. None worked.
    This did -on the first frame after invoking fullscreen:
    stage.addEventListener(Event.ADDED, onAdded);
    function onAdded(e:Event)void  {
         if (e.target is FLPlayback) e.target.fullScreenTakeOver = false;
    Thanks kglad for pointing me in the right direction.

  • AS3 Problems with CuePoints using FLVPlayback in Projector executable

    I have a Flash CS3 project that uses the FLVPlayBack component to play 5 FLV files. Each of the files has between 1 and 15 navigation CuePoints embedded in the video (MOV files encoded using Flash Encoder).
    When I test the app using Ctrl-Enter from the IDE all works fine.
    When I test the published projector EXE on the hard disk all works fine.
    When I burn all the files to CD-ROM and start the projector EXE not all is fine.
    When I click on one of my buttons that will navigate to the desired cuepoint within the FLV, it acts like it is unable to find the cuepoint and thus goes to the end of the FLV file.
    This is very annoying and I can not find anything listed anywhere. I suspect it has something to do with buffering or something because the CD-ROM is slower than the hard drive.
    When playing the video all I am doing is:
    vidPlayer.stop();
    vidPlayer.source = "name of flv file";
    vidPlayer.play();
    When I navigate to the cuepoint I am using the following:
    vidPlayer.seekToNavCuePoint(cueName);
    Need help understanding why this is happening.  Thanks.

    I have an update.
    I re-published the Windows Projector executable, this time using the playWhenEnoughDownloaded method of the FLVPlayBack component.
    This has helped some. If I now choose one of the next 2 cuepoints in relation to where the video is currently playing, the seekToNavCuePoint command will find and play from that cuepoint appropriately.
    But if I choose a cuepoint too far from the point of where the video currently playing, it jumps to the end of the video and fires the COMPLETE event.
    Any additional help or suggestions would be helpful.
    Right now I am possibly thinking of breaking up the two larger videos into small videos and dealing with the transitioning in AS3.
    Thanks.

  • Flvplayback fullscreen transparency

    Hi,
    I have just started learning flash & action scripts just a week ago, and I have been struggling to find a way to overlay an flv video (with alpha layers) on top of an image.
    Then I did it by using flvplayback component on top of an image.
    It was actually working properly, BUT, in fullscreen mode, it does not work.
    The flvplayback's background just shows a blank page which seems like the background is not transparent anymore.
    Is there a way to set the flvplayback background's alpha layer to 0?
    I was hoping to get an answer as soon as possible because, I have to release the project tomorrow.
    If anyone could help me, it would be very much appreciated.
    Thanks

    I'm Sorry, I hope there is a full screen button in the skin. anyway look at the below link for fullscreenmode
    http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html

  • FLVPlayback fullscreen

    Iam playing flv video threw FLVPlayback. Is it possible fullscreen mode to FLVPlayback component

    you can create your own button and use the following to change to full screen and use the following.  you'll also need to change your html publish settings to use flash-allow fullscreen.
    Stage.align = "TL";
    Stage.scaleMode = "noScale";
    var origW:Number = yourFLVPB._width;
    var origH:Number = yourFLVPB._height;
    yourbutton.onRelease=function(){
    Stage.displayState="fullScreen";
    function onFullscreen (){
        var scaleY:Number = Math.round (100 * (Stage.height) / origH);
        var scaleX:Number = Math.round (100 * (Stage.width) / origW);
        var scaleFactor:Number = Math.min (scaleY, scaleX);
        video_container._xscale = scaleFactor
        video_container._yscale = scaleFactor;
        video_container._x = Math.round ((Stage.width / 2) - (yourFLVPB._width / 2));
        video_container._y = Math.round ((Stage.height / 2) - (yourFLVPB._height / 2));
    Stage.addListener (this);

  • Possible to modify the FLVplayback fullscreen message?

    Hi,
    When you press the FullScreen button in an AS3 FLVplayback
    object it pops up a message about hitting the ESC key to exit
    fullscreen mocde. It is large and centered, and takes a long time
    to fade away.
    Is there any way to modify this? Maybe make it smaller and
    not in the center? Or shorten how long before it fades out?
    I'm trying to make a player that will be used by a live
    internet TV station who will switch between a live announcer and
    the FLV player. Right now they have to click "Play" then click
    "Fullscreen" then switch the studio's video feed over to the
    FLVplayer. Then they end up broadcasting that stupid message for
    several seconds on top of the video playback before it fades away.
    They can't switch to fullscreen ahead of time, because the player
    ignores key presses so there is no way that I can see for them to
    go to fullscreen first, wait for the message to go away, and then
    start playback as they switch the video feed to the player.
    Can anybody tell me if there's a way to modify that message?
    Or a way to start playback AFTER going to fullscreen mode and
    waiting for the message to go away?

    No, there is no supported way to modify this dialog box.  If you submit feedback on Connect and post a link here, I'd definitely vote it up.
    http://myitforum.com/myitforumwp/2013/12/02/giving-feedback-on-microsoft-connect-for-configmgr-2012-help-yourself-help-the-community/
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

  • Window Order with Fullscreen  Projector file

    For Actionscript 2.0
    I have a projector exe which is invoked full screen.
    In the exe I have a button which invokes a URL using the
    getURL command. This link gets invoked in the browser window in the
    background and since the projector exe is playing fullscreen I dont
    see the browser.
    I am looking for a way to invoke this url so that it gets
    invoked on top of this window(in front of this window in terms of
    window order). see code below...
    this.createEmptyMovieClip("loader_mc",
    this.getNextHighestDepth());
    fscommand("fullscreen",true);
    loader_mc.getURL("
    http://www.macromedia.com",
    "_blank");
    The
    is ticking

    Yes this is possible by using third pary tools.
    Read this and look at the example provided.
    http://www.flashjester.com/?section=faq&cPath=14_56_22#209
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • Flvplayback problem

    Hi,
    I have a problem with flvplayback fullscreen. When I press fullscreen it leaves a border up and on the left.
    http://www.lalimita.ro/ro/Emisiuni/09_Mai_2009/?pic=1
    can  anyone tell me why this is happening.
    TX.

    no .. look closely .. you will see that there is an extra border .. and the bottom roght part of the movie is not shown. Compare the image between small and fullscreen and you will see.

  • Problem with the fullscreen

    Hi
    I have one main.exe, that is in fullscreen ,i am loading video.swf using batch file, from video.swf quitting  the file.So i am using fscommand("quit","true").
    Then the main.swf file is not in the fullscreen. Please tell me what i am doing wrong.

    you're creating a fullscreen projector (exe) app, correct?
    and in your projector file you load a swf file, correct?
    and in that loaded swf file you're loading a video file (flv or f4v or mp4), correct?
    when that video file loads your app (exe) exist fullscreen mode?

  • What is that button to the right of "Print" ?

    Yeah, I was disapointed about the lack of tooltips in the
    FlashPaper UI. If there were tooltips I probably wouldn't have to
    ask this question. We here can't seem to make out what this button
    does next to the standard Print button (to the right). It has a
    document looking icon to it, but when we click it, the behavior
    varies from machine to machine, ranging from nothing happening, to
    javascript errors, to showing the windows toolbar when running in a
    fullscreen projector. what is that button's purpose?
    Thanks!

    *Press the F10 key or tap the Alt key to bring up the "Menu Bar" temporarily if the menu bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.
    Firefox 4+ versions have two bookmark buttons with a star in the Customize window.<br />
    One star button has a drop marker that open a Bookmark menu.<br />
    The other star button without the drop marker opens the bookmarks in the sidebar.<br />
    You can drag the Bookmarks menu button with the drop marker in the Customize window from the toolbar palette on a toolbar (e.g. Navigation Toolbar or Tab Bar or to the left side of the Bookmarks Menu Items).
    You only see the Bookmarks Menu button if the Menu bar with the Bookmarks menu is hidden (View > Toolbars or Firefox > Options).<br />
    If the Bookmarks Toolbar is visible then the Bookmarks Menu button is displayed on the Bookmarks Toolbar as part of the Bookmarks Toolbar Items (bookmarks), but you can move it from the right side to the left side of the Bookmarks toolbar if the Customize window is open.<br />
    Otherwise the Bookmarks Menu button will appear on the right side of the Navigation Toolbar.

  • FlashPlayer 9.0 r 115 executable file don't work, opens a blank screen

    Hi,
    I'm publishing my projector from flash cs3 (embed flashplayer 9.0 r115).I burnt my cd-rom but it doesn't work.
    It opens a blank window, in Windows 7 and Vista.
    Not always, I mean ... It works in most of computers I try to execute, but I get this problem in a few cases.
    I can't get the solution, please anyone can help me?...
    It is a fullscreen projector and uses actionscript 2.0.
    Thanks a lot

    Ok,
    This is normally a setting in a modem or router about DOS or SPI protection.
    Turn it Off if you have it.
    Also Check Internet Sharing is Off.
    Your log suggests that you are using a Airport Base Station of some sort (or one end is)
    If it is your end you will not fond DOS or SPI there it will be the modem.
    5:01 PM Sunday; November 11, 2007

  • Projector H.264 Fullscreen No dice

    I have a simple flash movie.
    It has a static image(show screen), you click on the upper
    right invisible button it goes to the next frame(video), an
    FLVPlayback Component playing and H.264 mov file. If the movie
    finishes it sends you to a final static image (park screen).
    Works fine as a swf, when it goes out as a projector it just
    shows a black screen for the video and it loses both the next and
    prev invisible buttons in either upper corner for navigation. It
    basically crashes the projector.
    I have tried many different ways to set the fullscreen
    properties and nothing seems to work any longer, see commented out
    stuff in frame 1.
    How can I make it play this simple movie fullscreen, from a
    projector, with h.264 video?
    My example file is located here:
    http://www.bigpictureimaging.com/FullscreenProjectorwH264Help.zip
    TIA
    palnudb

    Simple question, where in the code are you loading the SWF
    file
    (SkinOverPlaySeekStop.swf) and calls the Video file ?
    We don't see it ?
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. - www.flashjester.com
    "This has been one of the most impressive and thoroughly
    pleasant
    experiences of customer support I have ever come across -
    astounding!"
    Director - hedgeapple

  • Problem with Projector and Fullscreen

    Hi,
    Can anyone confirm a problem with fullscreen in the latest
    player 9,0,115,0:
    When I use getURL to launch a browser window, or make an exec
    call with
    fscommand, the standalone projector jumps out of fullscreen.
    quote:
    fscommand("fullscreen", true);
    and
    quote:
    on(release){
    getURL("
    http://www.mylink.com",
    "_blank");
    I'm using CS3.
    Any ideas?

    I dont know really but i read here
    http://www.adobe.com/devnet/flash/articles/first_as3_application.html
    they the getURL() function was removed from CS3 and the new is
    URLRequest(); Try with this one i get it from the upper link
    import flash.net.*;
    var url = "www.google.com";
    var request:URLRequest = new URLRequest(url);
    try {
    navigateToURL(request);
    catch (e:Error) {
    // Handle error...
    }

  • MAC projector won't go fullscreen

    has anyone found an effective work around for the fullscreen
    bug w/ MAC flash 8 projectors?
    i'm using the fscommand("fullscreen", "true"); and it still
    won't work - the title bar at the top remains.
    i have read many threads on this topic and tried several of
    the possible solutions and still nothing works. there are several
    threads on this topic... is adobe working on this for a possible
    future update?
    i really don't want to have to backwards convert all my files
    to professional 2004 just to do MAC projectors!!!
    i have a single frame file w/ all the interactivity/animation
    based on actionscripting. g5, flash 8
    please advise
    thanks
    jason

    i'm using 10.4.7, dual 2.5g, 3g ram - flash 8 professional
    i just found a work around using a combo of threads. i got it
    working on a new empty file and on my current working file.
    make a 3 frame movie.
    don't put anything in the first two frames except this
    actionscripting:
    in frame 1, put fscommand("fullscreen", "true");
    in frame 2, put fscommand("fullscreen", "false");
    in frame 3, put fscommand("fullscreen", "true");
    and then continue on w/ the rest of your actionscripting in
    this frame and on...
    placing the three toggling fscommands all in the same frame
    did not seem to provide enough time for flash to react.
    i realize this is ugly w/ the flashing notfull/fullscreen. i
    hate writing code and building files like this... but it does work.
    the flashing doesn't really show up on a PC either, which is nice.

  • Mac Projector, fullscreen but...

    Hi
    I'm making a CD-ROM to be compatible both Mac and PC.
    Everything went well. Burnt the CD, one part Mac, the other PC. On
    the PC, the Flash load as intended Full Screen, no border
    whatsoever shown. But on Mac, the header of the window of the Flash
    Player is showing. I don't see any option when publishing the
    projectors to remove that. In the action track, I made the
    Fullscreen command. It works on PC, but not on Mac.
    So, any idea on how to remove that header? Thanks.

    Well... it seems to be a bug / feature that apparently no one
    ever came across. I saved the file as MX 2004 and created the
    projector from the old MX2004 Flash application. The projector now
    appears ok on Mac, that is without any window header.
    ...well, thanks to me I guess... ?

Maybe you are looking for

  • Cannot send email on iPhone 5S

    Since the most recent IOS 7 update I have lost the ability to send email on my iPhone 5S. I have rebooted, deleted/added, retsrated multiple times and still cannot send. I can receive emails no problem. I have tried adding other STMP servers and stil

  • When I try to enter a time machine with Snow Leopard backups Lion I get an error code -6584 ... how to fix?

    Hi. I had a first gen time machine with backups all on Snow Leopard. This died (power supply), and I bought a new time capsule, because to fix the old one would cost nearly the same amount. Since, I have started using Lion, and backed up onto my new

  • Adobe CS2 Install problem

    Hey, i've recently bought my first Mac, a white 2.0 Macbook. So far i'm loving it! but i can't install correctly Adobe CS2. After the install is finished (apparently OK) when I open Photoshop it tells me that there are some missing files and that i h

  • The installer does not create /etc

    Trying to install Arch but the installer won't create any /etc folder on the mount... (/mnt/etc). So when I get to the point where I'm supposed to edit all the settings, none of the files exist... Anyone have a solution? -X-

  • A way to re-enable scroll bar buttons in Gnome (GTK) 3?

    Is there a way to re-enable or add the scrollbar buttons (on the top and bottom of vertical scrollbars or on the left and right of horizontal scrollbars) in Gnome (GTK) 3?