FullScreen doesn't work in local application

Hello world,
I developed an application in Qt4.5 which is simply a very simple browser. It display HTML pages and so on.
In this pages, I have a flv object. This one is displaying well and I allowFullScreen. When I click on the fullscreen button, video goes on fullscreen but the pb is that sound continue, but the video freeze (if I leave the fullScreen mode, I'm in the right spot in the video playback)
If I launch the html file in Safari Browser, FullScreen works.
Thx in advance for any help

Nobody knows or has an idea about this strange issue?

Similar Messages

  • Portal Search doesn't work in Portal Applications forum.

    Portal Search doesn't work in Portal Applications forum.

    Hi,
    Can you mention what exactly is not working?
    Thanks,
    Vanathi

  • Since 2.2.1 upgrade, force quit doesn't work after an application freezes

    Sorry if this was posted before, but I couldn't find a post that matched my issue.
    Has anyone else noticed that since upgrading to 2.2.1 on the 3G, if an application freezes, force quit doesn't work. I have to do a hard reset inorder to get the OS to respond again. Even tried to just hold the power button to do a power off and it doesn't respond.
    Any advice? Tried restoring to 2.2.1 many times didn't help.

    Thanks for the response. I have done a many restores as "new iphone" and reinstalled apps. I normally get freezes when I'm in a twitter type application and using the "mini/lite safari browser" within the twitter app.
    When the phone doesn't freeze, I can force quit apps at will. It's only after a freeze (when I need force quit the most) does it not work....
    I would make a Genius Bar appointment but I can't recreate it at will.

  • Installer doesn't work for any application

    The installer app itself is not working on my mac (Macbook Pro, running Version 10.8.5), and it doesn't work regardless of the software that I'm trying to install.
    I get the following error message:
    Installer cannot be opened because of a problem.
    Check with the developer to make sure Installer works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X.
    Any help/suggestions?
    MacBook Pro, OS X Mountain Lion (10.8.5)

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • Scrolling doesn't work on some applications

    I'm using the program Notepadd++ and I can't use the touchpad to scroll. I've connected a USB mouse, and scrolling works fine with that device. I've tried reinstalling the drivers, etc, and it still has the same problem. Scrolling also doesn't work when watching flash videos on Firefox. Once again, scrolling works just fine when using a USB mouse.
    Product name: HP Pavilion g6 Notebook PC
    Product number: B5R80UA#ABA
    This question was solved.
    View Solution.

    ih23, 
    After doing a little research, it seems like it is the programs are conflicting with the driver and you are not the only one to experience this.
    Here is what I found to fix the issue in Notepad++. Note that it requires editing registry, so depending on how comfortable you are with that or not, it is up to you if you want to try this fix or not. I would always recommend backing up the registry before changing anything.
    "It seems that whatever the Synaptics driver is doing to render the scrolling cursor is confusing Notepad++.
    If you go to HKLM\Software\Synaptics\SynTPEnh and add a new DWORD named UseScrollCursor with a value of 0, the scroll cursor won't appear and vertical scrolling will work in Notepad++."
    Best of luck!
    -Kyle
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Fullscreen doesn't work

    Hi, I prepared a footer for a website and have the following issue:
    There are two buttons on footer bar that interests us. One is fullscreen - clicked activates fscommand function. But fscommand works only when I debug my fla. Otherwise, nothing happens. There's an additional variable that shows if fullscreen is active - nothing happens.
    There's also a "coder" info. I wanted to use navigateToURL function for "mailto:..." adress, but nothing happens, even if if changed it to google.com adress. Also debugger doesn't activate it.
    I tested it in browser, completely nothing happens.
    There's the code, works without any "addons":
    package UI {
    import flash.display.*;
    import flash.text.*;
    import flash.events.*;
    import flash.system.*;
    import flash.net.*;
    //import com.greensock.*;
    public class Footer extends MovieClip {
    protected var footerBG:MovieClip;
    protected var fullscreenMC:MovieClip = new MovieClip();
    protected var copyMC:MovieClip = new MovieClip();
    protected var coderMC:MovieClip = new MovieClip();
    protected var fullscreenTF:TextField = new TextField();
    protected var copyTF:TextField = new TextField();
    protected var coderTF:TextField = new TextField();
    protected const TEXT_MARGIN:Number = 20;
    protected const TEXT_ALPHA:Number = 0.35;
    protected var isFullscreen:Boolean = false;
    public function Footer():void {
    trace('Footer');
    prepareElements();
    this.addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
    protected function prepareElements():void {
    footerBG = new MovieClip();
    footerBG.graphics.beginFill(0, 0.35);
    footerBG.graphics.drawRect(0, 0, 100, 25);
    makeButton(fullscreenMC, fullscreenTF, true);
    fullscreenMC.addEventListener(MouseEvent.CLICK, onFsClick);
    fullscreenTF.text = 'fullscreen';
    makeButton(copyMC, copyTF);
    copyTF.text = 'copyright © Mateusz Kot';
    makeButton(coderMC, coderTF, true);
    coderTF.text = 'coder: Krzysztof Antoniak';
    addChild(footerBG);
    addChild(fullscreenMC);
    addChild(copyMC);
    addChild(coderMC);
    protected function makeButton(mc:MovieClip, tf:TextField, button:Boolean = false) {
    var footerTFo = new TextFormat();
    footerTFo.font = 'Arial';//AvantGarde Bk BT
    footerTFo.size = 15;
    footerTFo.color = 0xFFFFFF;
    tf.defaultTextFormat = footerTFo;
    tf.selectable = false;
    //tf.embedFonts = true;
    //tf.type = TextFieldType.DYNAMIC;
    //tf.antiAliasType = AntiAliasType.ADVANCED;
    tf.autoSize = "left";
    tf.alpha = TEXT_ALPHA;
    mc.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);
    mc.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
    mc.mouseChildren = false;
    mc.addChild(tf);
    if (button) {
    mc.buttonMode = true;
    protected function refreshArrangement():void {
    footerBG.x = 0;
    footerBG.y = stage.stageHeight - footerBG.height;
    footerBG.width = stage.stageWidth;
    coderMC.x = stage.stageWidth - coderMC.width - TEXT_MARGIN/2;
    coderMC.y = footerBG.y + 2;
    copyMC.x = coderMC.x - copyMC.width - TEXT_MARGIN;
    copyMC.y = footerBG.y + 2;
    fullscreenMC.x = copyMC.x - fullscreenMC.width - TEXT_MARGIN;
    fullscreenMC.y = footerBG.y + 2;
    protected function onMouseOver(event:MouseEvent):void {
    //TweenNano.to(event.target.getChildAt(0), 0.5, {alpha:1});
    protected function onMouseOut(event:MouseEvent):void {
    //TweenNano.to(event.target.getChildAt(0), 0.5, {alpha:TEXT_ALPHA});
    protected function onFsClick(event:MouseEvent):void {
    trace(isFullscreen);
    if (!isFullscreen) {
    fscommand('fullscreen', 'true');
    isFullscreen = true;
    } else {
    fscommand('fullscreen', 'false');
    isFullscreen = false;
    protected function onCoderClick(event:MouseEvent):void {
    navigateToURL(new URLRequest('http://google.com/'));
    protected function onAddedToStage(evt:Event):void {
    refreshArrangement();
    stage.addEventListener(Event.RESIZE, onStageResize);
    protected function onStageResize(evt:Event):void {
    refreshArrangement();
    Can anybody explain why it happens this way?

    Sorry, I missed adding this to the code
    Correct fragment:
    makeButton(coderMC, coderTF, true);
    coderMC.addEventListener(MouseEvent.CLICK, onCoderClick);
    coderTF.text = 'coder: Krzysztof Antoniak';
    It also works only when debugging.

  • CS6 Help Doesn't Work in Local mode

    Hi,
    I have downloaded the trial and installed it Mac OS Lion. The help application does not work; the omly thing that it will display is the settings window. After downloading local content and clicking done, the window disappears, but when you click on the application icon, it again reappears. Simply put, I cannot view the help at all in the Help application, even though I have set it up to always use local content. Anyone else run into this?
    thx

    The fact that Adobe had a wonderful offline help application with search, linking, an index, etc. etc. Was one of the major reasons why I paid so much for the software.
    However, when I installed it, I was as disappointed as everyone else that the help application has been put into disrepair by Adobe, and they had zero offline help available for everyone, and yet the application was still built into their software.
    After many people complained, Adobe promised at some point to deliver PDF files, which is, frankly, the stupidest idea since PDF files themselves are not reasonable for a help system. Anybody creating a PDF help system needs to do all the work creating the index, formatting, and everything. It is a significant amount of additional work, especially given you already have a help system that has served people very well and worked very fine.
    Then. When Adobe does finally got around to sending out PDF's for offline help, they gave half-assed documentation and guess what... It contained links to online content, such as blogs, and video resources, etc.
    First of all... Links to online content DOES NOT WORK for offline help purposes.
    When paying nearly $1000 for software, a major selling point is that you have some kind of documentation you can go through that tells you what features are in the new software you purchased.
    We literally had ZERO documentation to go through upon purchasing this software and Adobe has SEVERELY dropped the ball on us.
    It would be better to just remove the help system from the software completely, because it is a fraud and false advertisement at this point to claim that Adobe software has any kind of help system built into the software.
    As you have learned now. Third-party web sites are NOT a substitute for a help file. They do not work OFFLINE. They don't even work ONLINE as a help system, really.
    To pretend like you have an offline help by having it open in a half-assed software with a link to the web, or to give people PDF's that link to the web, is UNACCEPTABLE for people wanting an "OFFLINE" help system.
    SO... Either just say "There is no offline help", or create an actual offline help system. Pretending like you have offline help when you don't have it and just giving us more links to the web is not working. Something is seriously broken at Adobe.

  • Remote Desktop doesn't work with local printer

    I am having trouble using a locally networked printer when I use Remote Desktop to connect to a Vista machine.  Under the local resources tab for RD, I have checked printers.  The only thing I can figure is that my printer is networked locally, not connected directly to my machine.  Every time I try to print during my remote desktop session, I can't access my locally networked printer.
    I installed the printer drivers on the remote computer and when I try to locate the printer, I get the following error: "Windows cannot connect to the printer.  Server print spooler service is not running..." but the spooler service IS runing.
    I also found a post elsewhere that discussed setting 'share permissions' and 'network permissons' to resovle the spooler error.  Still no go.
    I tried to plug in my printer to a local USB port this morning.  Still would not work.  I keep getting the same spooling error.  The drivers are not corrupt, as others have indicated may be the cause.  They work fine on my system locally with 7.
    Any advice would be greatly appreciated.  I've spent a few hours on this one and am at a loss at this point.
    Please help.  I really need to print locally.

    My problem was that the Vista remote system never saw local port that my printer was using for some reason and it never accepted the path noted above (\\servername\printer)...always came back with an error that it was an invalid path.  This was with it both networked and plugged in via USB port.
    I finally figued it out after four days and many hours on the phone with Microsoft.  Microsoft support claimed that it was related to my router settings, but I didn't believe it since the remote computer saw my iPhone just fine when it was connected locally.  After simply playing around, here's what I found...it was actually quite basic!
    On the remote system, when you try to add a 'local' printer, there's a drop down menu with a list of local ports that your remote system sees.  Some of those will be on the remote system, but others will be on your local system.  Make a note of the ones that are seen on your local system.  In my case, LPT1 was not visible, but COM3 was.
    Next, on your local system, in the settings for your functioning printer (Printer Properties, Ports Tab), there's a tick box that says "Enable Printer Pooling."  Once you check that box, you can select multiple ports on your local machine.  Here, you need to tick the box that your remote system is seeing (in my case, it's COM3), but make sure that your exisitng port remains checked as well (in my case, an IP port for my wireless router).  Basically what you're doing is on your local system, you are pooling your exising printer setup with a port that can be seen by your remote system. 
    Then, on the remote system, install the printer drivers but don't select a port.  Then go into Printers and add a printer.  Select 'local' setup for that and when asked for the port, use the port you checked in the previous step on your local system (in my case, I selected COM3 on my local system).  Select your printer from the list.  It will ask if you want to use the exisiting drivers...say yes.  Then print a test page to be sure that it works.  Worked fine for me.
    I simply can't believe how obvsious that solution was!  If the remote system can't see the port you currently use, pool your printer setup with a port that it can see!

  • Subpanel doesn't work in Runtime application

    I created an application that uses a Subpanel. The Subpanel works correctly when I am running the code in LabVIEW, but nothing shows up when I use the runtime application. Are subpanels handled differently by the runtime engine than they are in the Full Development System?

    It turns out that the problem was that I was using controls with type definitions. The type definitions weren't available to the runtime application and thus the VI that I was trying to run in a Subpanel couldn't be opened. One solution is to disconnect all of the type definitions. The other solution may be to place the type definitions in a folder at the same level as the SubVI so that the runtime application can find them.

  • .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.

  • Keyboard doesn't work with Emulator applications, Nestopia, bsnes, etc.

    I have a PowerPC G5 with a usb keyboard that was shipped with the computer. The keyboard works fine with everything else except various nintendo game emulators. I have researched the problem and no one seems to have the same issue. The only keys that work are the function keys that affect dashboard and spaces. I have tried adjusting the configurations and have also tried using a different keyboard... still nothing. It must be something on the operating system's side.
    Is there some kind of block as to why these particular applications are not responding to my keyboard?
    Any advice would be helpful

    HI boombadabum,
    I understand that you are having issues with keyboard shortcuts with a custom keyboard layout.
    I also understand that when you press the shortcuts that the menu blinks like it is working, but nothing actually happens.
    As a work around, you may be able to map them out with this add on[https://addons.mozilla.org/en-us/firefox/addon/customizable-shortcuts/]

  • Serial port doesn't work in installed application

    I have a simple vi that reads serial data coming from a device, using the VISA Configure Serial Port vi. The development vi and the executable (.exe) versions work fine on my laptop, but when I install it on another computer, the serial port sees no data and there is no error message. All com port settings are the same between the Configure vi and both computers. I built a stand-alone application then built an installer, then installed it in the second computer and ran the setup.exe. The vi opens and works in every respect except for the serial port. What am I doing wrong?

    Is the COM port you have selected correct? Are the error clusters in your application all connected so an error will be reported if it occurs?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • @Startup doesn't work in Enterprise application

    Hi,
    I've done a simple web application. Here when use the @Startup annotation the method @PostConstruct is called every time i start my application.
    When I do the same with an Enterprise application the @PostConstruct method of my ejb is never called.
    I'm using Glasfish 4 and Java 7
    Thank you!
    Fabio

    Nobody knows or has an idea about this strange issue?

  • Fullscreen doesn't work with Silverlight for Netflix movies

    Recently, when I restarted watching Netflix, I can't go to Fullscreen. I called Netflix and they had me reinstall Silverlight, which I did, but to no avail. Any ideas here?

    Go to the AT&T support site and verify that you have setup Mail with the correct confuguration, i.e., ports, server names, etc. Otherwise, you haven't provided enough details to be of much assistance.
    Rcommend that you get a .me account and start using IMAP email in lieu of POP3. You can then configure your existing AT&T account to forward all email to your .me account.

  • Safari green button fullscreen doesn't work

    Hi, I tried everything, reset safari, erase cache, delete the preferences plist, and nothing, when i press the green button the screen goes to the botton left, tried also resizing, nothing...
    also the javascript of several webpages i used to visit that automatically goes full screen also doesn't do it anymore...
    what can i do...??? sniff

    no one?
    ...

Maybe you are looking for

  • "Windows - No Disk" error during sync

    About 1/2 the time when I go to sync my 80gig iPod Classic, I get this error. "Windows - No Disk There is no disk in the drive. Please insert a disk into drive I:. [Cancel] [Try Again] [Continue]" I: is the letter assigned to the ipod. It seems to ha

  • How do I share a 3G USB modem connected to my Macbook Pro with my Airport Express?

    Hi. I have a 3g USB modem connected to my macbook pro, and I want to try share the signal with my Airport Express (latest model). Now before everybody screams that it can't be done, I was searching the forums and found a discussion in which someone d

  • Has anyone got DiskWarrior 4.2 - 4.3 to work w/ Snow Leopard?

    My iMac is totally up to date and I've tried both DW 4.2 and 4.3 on it and it will NOT let me boot up from that DW disk. It's always the ownsership issue. I tried their tech 'help' person with no luck. He just tells me to not use a wireless keyboard

  • Program to import xml into mysql

    Hello, I am trying to find a program that will get the url of an xml page, and it will convert it into a mysql table. I have managed to find a couple of programs that do this kind of thing, such as Exult professional edition for MySqL and Navicat, bu

  • Iweb newbie

    I have gone through the tutorials on .mac and have created a weg site for my business. My questions is if I publish it to. mac, do you have to type in tags for search engine. So if someone does a search on yahoo or google will my web site get display