Problem in full screen mode air application

Hi All
I am facing some problem in creating an air application. I used fullscreenmode .FULL_SCREEN_INTERACTIVE to maximize the window on load the application was succeeded in some extent. But there is one problem one bottom bar is coming just under the window. can anybody please help me. I am attaching the preview with this.
Thanks and regards

Hi M*A*S*H 4077 thanks agan for your reply sending you the total code i used in my project.As I am a new coder my codes are not in abc please try to understand.please have a look and if u want to see my componentcode then also i can send code.component i only used in the video part.
thank you
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:components="components.*"
    verticalAlign="top"
    backgroundColor="white"
    borderStyle="none"
    borderThickness="0"
    creationComplete="init();"
    baseline="0"
    paddingLeft="0" paddingRight="0" paddingTop="0" paddingBottom="0"      
    initialize="service.send()"               
    applicationComplete="fullscreenmode()"
    backgroundGradientAlphas="[1.0, 1.0]"
    backgroundGradientColors="[#CCCCCC, #090909]"
    backgroundImage="@Embed(source='assets/background/background.jpg')"
    >
    <mx:Script>
        <![CDATA[
            import mx.controls.Alert;
            import flash.display.Sprite;
            import flash.display.StageAlign;
            import flash.display.StageScaleMode;
            import mx.rpc.events.ResultEvent;
            import mx.effects.Iris;
            import mx.effects.easing.*;
            import flash.utils.Timer;
            [Bindable]
            public var secondsTillDue:int=100;
            import mx.collections.ArrayCollection;
            import mx.rpc.events.ResultEvent;
            public var bol:Boolean;
            [Bindable]
            private var images:ArrayCollection;
            [Bindable]
            private var centerpoint:Number;
            [Bindable]
            private var currentIndex : Number = 0;
            public var myTimer:Timer;
            [Bindable]
            private var mainwidth:Number;
            [Bindable]
            private var mainheight:Number;
   private function init():void {
            myTimer=new Timer(1000);
            myTimer.addEventListener(TimerEvent.TIMER,warnIfClose);
            myTimer.start();
            // Initialize the uldr variable which will be used to load the external
            // playlist XML file.
            uldr = new URLLoader();
            uldr.addEventListener(Event.COMPLETE, xmlCompleteHandler);
            uldr.load(new URLRequest(PLAYLIST_XML_URL));
        /* function setFullScreenDisplayState():void{
             stage.displayState=stageDisplayState.FULL_SCREEN_INTERACTIVE;
      public function warnIfClose(event:TimerEvent):void{
        secondsTillDue=secondsTillDue-1;
        if(secondsTillDue==90){   
         lab1.setStyle("hideEffect", fade);
         lab1.visible=false;
         clockpan.visible=false;
         clockpan.includeInLayout=false        
         clock1.setStyle("hideEffect", fade);
         clock1.visible=false;        
        else if(secondsTillDue==88){
            mainbox
            imagePart.setStyle("showEffect",fade);
            imagePart.visible=true;
            imagePart.includeInLayout=false;
         else if(secondsTillDue==83){
             imagePart.visible=false;            
             imagePart.setStyle("hideEffect",fade)        
             videoContainer.visible=true;
             playVideo();    
            private function fullscreenmode():void{
            stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
            mainwidth=stage.width;
            mainheight=stage.height;
            centerpoint=stage.height/2;
            private function serviceHandler(event:ResultEvent):void{           
                images = event.result.gallery.img;
                var timer:Timer = new Timer(15000);
                timer.addEventListener(TimerEvent.TIMER,nextImage);
                timer.start();
            private function nextImage(event:TimerEvent):void{
                    if (currentIndex < images.length - 1){
                        currentIndex++;
                    else {
                        currentIndex = 0;
        import mx.controls.ProgressBarMode;
             * The amount of time between calls to update the playhead timer, in
             * milliseconds.
            private const PLAYHEAD_UPDATE_INTERVAL_MS:uint = 10;
             * The path to the XML file containing the video playlist.
            private const PLAYLIST_XML_URL:String = "playlist.xml";
             * The client object to use for the NetStream object.
            private var client:Object;
             * The index of the currently playing video.
            [Bindable]
            private var idx:uint = 0;
             * A copy of the current video's metadata object.
            private var meta:Object;
            private var nc:NetConnection;
            private var ns:NetStream;
            private var playlist:XML;
            private var t:Timer;
            private var uldr:URLLoader;
            private var vid:Video;
            private var videosXML:XMLList;
             * The SoundTransform object used to set the volume for the NetStream.
            private var volumeTransform:SoundTransform;
             * Constructor
            private function initApp():void {
                // Initialize the uldr variable which will be used to load the external
                // playlist XML file.
                uldr = new URLLoader();
                uldr.addEventListener(Event.COMPLETE, xmlCompleteHandler);
                uldr.load(new URLRequest(PLAYLIST_XML_URL));
             * Once the XML file has loaded, parse the file contents into an XML object,
             * and create an XMList for the video nodes in the XML.
            private function xmlCompleteHandler(event:Event):void {
                playlist = XML(event.target.data);
                videosXML = playlist.video;
                main();
             * The main application.
            private function main():void {
                volumeTransform = new SoundTransform();
                // Create the client object for the NetStream, and set up a callback
                // handler for the onMetaData event.
                client = new Object();
                client.onMetaData = metadataHandler;
                nc = new NetConnection();
                nc.connect(null);
                // Initialize the NetSteam object, add a listener for the netStatus
                // event, and set the client for the NetStream.
                ns = new NetStream(nc);
                ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                ns.client = client;
                // Initialize the Video object, attach the NetStram, and add the Video
                // object to the display list.
                vid = new Video();
                vid.x = 0;
                vid.y = 0;
                vid.attachNetStream(ns);
                videoContainer.addChild(vid);
                // Begin playback of the first video.
                //playVideo();
                 //play video code goes here
                // Initialize the Timer object and set the delay to
                // PLAYHEAD_UPDATE_INTERVAL_MS milliseconds.
                t = new Timer(PLAYHEAD_UPDATE_INTERVAL_MS);
                t.addEventListener(TimerEvent.TIMER, timerHandler);
                // Configure the positionBar ProgressBar instance and set the mode to
                // MANUAL. Progress  bar values will be explicitly set using the
                // setProgress() method.
                //positionBar.mode = ProgressBarMode.MANUAL;
                // Configure the volumeSlider Slider component instance. The maximum
                // value is set to 1 because the volume in the SoundTransform object
                // is set to a number between 0 and 1. The snapInterval and tickInterval
                // properties are set to 0.1 which allows users to set the volume to
                // 0, 0.1 - 0.9, 1.0 which allows users to increment or decrement the
                // volume by 10%.
                //volumeSlider.value = volumeTransform.volume;
                //volumeSlider.minimum = 0;
                //volumeSlider.maximum = 1;
                //volumeSlider.snapInterval = 0.1;
                //volumeSlider.tickInterval = volumeSlider.snapInterval;
                // Setting the liveDragging property to true causes the Slider
                // instance's change event to be dispatched whenever the slider is
                // moved, rather than when the user releases the slider thumb.
                //volumeSlider.liveDragging = true;
                //volumeSlider.addEventListener(Event.CHANGE, volumeChangeHandler);
                // Configure the various Button instances. Each Button instance uses
                // the same click handler.
                //playButton.addEventListener(MouseEvent.CLICK, buttonClickHandler);
                //pauseButton.addEventListener(MouseEvent.CLICK, buttonClickHandler);
                //stopButton.addEventListener(MouseEvent.CLICK, buttonClickHandler);
                //backButton.addEventListener(MouseEvent.CLICK, buttonClickHandler);
                //forwardButton.addEventListener(MouseEvent.CLICK, buttonClickHandler);
             * Event listener for the volumeSlider instance. Called when the user
             * changes the value of the volume slider.
            private function volumeChangeHandler():void {
                // Set the volumeTransform's volume property to the current value of the
                // Slider and set the NetStream object's soundTransform property.
                //volumeTransform.volume = volumeSlider.value;
                ns.soundTransform = volumeTransform;
             * Event listener for the ns object. Called when the net stream's status
             * changes.
            private function netStatusHandler(event:NetStatusEvent):void {
                try {
                    switch (event.info.code) {
                        case "NetStream.Play.Start" :
                            // If the current code is Start, start the timer object.
                            t.start();
                            break;
                        case "NetStream.Play.StreamNotFound" :
                        case "NetStream.Play.Stop" :
                            // If the current code is Stop or StreamNotFound, stop
                            // the timer object and play the next video in the playlist.
                            t.stop();
                            playNextVideo();
                            break;
                } catch (error:TypeError) {
                    // Ignore any errors.
             * Event listener for the ns object's client property. This method is called
             * when the net stream object receives metadata information for a video.
            private function metadataHandler(metadataObj:Object):void {
                // Store the metadata information in the meta object.
                meta = metadataObj;
                // Resize the Video instance on the display list with the video's width
                // and height from the metadata object.
                vid.width = mainwidth;
                vid.height = mainheight;
                // Reposition and resize the positionBar progress bar based on the
                // current video's dimensions.
                //positionBar.move(vid.x, vid.y + vid.height);
                //positionBar.width = vid.width;
             * Retrieve the current video from the playlist XML object.
            private function getVideo():String {
                return videosXML[idx].@url;
             * Play the currently selected video.
            private function playVideo():void {
                var url:String = getVideo();
                ns.play(url);
             * Decrease the current video index and begin playback of the video.
            private function playPreviousVideo():void {
                if (idx > 0) {
                    idx--;
                    playVideo();
                    // Make sure the positionBar progress bar is visible.
                    //positionBar.visible = true;
             * Increase the current video index and begin playback of the video.
             [Bindable]
             private var newTime:Number;
            private function playNextVideo():void{
                if (idx < (videosXML.length() - 1)) {
                    // If this is not the last video in the playlist increase the
                    // video index and play the next video.
                    idx++;
                    playVideo();
                    // Make sure the positionBar progress bar is visible.
                    //positionBar.visible = true;
                } else {
                    // If this is the last video in the playlist increase the video
                    // index, clear the contents of the Video object and hide the
                    // positionBar progress bar. The video index is increased so that
                    // when the video ends, clicking the backButton will play the
                    // correct video.
                    idx++;
                    vid.clear();
                    init();
                    //Alert.show("video end")
                    //positionBar.visible = false;
            private function timerHandler(event:TimerEvent):void {
                try {
                } catch (error:Error) {
        ]]>
    </mx:Script>
<mx:XML id="imagesXML" source="data/images.xml" />
    <mx:Zoom id="zoom" />
    <mx:Fade id="fadein" duration="1000" alphaFrom="100" alphaTo="0" />
    <mx:Fade id="fade" />
    <mx:Rotate id="rotate"
            angleFrom="-180"
            angleTo="0"
            easingFunction="Elastic.easeInOut"
            duration="2000" />
<mx:VBox  id="mainbox" horizontalAlign="left" width="100%" height="100%" verticalScrollPolicy="off" horizontalScrollPolicy="off">
            <mx:Panel borderStyle="none"
           borderAlpha="0"
           cornerRadius= "0"
           headerHeight= "0"
           backgroundAlpha= "0"
           borderThickness="0"
           verticalAlign="middle"
           top="100"
           height="500"
           paddingLeft="0"
           paddingRight="0"
           paddingBottom="0"
           verticalScrollPolicy="off"
           horizontalScrollPolicy="off"
           horizontalAlign="center"          
           width="{mainwidth-100}"           
           id="clockpan"
           >       
                <mx:Label text="Current Time : " fontFamily="arial" fontWeight="bold" fontSize="15" id="lab1" color="#FFFFFF"/>
                <components:MyWatch formatString="DD/MM/YYYY KK:NN:SS " themeColor="#0D424C" id="clock1"/>
            </mx:Panel> 
    <!--image part start-->     
    <mx:Panel horizontalAlign="left" id="imagePart" visible="false" includeInLayout="false" borderStyle="none"
           borderAlpha="0"
           cornerRadius= "0"
           headerHeight= "0"
           borderThickness="0"
           verticalScrollPolicy="off"
           paddingLeft="0" paddingBottom="0" paddingRight="0" paddingTop="0"
           horizontalScrollPolicy="off"
           backgroundAlpha= "0" width="100%" height="100%">       
            <mx:Image source="assets/images/{images.getItemAt(currentIndex).file}"
                showBusyCursor="true" id="imagefile" width="{mainwidth}" maxHeight="{mainheight}" minHeight="{mainheight}" maxWidth="{mainwidth}" minWidth="{mainwidth}" height="{mainheight}" hideEffect="{fadein}"  x="0" y="0" maintainAspectRatio="false"/>
            <mx:Text text="{images.getItemAt(currentIndex).title}" styleName="title" color="#ffffff" x="0" y="30"/>
     </mx:Panel>
    <!--image part end-->
    <!--image part start-->      
    <mx:Panel borderStyle="none"
           borderAlpha="0"
           cornerRadius= "0"
           borderThickness="0"
           headerHeight= "0" top="0" left="0"
           backgroundAlpha= "0" verticalAlign="middle"
           verticalScrollPolicy="off"
           horizontalScrollPolicy="off"
           x="0"
           >
         <mx:VideoDisplay borderStyle="none" borderThickness="0" visible="false" id="videoContainer"
              maintainAspectRatio="false"           
              />
    </mx:Panel>
    <!--image part end-->
     <!--<mx:Button label="fullscreen" click="stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;"/>-->
     </mx:VBox>   
    <mx:HTTPService id="service" url="data.xml" result="serviceHandler(event)"/>
</mx:WindowedApplication>

Similar Messages

  • Problem with Full Screen Mode on Linux

    Hi all,
    I have a desktop application that should run on Full Screen Mode, and it is running fine on Windows XP/2000. I have many graphic functions that works perfect, but when I try to run it on Linux, it doesn't support full screen.
    I have a Red Hat 9 distro, running on a P4 2.00 Ghz, 1 GB RAM, RIVA TNT/2 video card, Java 5.0.
    Thanks for some help.

    Hi,
    thank you for your reply, I reported a bug today: https://bugs.eclipse.org/bugs/show_bug.cgi?id=375385
    Best regards,
    Albert

  • Problem with Full Screen Mode in FCP X

    My images are not filling my frame in full screen mode. When I'm working with them in the viewer the fill the frame and everything looks normal. Does anybody know what the problem might be?
    Trey

    entrevon wrote:
    FCP X asked me if I wanted to adjust my timeline settings when I went to drag the first clip down. I clicked yes and went from there.
    Trey
    If this is the message you got, and you clicked OK, then your clip properties don't match your project settings. Verify by hitting command-j and if that's the case, click modify settings and change it.
    Russ

  • Problem with full screen mode in player

    hey,
    I am having a problem with my Adobe Flash player in internet
    explorer. I am using 2 screens on my computer and I am trying to
    switch the player to play on the opposite screen when it goes into
    full screen mode. It used to do this, but now I cant get it to play
    on the right screen. If anyone has a solution to this I would
    greatly appreciate it.

    Make it into a Projector file then put it through FlashJester
    Jugglor
    http://www.jugglor.com
    Download a FREE evaluation copy and then
    Jugglor -> Setup Settings -> Windows Display ->
    Multimonitor Support ->
    That should do the trick.
    PC ONLY
    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

  • Loading problem in full screen mode

    When I am in full screen mode and zoomed in (I press the Z key) and I am using the arrow keys to switch between photos in a project, I notice that it often gets stuck saying "Loading..." and does not finish rendering the image that I have switched to. If I click on the photo or switch to the next photo and then go back it will load just fine.
    I was just wondering if anybody else has experienced something similar, and if so is there any way to fix it besides always clicking the photo in order to make it finish loading?

    Hi jax,
    Yeh I have the same problem. I get the icon to say the image is loading, but it doesn't show movement like it normally does, and the image either stays blank or pixellated/unsharp. My HUD will show the histogram though, and if I bring the loupe up I can see the image within so it seems to me that the image has actually loaded. Someone has just forgotten to tell the monitor.
    Anyone else having this problem?
    Andrew

  • Problem with full screen mode

    When I preview documents and pictures from desktop, the full screen mode does not hide the dock. It comes in the way of the preview controls and is very annoying. How can I fix this?

    I found the fix for this!
    You simply go to dock preferences and uncheck the boxes that are on the bottom. Then restart your computer and go into dock preferences and recheck the boxes. Now you will see the full screen mode work normally!

  • Please Help!!! At wits End!! Flash player problems using full screen mode

    Thank you... I have a dual monitor setup with my macbook which is connected to my TV a Insignia NS-LCD47HD-09 model. +When I play flash videos in full screen on my lcd they come in all choppy and unsmooth.+ This problem developed all of a sudden and I have played flash videos on my lcd in the past with no issues, I dont know what changed. I've noticed these flash videos play all smooth on my macbook in fullscreen but not on my lcd. I have tried flash videos form many diffrent sites and have this same problem, also other formats divx for example dont have this problem. A flash video will play all smooth in the regular view and when i make it full screen it gets all choppy without fail on my tv.
    I should also say I have the most up-to-date flash player 10, and have tried unistalling it and doing it again, as well as tried putting flash player 9 & 8 on my computer which dont seem to work at all. I have also tried to mess with the displays under system prefrences and am using a 1920X1080 on my lcd with 59.9ghz, none of my other potions seem to make a diffrence.
    I have tried everything i can think of and tried to find other fourms for this problem and I just cant figure it out.... Please help, this has been really been bugging me.

    Hmm, you may be onto something regarding the repair permissions thing. The authorization issue is happening when even putting together a movie that has more than one song from itms (and if you go to trim it, you end up in an endless loop between iMovie and iTunes— FUN!). There's a whole 'nother thread on it here:
    http://discussions.apple.com/thread.jspa?threadID=1079288&tstart=0
    I did report it as a bug however. One other person in that thread was able to duplicate the issue at an Apple store on one of their machines. One would assume they go through the steps you do before installing software (assume tht is).

  • Full screen mode problems on Windows XP

    I've added a full-screen feature to an application.  Everything works fine for me.  MacOS+Safari.  But I another developer on my team is having problems...
    He says, "In my Windows XP environment using Internet Explorer 8.0.6xxx I experience the following:
        when change to full screen mode, the application does not resize. The browser clearly switched and takes entire screen by our main panel stays the same size and is displayed in the corner.
    when in full screen mode no mouse activity works at all, system is unusable
        sometimes I see standard message regarding using <esc> key to wexit full screen and our message regarding some keyboard functions won't work. These messages do not appear all the time."
    (The second message he refers to is something I wrote, not a system message).
    Apparently, if he clicks escape, the application returns to within the browser window, and everything works as normal again.
    Has anyone else experienced this behaviour switching to full-screen?

    I just found this great site, America Free TV, for watching streaming movies. It goes to full screen mode, but after 15 minutes, it stops and reverts back to the normal size. This is the link I paste into my Quicktime to open a URL stream:
    http://www.horrorfree.tv/unicast_mov/AFTVHorrorH264250.mov
    Based on "site information," would conclude that the URL cited above is an H.264 file streamed as QVGA at 250 Kbps. Don't see why it would ever have been "full screen" unless you set this mode yourself or you were watching two different files and each was presented differently. In that case, I assume switching files would re-set to default dimensions. Only other thing I can think of is a "periodic scripted refresh" and have no idea if/how that would be done.
    Anybody know how I can keep it from reverting to the regular screen? I can't seem to find any posts here about this particular quirk.
    Believe this action would be automatic, but you can, of course, revert to "Full Screen" on your end. (I.e., Command-F or selecting "Full Screen" in View menu if watching in QT Player.)
    Also, anyone know a different URL I can test to see if it is only this site and their channels?
    Go to the Home Page or Index Page.

  • Full screen mode in Mountain Lion

    Hello everybody!
    I am experiencing certain problems with full screen mode in mountain lion 10.8.2 freshly installed (not upgraded over Lion or ML 10.8.x) on Macbook Pro 13 mid 2010 model. Whenever i open an application which supports full screen mode, it opens on my desktop so I have to enter into full screen mode. When I quit the application and reopen it, it again opens on my desktop then I have to again enter into full screen mode. What I want is that all apps open in full screen mode if they support like, calendar, mail, safari, notes, reeder, itunes, app store and so on.
    What could be the problem that is preventing my apps to start automatically in full screen mode?
    I would appreciate any kind of help from anyone of you.
    Thanks.

    Go to System Preferences > General and untick Close windows when quitting an application

  • "Full Screen Mode" in Adobe Reader XI for Windows 8 loads way too slow!

    I recently got a new laptop with Windows 8, after having used Windows Vista for years.  I installed Adobe Reader XI for my new computer.  Before, I used Adobe Reader X on Vista.  I used Adobe Reader "Full Screen Mode" to read the nice-looking Bible chapters I created with internet audio from Biblegateway.com.  In Vista, the "Full Screen Mode" appeared quickly, before the audio fully started, so I could see the text in time for the reading. 
    However, with Windows 8, "Full Screen Mode" takes around 5-10 seconds to appear at all, and a black screen is present throughout the wait.  It does the same thing when I hit "escape" to exit "Full Screen Mode" as well.  I even uninstalled Adobe Reader XI from my new laptop, and tried using Adobe Reader X, even though it is not recommened by Adobe to do that on Windows 8, in order to test the speed of "Full Screen Mode" there.  Adobe Reader X had the same problem!  I do not know if this can be fixed, but I am pretty unhappy about it!  I enjoyed the "Full Screen Mode" with my PDF chapters and the online bible audio!  Finding that function for the first time with Adobe Reader X was a delight for me!  It gave the reading a theater feel!
    Has anyone else here had a similiar problem with "Full Screen Mode" loading way too slow on Windows 8?  I am very disappointed!  If this cannot be fixed by a user, is there a place to complain to Adobe and make a recommendation for software improvement?  Thank you!             

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • When in full screen mode on netflix or hulu firefox goes out of full screem by itself

    I stream movies and tv shows using the websites Netflix.com and Hulu.com, when I have it in full screen mode, firefox automaticly and without reason exits full screen mode. I dont have any screen saver on or anything like it, it just goes back to the smaller view. i was hoping someone had an answer for this problem.

    ''full screen mode on Netflix or Hulu, Firefox drops out of full screem by itself:''
    '''Try this'''
    #Update Flash to latest version<br>http://www.adobe.com/software/flash/about/
    #Bring up a Flash Video<br>http://www.youtube.com/watch?index=39&feature=BF&v=lfkbx_PETjE&list=PL05CEC01F9F371A3D
    # Click with movie to pause movie
    # Right-click within the movie,
    # Choose '''pop out'''
    # Make the window as large as possible by moving the borders, just in case it drops full screen
    # Click on full screen on the symbol lower right corner
    That appears to be what I had success with, I'm not connected to external monitor.
    # If movie is not playing click to start
    # Click on Full screen symbol

  • Here is how to enable full screen mode for AIR Mac Desktop Apps

    I just discovered that with a very simple native extension method, I can enable full screen mode for AIR Mac Desktop Applications.
    This gets you the full screen icon in the top right, and it works perfectly with no changes to my code. (Obviously only works on Lion and above, since this is a Lion feature)
    Enjoy.
    Here's the code:
        FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
            //We should be okay to do this, even on 10.6, according to this post:
            //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
            //We can't use [NSApp mainWindow] - didn't appear to work
            //This seems to though:
            NSArray * allWindows = [NSApp windows];
            if (allWindows.count > 0)
                NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
                NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
                behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
                [mainWindow setCollectionBehavior:behavior];
            //TODO: Return a boolean instead depending on if we found the main window
            return NULL;

    Press Control + Command + F on your keyboard to enter or exit full screen mode.

  • Having screen rendering / memory problems with Microsoft Outlook 2013 and full screen mode with large 2560x1440 dual monitors

    MS Outlook 2013 seems to work fine for a while until a) enough time passes or b) I have multiple MS Outlook windows open. Then I start to see all sorts of graphical issues ranging from certain parts of the outlook window not rendering to certain functions
    locking etc.  Occassionally, when I decrease from full screen I get the screens to render correctly, making me think there's something unique with full screen mode that is causing the issue.   There seems to me to be quite a bit of memory issues
    with this version. 
    I have a beast of a graphics card, 32gb of RAM, and a fast SSD, so don't think its the machine. 
    Thoughts?

    Hi,
    Does this happen to other applications?
    If it's specific to Outlook, consider to check the hardware acceleration option:
    Go to FILE tab -> Options -> Advanced -> Display -> Disable hardware graphics acceleration, turn this option on or off to check the result.
    If the issue persists, please also consider whether any 3rd-party add-ins are interfering with Outlook, we can start Outlook in Safe Mode:
    Press Win + R, type "outlook.exe /safe" in the blank box, press Enter.
    If there's no problem in Safe Mode, disable the suspicious add-ins to verify which caused the problem.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Open the application in Full Screen Mode

    Hi all,
    I want my application to open in Full Screen Mode(same as when 'F11' key is pressed) after login button is clicked.
    How can it be done in application express??
    Can anyone help me??

    Hi,
    Make sure you add the code into the page's HTML Header setting:
    &lt;script type="text/javascript"&gt;
    function maxWindow()
    window.moveTo(0, 0);
    if (document.all)
      top.window.resizeTo(screen.availWidth, screen.availHeight);
    else
      if (document.layers || document.getElementById)
       if (top.window.outerHeight &lt; screen.availHeight || top.window.outerWidth &lt; screen.availWidth)
        top.window.outerHeight = screen.availHeight;
        top.window.outerWidth = screen.availWidth;
    window.onload = maxWindow;
    &lt;/script&gt;I've done that here: [http://apex.oracle.com/pls/otn/f?p=267:158]
    Note that a user can stop javascript from resizing/repositioning the browser (I have this set in FireFox for example) - so this code may not work in those circumstances
    Andy

  • Running application in full screen mode

    Hi, everyone. I want to write an application (extends JFrame) which runs in full screen mode. It normally runs as a window with minimize, maximize, and close buttons on the top right corner of the window. I want to run it in full screen mode, or at least disable the maximize button so that users are not allowed to resize the window.
    Thanks a lot!
    Davidson

    I have read throught the tutorial http://java.sun.com/docs/books/tutorial/extra/fullscreen/ . but it syas "full-screen exclusive mode is a powerful feature of J2SETM version 1.4" ==> is the the feature only in J2SE 1.4? Does J2SE 1.3.1 support this feature? (I am currently using J2SE1.3.1)

Maybe you are looking for

  • Java Stored Procedures + oralce.xdb.XMLType + initxdbj.sql

    In order to use XMLType object in java stored procedures, I need to import oralce.xdb.XMLType package. I got compiler error saying "Class oracle.xdb.XMLType not found" (See List1). I check my installed package, sure enough these is no "oracle/xdb/XML

  • Need BADI or USER EXIT for VT02n

    HI Friends, I'm writing a driver program for a ouptput type ZET1 (interface) the tcode is VT02N . In menu bar: goto--> output here i've give the output type and save. My Problem is, if there is any error on the driver program, it should be displayed

  • Software Component in two tracks

    Hi, I have created a software component in SLD and created a track in NWDI. I have imported that track in my NWDS and have added DCs to my SC. My SC has been deployed to all the runtime environments correctly. Now I want to deploy the content of this

  • Aperture: after deleting a project (trash) this reappear opening again the program, how solve it?

    Aperture: after deleting a project (trash) this reappear opening again the program, how solve it?

  • How to set screen resolution on Apple TV Gen2

    This is my first bad out of the box experience with an Apple product. I got my brand new Apple TV Gen 2 and hooked it up to our Sony Receiver/TV. Plugged everything in. Turned it on and I got the screen but am not able to change resolution. With the