Videos take all the screen in Full Screen mode!!!!!

I mean, if you have a flash, and a video on it, which is smaller than the size of the flash, AND if the project is set to be in Full Screen, then, when you publish it and test the .exe, the video will TAKE all the screen area!
I have included some pictures so you can see what I mean.
This is how it SHOULD be in full scree, and how it IS if it's not in full screen:
And this is how it actually IS if I play it on Full Screen:
I know, this is really weird. Try it by your self. Create a flash, insert a video that doesn't take all the screen, add the Full Screen CODE, publish it and execute the .EXE file. The video will fill all the Screen.
HOW CAN I SOLVE IT??????????

videoplayer.fullscreenTakeover = false;

Similar Messages

  • I'm only getting the left side of items I call up so how do I get all the text onthe full screen

    I cannot get the full text. The right side of the item doesn't show on my screen even when I pull item all the way to the left of the screen.

    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Yesterday i bought ipad4 i transfered photos from pc to ipad that it opened in ipad when i click slideshow everything went black. whenever i m opening the application(photos) full screen looking black but all photos are occuping memory.

    yesterday i bought ipad4 i transfered photos from pc to ipad that it opened in ipad when i click slideshow everything went black. whenever i m opening the application(photos) full screen looking black but all photos are occuping memory.i can see the pictures in settings>brightness>wallpapers but i couldnt able to see in photos application in ipad4

    I have several thousand photos in several folders. I have noticed that whenever I want to change the folder used as the side show source, it takes the Screen Saver Preference pane a very long time to respond. It is as if it is scanning all the photos in the currently assigned folder in order to display them in the preview window provided, and it gets so dogged down doing that it can't respond to my clicks on the Choose Folder option.
    Assuming you don't want to redistribute your photos into a greater number of folders or subfolders so there would be fewer in each folder to process, you could try a workaround. Try moving your currently-assigned folder to your desktop temporarily, before opening the Screen Saver preference pane. If the preference pane can't find the old folder, it may immediately ask you to choose a new one. You could hopefully then do so, close the preference pane, and then put back the old folder.
    It's my understanding that there will be no future updates to Tiger, only security fixes.

  • IPhoto 11: How to view "all photos" while in full screen mode

    In iPhoto, when it's not in full screen mode, if you click photos in the sidebar (under Library), you get a nice view of ALL your photos, and you have the option to sort them by event. When you go from this view straight to full screen mode, it stays this way, which in my case is particularly useful since I like to move photos around from event to event. However, staying in full screen mode, as soon as I click an any other of the menus at the bottom (events, faces, places, albums, projects), I cannot find anyway to get back to the "all photos" view, other than to take it OUT of full screen mode, click on "Photos" in the side bar, and then go back to full screen mode. Either I am missing something that is glaringly obvious, or this is a rather annoying oversight by Apple. It seems like it would be natural to have "Photos" be one of the options along with Events, Faces, Places, Albums and Projects in full screen mode. Right now the only work around I've been able to come up with (aside from going back and forth with fullscreen mode), and to hit "command F" while in full screen mode, and then type "i", which will give me what I am want only because all my photos start with "i". Not a very elegant work around, I know, but perhaps I am missing something very obvious.
    Thanks for any advice!
    James

    In case my description isn't clear, here is a screenshot of exactly the view in full screen mode I am talking about  that I can't seem to return to once I leave it, other than to go back to non full screen mode or use the search trick.

  • Serious problem with the speed of full screen textField animation

    I can't find any proper way to make a long textField move
    fluently horizontally across the screen in full screen mode. I
    tried many ways but it always gets stuck from time to time for a
    few milliseconds and ruins the whole experience. Please, if someone
    can help me to find a way to best animate a large dynamic string on
    full screen, I would be very grateful.
    Thank you.
    P.S. If there is a better way then using a textField to have
    a fluent animation, please tell me and I'll try using a different
    object for my string.

    From your previous post I understand you use Tween to animate
    the thing. Perhaps it is worth either exploring other tweening
    engines (Tweener or TweenLite) or writing your custom one.
    Before you do that I would give Tween one more shot and see
    what and when happens when you use Tween class.
    Tween has event TweenEvent.MOTION_CHANGE. You can add a
    listener for this event and trace inside it:
    trace(getTimer() + " : " + myText.x + " : " +
    event.target.position);
    This may provide information about how smooth the timing of
    movement is and how evenly position is set.
    I realize that the issue is in full screen mode and trace is
    not possible, so, perhaps, you need another TextField on stage that
    will out put this values:
    Inside listener:
    debugText.appendText(etTimer() + " : " + myText.x + " : " +
    event.target.position + "\n");
    As for the custom animation, the way to go could be using
    Timer class.
    First of all, to make sure there is a full understanding of
    what happens in terms of frames, the following needs to be kept in
    mind (forgive me if I am beating dead horse):
    Look at Flash frames not as "physical" entities but as pieces
    of code that executes before screen refreshes. So, when you set
    frame rate to 20 - Flash JUST schedules every screen refresh every
    50 milliseconds. Does it refresh every 50 milliseconds? NOPE! It
    refreshes ONLY when ALL the code pertaining to particular frame is
    executed. THIS IS VERY IMPORTANT! Frame rate is the directive that
    in simple language states: "Refresh screen NOT MORE OFTEN than N
    times a second if all the code is executed." So if the the next
    refresh is scheduled in 50 milliseconds but code took 100
    milliseconds to execute - screen is refreshed in 100 ms. In the
    example when frame rate is 20 but every frame code takes 100 ms
    your actual frame rate is 10 frames per second.
    This discrepancy is usually the reason for jerky animation.
    So, there are two solution: 1) create Timer based animation
    or 2) create a velocity based animation.
    Timer based animation
    There is a very nice method of Timer, Mouse and Keyboard
    events. The method is updateAfterEvent(). This method forces screen
    to refresh/render INDEPENDENT of frame rate. Even if you frame rate
    is only 2 fps - you can have 100 screen updates/refreshes per
    second effectively making frame rate 100 fps. This makes it much
    more reliable. (With all fairness, even Timer deep inside relies on
    base frame rate which imposes some limitations on Timer. But for
    now let's assume it doesn't).
    In this approach you will instantiate a Timer class -->
    add timer event listener --> on every iteration move the object
    to desired position --> invoke event.updateAfterEvent() inside
    the listener. VIOLA! You know that user sees what s(he) has to.
    Velocity based animation
    This approach relies on Event.RENDER.
    Say you still decide to use Tween ENTER_FRAME. So, you will
    need to have velocity variable.
    Besides other listeners you will need to add say
    this.addEventListener(Event.RENDER, render);
    function render(event:Event){
    // move the thing where is is supposed to be based on
    velocity
    // perhaps needs additional calculations base on time or
    something
    So, these are outlines of possible approaches.
    Hope it helps.
    Andrei

  • In normal view, half the page disappears off right of screen. in full screen this does not happen. what can be done to correct the screen ratio for normal screen?

    version 5 loaded on windows 7. all went well for a while. one day while using, ratio of normal screen doubled in width; i.e. half the page disappears off the screen to the right (on a wide screen). when full screen mode applied, ratio is fine. it only happens in normal view, which is the usually prefered option. I cannot determine any means within the program to resize the normal screen. nothing else is affected, only mozilla firefox in normal view. not that when program is opened from keyboard the page is correct for a moment, then enlarges the width with 1/2 page dissappearing.

    This issue can be caused by the Babylon Toolbar 1.1.8 extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • I want to open all pdf documents in full screen initially.

    I want to open all pdf documents in full screen initially.

    With Adobe Acrobat (not Adobe Reader) you can set the initial view of PDF documents.

  • Why is there a grey block on the bottom of my screen in safari and i cant see the top of my screen in full screen mode?

    When I put the window into full screen mode a gray block appears across the bottom of the screen. Thus the top of any given web page is truncated upward and I cannot access anything...But if I minimize the view what was once unavailable reappears.
    Is there a way to get rid of this gray block?

    Provide computer and OS version info and maybe we can help. Phone and iOS stuff tells us nothing useful.

  • Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?

    My mac mini has Elgato 'Eye TV' software that runs in 'Full Screen'.  I want to keep this setting & also connect another monitor to the macmini & use other Appilications on the other monitor?  Can I run 2 monitor with one of the monitor having Full Screen for Elgato Eye TV?
    My early 2009 macmini can run Mac OS 10.5, 10.6, 10.7 & 10.8

    Yes, run one from HDMI and the other from Thunderbolt/minidisplayport sockets. In EyeTV Preferences check the screen you want for full screen use and make sure your Dock is on the other one.

  • Display all the fields in one screen shot

    Hi all,
    I am having 20 fields in the grid.
    but few fields are displaying in the grid and the scroll bar is existing to display other fields
    where as i need all the fields in on screen shot.
    let me know it .

    Hi ,
      One option would be to reduce the width of the fields in the catalog or manually after the data is displayed.
    Regards:
    Arun

  • Hi  I am a keen photographer and I have just bought you SD card reader for ipad. This works well but was winding if there is an app that I can view the images on the SD card full screen without having to import them to the iPad or is there a way to do thi

    Hi
    I am a keen photographer and I have just bought you SD card reader for ipad. This works well but was winding if there is an app that I can view the images on the SD card full screen without having to import them to the iPad or is there a way to do this on the iPad
    The reason for buy this was for when I was out and about to get a better view off my images.
    I have a iPad 2 16gb
    Hope you can help!
    Thanks

    A couple of weeks ago, (after reading a review in TUAW) I bought a wireless hub/ SD card reader called RAVPower.  its app comes with a built in viewer, so you can load it up, and see the pics full screen. 

  • I've imported an iPhoto library from a disc to my iPhoto 09 account, but I have to leave the disc in to view the pictures in full screen...  Is there a way to import the files to my hard drive?

    I've imported an iPhoto library from a disc to my iPhoto 09 account, but I have to leave the disc in to view the pictures in full screen...  Is there a way to import the files to my hard drive?

    I've imported an iPhoto library from a disc to my iPhoto 09 account,
    What exactly did you do?
    Are you running a Managed or a Referenced Library?
    A Managed Library, is the default setting, and iPhoto copies files into the iPhoto Library when Importing. The files are then stored in the Library package
    A Referenced Library is when iPhoto is NOT copying the files into the iPhoto Library when importing because you made a change at iPhoto -> Preferences -> Advanced. The files are then stored where ever you put them and not in the Library package. In this scenario you are responsible for the File Management.

  • Separated screens in full screen mode

    Hi all,
    I use Acrobat to edit and present a PDF slide show on a projector. Now, I've discovered the need to navigate among my slides while the current slide is in full screen mode on the projector. Just like in Powerpoint when you use your laptop monitor to select the images you want to show as thumbnails, while the projector shows the slides in full screen mode. Is there a way to make Acrobat do the same thing?

    Anyone?

  • Pages 5.2 - When I try to reorder different pages it just takes all the pages within the document and turns them into a stack! Why is this happening and how can I oder pages as the update is meant to let me?

    When I try to reorder different pages it just takes all the pages within the document and turns them into a stack! Why is this happening and how can I oder pages as the update is meant to let me?
    Any Help?I know the update has only been out a while but if anyone has an idea why it is doing this, please let me know!

    But you are telling me something I already know.
    Be precise.
    It is not Pages '09 that is broken.
    I am back in Mavericks and testing Pages 5.2.
    There are improvements, we shall see how useful, but in less than a minute I have already discovered bugs.
    Peter

  • I lost my iphone in the woods and it is not connected to the internet. how can i trace it? and if i cant, can i take all the data, such as pictures from my old phone onto a new one?

    so i was walkin in the woods and somehow i droped it. its not conected to the internet. i know because i checked icloud. when i walked around to look for it i used a friends phone to call it so it would ring, but it went straight to voice mail.
    So, how can i trace it? and if i cant, can i take all the data, such as pictures from my old phone onto a new one?

    if you installed find my iphone app on it you can do these things from icloud if it's online
    if not you can't do anything

Maybe you are looking for