GRID full screen using container

Hi,
I want to display the grid in full screen using container(OOPs) please let me know if any one knows how to do.
regards,
vijay

Hi,
Check this program..........
*& Report  ZTEST
REPORT  ZTEST.
Object variable for ALV grid
DATA: oref1 TYPE REF TO cl_gui_alv_grid.
DATA:
   t_spfli TYPE STANDARD TABLE OF spfli WITH HEADER LINE.
Field catalog table for ALV grid
DATA: fieldcat TYPE  lvc_t_fcat. " Workarea for field catalog table
DATA: w_field TYPE lvc_s_fcat.
START-OF-SELECTION.
select *
from spfli
into table t_spfli[].
append lines of t_spfli[] TO t_spfli[].
append lines of t_spfli[] TO t_spfli[].
perform prepare_fieldcatlog.
call screen '0100'.
*&      Module  STATUS_0100  OUTPUT
      text
MODULE STATUS_0100 OUTPUT.
  SET PF-STATUS 'TEST'.
SET TITLEBAR 'xxx'.
  CREATE OBJECT OREF1
    EXPORTING
      I_PARENT          = CL_GUI_CUSTOM_CONTAINER=>screen0
    EXCEPTIONS
      ERROR_CNTL_CREATE = 1
      ERROR_CNTL_INIT   = 2
      ERROR_CNTL_LINK   = 3
      ERROR_DP_CREATE   = 4
      others            = 5.
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  CALL METHOD OREF1->SET_TABLE_FOR_FIRST_DISPLAY
EXPORTING
   IS_LAYOUT                     =
    CHANGING
      IT_OUTTAB                     = t_spfli[]
      IT_FIELDCATALOG               = fieldcat
   IT_SORT                       =
   IT_FILTER                     =
    EXCEPTIONS
      INVALID_PARAMETER_COMBINATION = 1
      PROGRAM_ERROR                 = 2
      TOO_MANY_LINES                = 3
      others                        = 4.
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDMODULE.                 " STATUS_0100  OUTPUT
*&      Module  USER_COMMAND_0100  INPUT
      text
MODULE USER_COMMAND_0100 INPUT.
  if sy-ucomm eq 'BACK' OR sy-ucomm eq 'EXIT'.
    leave program.
  endif.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
*&      Form  prepare_fieldcatlog
      text
-->  p1        text
<--  p2        text
FORM prepare_fieldcatlog .
w_field-col_pos       = '1'.
w_field-fieldname     = 'CARRID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CARRID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '2'.
w_field-fieldname     = 'CONNID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CONNID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '3'.
w_field-fieldname     = 'COUNTRYFR'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'COUNTRYFR'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '4'.
w_field-fieldname     = 'CITYFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '5'.
w_field-fieldname     = 'AIRPFROM'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPFROM'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '6'.
w_field-fieldname     = 'COUNTRYTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'COUNTRYTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '7'.
w_field-fieldname     = 'CITYTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'CITYTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '8'.
w_field-fieldname     = 'AIRPTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '8'.
w_field-fieldname     = 'AIRPTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '8'.
w_field-fieldname     = 'AIRPTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '8'.
w_field-fieldname     = 'AIRPTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '8'.
w_field-fieldname     = 'AIRPTO'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'AIRPTO'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '9'.
w_field-fieldname     = 'FLTIME'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'FLTIME'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '10'.
w_field-fieldname     = 'DEPTIME'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'DEPTIME'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '11'.
w_field-fieldname     = 'ARRTIME'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'ARRTIME'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '12'.
w_field-fieldname     = 'DISTANCE'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'DISTANCE'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '13'.
w_field-fieldname     = 'DISTID'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'DISTID'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '14'.
w_field-fieldname     = 'FLTYPE'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'FLTYPE'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
w_field-col_pos       = '15'.
w_field-fieldname     = 'PERIOD'.
w_field-tabname       = 'T_SPFLI'.
w_field-ref_field     = 'PERIOD'.
w_field-ref_table     = 'SPFLI'.
append w_field TO fieldcat.
clear w_field.
ENDFORM.                    " prepare_fieldcatlog

Similar Messages

  • I cannot view videos in full screen using Flash Player

    I currently have Windows 8. I was pulling up some videos to get ready to watch some football games through a website. The video plays just fine until I tried to make it full screen. Then the screen is black but the audio continues just fine.  I've tried all of the fixes that I can find with no luck in resolving the issue. According to Adobe's website, Flash Player is already embedded in Internet Explorer for Windows 8, so I cannot technically "install" it. According to Adobe's website, I have the most current version.
    Please help! The game is on Saturday!

    Ugh!   This is why I don't use Internet Exploder.  May I suggest downloading Firefox (http://www.mozilla.org/en-US/), and the Flash Player (Flash Player Plug-in (All other browsers)) for it, and see if it works better? I'll bet it does.

  • Viewing a video on full screen using multipule displays

    Well, i run two monitors. my primary is a LG and i extend my desktop too a secondary amtranas monitor. the LG one is high def wide screen and my secondary amtranas one is just a regular 4:3 Monitor which i use as a tv..
    what i want to do is watch video's on the secondary monitor in full screen through itunes and still be able to do work on the primary monitor. but when i go in full screen mode on the secondary monitor using itunes... it blacks out my primary one too.
    is their a way too tell itunes too only play video's on one screen and not black out the others? i dont think its a nvidia setting, cause itunes is the only program that does this. so far the only way i can counter this is just too watch the video in a window..
    any help would be appreciated

    Bump
    I am also having this same problem. I usually like to game and have my visualizer on the screen but it turns my primary moniter black too. Could someone please help us out.

  • Xcelsius Full Screen using FS Command

    Hi,
    Does anyone know how to force Xcelsius SWF file to display in full screen?
    I know it's possible in Adobe Flash using FS Command, but not sure how to use FS Command data connection within Xcelsius to achieve the same
    Thanks,
    Malik

    The Fullscreen command is applicable only when you are viewing on standalone viewers.
    In the command field you can set "fullscreen" and parameters as "true". then from another button or any other method to generate an event to trigger this command.
    Hope this helps,
    Ani

  • Lightroom Mobile Full Screen using Chrome or Safari

    Is is possible to view photos in full screen mode using Chrome or Safari on an iPad and/or iPhone 6+?  If so, how?

    I think the short answer right now is "no", but there may be other browsers like Firefox or Opera that can on iOS.
    Mobile Safari doesn't support fullscreen yet.  One trick that works on my phone is rotating from portrait to landscape mode.  I don't think this will work as well on iPad but the rotate trick might improve things.  I was hoping that Chrome would work since there is a fullscreen option on Android, but it looks like they don't have the same support on iOS yet.  If the browser does support fullscreen, tapping on an image in the slideshow mode should show a fullscreen button next to play/pause -- that's what I see in Android.
    Thanks for bringing this up though -- I think there might some room for improvement here so we'll update this thread if the situation improves.

  • How to use full screen mode in Windows Media Player (activex)

    I am trying to write a LV program to display video "full screen" using a WindowsMediaPlayer control (in LabVIEW 8).  Is this not possible?  When I run the code I get an error:
    Error -2147418113 occurred at Property Node
    This error code is undefined. No one has provided a description for this code, or you might have wired a number that is not an error code to the error code input.
    Anyone have any ideas?
    Thanks,
    Jeremy

    Under LV 7.1 with DSC installed I get the same error code (-2147418113) but "explain error" gives me this.
    "LabVIEW DSC:  (Hex 0x8000FFFF) Catastrophic failure."
    This prompts the question is it possible to set an activeX object running in a container for Full Screen.
    This is probably a Q for MS.
    If it look like it is possible, try to get a VB example and that will tell us what we have to do to make this work.
    Ben
    Message Edited by Ben on 10-31-2005 04:45 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How do I use Safari full-screen?

    I would like to have full-screen use of Safari without seeing the toolbar along the bottom of the screen. Can anyone advise me of how to do this? It seems a waste to have an inch of a 13" display taken up with the applications I can choose to use by closing or minimising safari.
    Thanks

    "I would like to have full-screen use of Safari without seeing the toolbar along the bottom of the screen"
    You can re-position the "Dock"
    If the Dock is in your way, you can hide it, change its size, or move it to another side of the screen.
    To hide the Dock, choose Apple menu > Dock > Turn Hiding On.
    To move the Dock, choose Apple menu > Dock > ”Position on Left” or “Position on Right.”
    To change the size of the Dock, locate the separator between the row of application icons in the Dock and the Trash. Then move the mouse over the separator until the pointer becomes an up and down arrow, press the mouse button, and drag the arrow up and down.
    To see the Dock when it’s hidden, move the pointer to the bottom of the screen. If you’ve moved the Dock to the left or right, move the pointer to that side of the screen.
    Carolyn

  • How to avoid pop up appearing in the screen middle top when playing video full-screen ?

    I created a landing page with embedded video hosted on Vimeo. When I click to play the video full-screen there's always a pop up window in the middle top saying the meaning like Vimeo is playing full-screen, press escape to get out of it. I don't want that pop up from appearing, I am wondering if any code I can put on the embedded video to prevent the pop up ? Thank you very much.

    No, as a web developer, you can't tamper with that message. The point is to prevent a situation where the user is trapped in full screen, as would happen if full screen is initiated by the page and the page doesn't provide controls to exit full screen.
    If users trust the site in question, they can check the "Never ask me again for this domain" checkbox to avoid the message in the future.
    Users can also get rid of all such messages altogether:
    # Install Stylish and restart Firefox when prompted.
    #* https://addons.mozilla.org/firefox/addon/stylish/
    # Click the Stylish icon on the navigation toolbar and choose Write New Style, then Blank style.
    # Paste the following in the text box, give the style a name, then click the Save button.
    <pre><nowiki>
    @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
    #fullscr-toggler,
    #full-screen-warning-container {
    display: none !important
    </nowiki></pre>
    If you don't want to install an add-on, you can use the ''userChrome.css'' file instead, but I don't recommend it. In that file, the first line of the style should only appear once at the top.
    * http://kb.mozillazine.org/UserChrome.css

  • How to create Context Menu for Full Screen ALV

    Dear Experts,
    Please tell me the procedure to create Context Menu for ALV Grid (full screen ALV using SLIS ).
    Regards
    Arnab

    Hi,
    Check the demo program BCALV_GRID_06

  • How can I view movies in iPad with the full screen?

    Ok, I bought two movies from iTunes on my iMac and synced them with my iPad. It went well.
    But when I play them back on the iPad, I can only view them in letterbox/portrait mode which uses only one third of the iPad screen!!! Why is this? Is there anyway I can actually utilise the other two thirds of the iPad screen to view the movie? Otherwise it kind of defeats the object of having an iPad surely?
    FevLad

    Hi,
    I think we are going to experience some format problems on our mobile devices,  unfortunate as that may be.
    This is caused, I think, by the video and cable providers preparing to roll out live programming through LTE
    broadband from the cell towers to multiple mobile devices and home television.  We should expect some
    bumbs along the road.
    This may be an unrelated problem:
    On my Ipad, before OS 5 upgrade, I was was able to view Xfinity, HBO Live, ABC Live and CNN Live in full
    screen using the popup full screen icon on the top right of the screen.
    After OS 5,  HBO,ABC,CNN LIVE  -  all could be viewed full screen using the popup icon.
    The popup Icon is not available with Xfinity.  Xfinity is now letterbox.   Very, very annoying!!!
    The Comcast New Products department said that engineering would fix this problem.  I sure hope they do.
    Howie

  • How to view the program panel in full screen mode?

    I know how to make the program panel full screen using the "~" key, but I would like to view my work completely without borders. Similar to using Quicktime or Windows media player. I can't imagine that this feature doesn't exist. Any help would be greatly appreciated.

    This feature is new to CS6. Hit ctrl+` (ctrl+grave).

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

  • Full Screen mode cancelled by launching PDF in Browser Window

    There are quite a few of these posts on here. After Flash 9
    the fullscreen fscommand no longer retains its fullscreen display
    if you use getURL to launch a browser window to display either a
    web page or a PDF. All of the previous posts have been "answered"
    by the Flash Jester Jugglor Support Team, unashamedly plugging
    JSTART and JUGGLOR to everyone raising this issue. When all we
    really need is a response from Adobe on how we can fix this -
    because it's obviously a BUG - and serves no real purpose.
    I DON'T want to buy JUGGLOR, I tried it years ago and found
    it buggy and unfathomable. All I want is to be able to keep my
    fullscreen!
    The cynic in me wonders whether FlashJester might be owned by
    Adobe in some way, and by introducing this bug they're hoping to
    raise additional revenue from selling all those copies of
    JUGGLOR....?

    most likely the example you got has a flaw, I've created a
    few flex apps, and the work fine on full screen using ie6 or ie7 or
    firefox. Try debugging it so you'll figure out what's the
    issue

  • How to create a full screen Air Application with pdf

    Hi,
    I need to create a app in full screen which can load pdf files.
    I read that the pdf files need to have the nativeWindows in normal mode, and "stage.scaleMode"  in "StageScaleMode.NO_SCALE" mode to run.
    So I get the HTMLLoader dimensions by getting the screen resolution. But by putting "StageScaleMode.NO_SCALE" my movie up and down the pdf is not resizing!!
    How can I do to see the pdf and having the asssets (movies in my library) resize too?
    Regards,

    Could some one help me in creating a full screen
    using Java such that we dont see any Taskbar or
    anything that is related to windows. For eg when we
    play a game we dont have access to those windows
    components. http://onesearch.sun.com/search/onesearch/index.jsp?qt=full+screen+java&subCat=&site=dev&dftab=&chooseCat=javaall&col=developer-forums
    The basic question is How to Lock the Desktop using
    Java Program and also how to capture the Key events
    Ctrl + Alt + Del and Alt + Tab and disable its
    actual functionality or change its action..You can't.

  • Safari full screen glitch when adding Bookmarks

    Hey there people!
    Love Safari, but I've had a fullscreen operation glitch for probably a year and still have not found a solution. The glitch only occurs while Safari is in full screen mode.
    Problem:
    1. Occurs when adding a new bookmark (in any method either thru keyboard shortcut, menu (bookmarks > add bookmark) or share button (share > add bookmark)
    2. Adding Bookmarks pop up menu appears (confirming bookmark location) but underneath the pop up menu the Safari window flickers to full screen view of default mac brushed aluminium backdrop and the space quickly slides to the left. While this is happening another brushed aluminium desktop slides from the right and into view. This backdrop then flickers to reveal original Safari window content with Bookmarks pop up menu ontop.
    3. However at this point before confirming bookmark add - if all desktop spaces are revealed via Mission Control, Safari has created a blank desktop space with Safari logo to the left of the original Safari screen. This space is titled the current web page but the thumbnail is blank (mac brushed aluminium backdrop). If the space is selected I can only see the brushed aluminium backdrop. It cannot be closed (with command W or Esc) or via Mission Control.
    4. Back to original Safari window. After I confirm which folder to save the bookmark, Safari space slides to the left and merges with the ORIGINAL desktop space (the default desktop that is created on system boot which cannot be moved or deleted). This space now looks like normal fullscreen Safari however the dock and menu bars are showing and the space is titled Desktop rather than Safari.
    6. In order to display Safari in proper fullscreen mode again, Safari has to FIRST "EXIT Full Screen" (using either keyboard shortcut or menu shortcut, full screen button does not appear). After EXIT Full Screen, Safari is correctly displayed in windowed mode in DESKTOP. Safari has to Enter Full Screen as normal to restore Safari as its own space and in full screen.
    Notes:
    - Glitch does not occur at other times (including adding pages to Reading List or during another pop up menu such as (File > Save As).
    - The glitch was first evident since fullscreen implementation in Lion. I have since updated to Mountain Lion hoping it would fix the issue but it remains unaffected.
    - I have attempted removing all Safari extensions. I have also tried removing 3rd party plugins such as Growl, Alfred. But this hasn't made any difference.
    Macbook Pro mid 2010
    Safari 6.0.4
    OS X 10.8.3
    Does anybody have any ideas or suggestions? (clean install of OSX will most likely work but is last resort)
    Thanks for reading!

    com.Cycling74.driver.Soundflower (1.5.1)
    com.tvmobili.tvmobilisvcd
    com.freemacsoft.appcleanerd
    com.adobe.SwitchBoard
    com.adobe.fpsaud
    com.fiplab.MemoryCleanHelper
    net.culater.SIMBL.Agent
    com.wacom.wacomtablet
    com.tvmobili.artwork
    com.adobe.CS5ServiceManager
    com.veoh.webplayer.startup
    com.spotify.webhelper
    com.google.keystone.user.agent
    com.goacemjobhmmbdlbbfjgifjcojdfnjfm.updater
    /Library/Components:
    /Library/Extensions:
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AudioMixEngine.framework
    DivX Toolkit.framework
    GlimsAdditions.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    SGCS112.framework
    TSLicense.framework
    iLifeFaceRecognition.framework
    iLifeKit.framework
    iLifePageLayout.framework
    iLifeSQLAccess.framework
    iLifeSlideshow.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    .DS_Store
    Flash Player.plugin
    JavaAppletPlugin.plugin
    OVSHelper.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    Silverlight.plugin
    Unity Web Player.plugin
    Unused
    flashplayer.xpt
    iPhotoPhotocast.plugin
    nsIQTScriptablePlugin.xpt
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.CS5ServiceManager.plist
    com.tvmobili.artwork.plist
    com.wacom.wacomtablet.plist
    net.culater.SIMBL.Agent.plist
    /Library/LaunchDaemons:
    com.adobe.SwitchBoard.plist
    com.adobe.fpsaud.plist
    com.freemacsoft.appcleanerd.plist
    com.tvmobili.tvmobilisvcd.plist
    /Library/PreferencePanes:
    Flash Player.prefPane
    Perian.prefPane
    /Library/PrivilegedHelperTools:
    Google Drive Icon Helper
    com.freemacsoft.appcleanerd
    /Library/QuickLook:
    GBQLGenerator.qlgenerator
    iBooksAuthor.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    AC3MovieImport.component
    Perian.component
    /Library/ScriptingAdditions:
    Adobe Unit Types.osax
    SIMBL.osax
    /Library/Spotlight:
    GBSpotlightImporter.mdimporter
    iBooksAuthor.mdimporter
    iWork.mdimporter
    /Library/StartupItems:
    GenArtsRLMLicenseServer
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Law 2013/Administrative Law 2013:
    .DS_Store
    AL JURD7160 Course Outline.pdf
    AL S1 2013 - Study Guide.pdf
    AL course schedule S1 2013.docx
    Library/Address Book Plug-Ins:
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    AkzidGroBla
    AkzidGroBol
    AkzidGroLig
    AkzidGroRom
    AkzidenzGrotesk-Bold.otf
    AkzidenzGrotesk-BoldCond.otf
    AkzidenzGrotesk-BoldCondItalic.otf
    AkzidenzGrotesk-BoldItalic.otf
    AkzidenzGrotesk-Cond.otf
    AkzidenzGrotesk-CondItalic.otf
    AkzidenzGrotesk-Light.otf
    AkzidenzGrotesk-LightCond.otf
    AkzidenzGrotesk-LightCondItalic.otf
    AkzidenzGrotesk-Medium.otf
    AkzidenzGrotesk-MediumCond.otf
    AkzidenzGrotesk-MediumCondItalic.otf
    AvantGardeITCTTDemi.TTF
    AvantGardeITCTTDemiOblique.TTF
    CenturyGothic
    CenturyGothic Bold
    CenturyGothic BoldItalic
    CenturyGothic Italic
    DINEngschriftStd.otf
    DINMittelschriftStd.otf
    Feathergraphy2.ttf
    Feathergraphy_Clean.ttf
    Futur
    FuturBoo
    FuturHea
    Futura
    GothaHTFBla
    GothaHTFBlaIta
    GothaHTFBol
    GothaHTFBolCon
    GothaHTFBolIta
    GothaHTFBoo
    GothaHTFBooCon
    GothaHTFBooIta
    GothaHTFLig
    GothaHTFLigCon
    GothaHTFLigIta
    GothaHTFMed
    GothaHTFMedCon
    GothaHTFMedIta
    GothaHTFThi
    GothaHTFThiIta
    GothaHTFUlt
    GothaHTFUltIta
    GothaHTFXLig
    GothaHTFXLigIta
    GothamHTF Black
    GothamHTF BlackItalic
    GothamHTF Bold
    GothamHTF BoldCondensed
    GothamHTF BoldItalic
    GothamHTF Book
    GothamHTF BookCondensed
    GothamHTF BookItalic
    GothamHTF Light
    GothamHTF LightCondensed
    GothamHTF LightItalic
    GothamHTF Medium
    GothamHTF MediumCondensed
    GothamHTF MediumItalic
    GothamHTF Thin
    GothamHTF ThinItalic
    GothamHTF Ultra
    GothamHTF UltraItalic
    GothamHTF XLight
    GothamHTF XLightItalic
    HelveNeuBolCon
    HelveNeuBolConObl
    HelveNeuCon
    HelveNeuConObl
    HelveticaNeue Condensed
    LeMondeLivre-Bold.otf
    LeMondeLivre-BoldItalic.otf
    LeMondeLivre-Italic.otf
    LeMondeLivre-ItalicClassic.otf
    LeMondeLivre-ItalicSC.otf
    LeMondeLivre-Normal.otf
    LeMondeLivre-NormalClassic.otf
    LeMondeLivre-SemiBdItalicSC.otf
    LeMondeLivre-SemiBold.otf
    LeMondeLivre-SmBdItalicOsF.otf
    Longhand
    Oz Bold .suit
    Oz Medium Italic .suit
    OzBol
    OzMedIta
    Rockwell
    RotisSanSer
    RotisSanSerBol
    RotisSanSerExtBol
    RotisSanSerIta
    RotisSanSerLigIta
    RotisSansSerif
    RotisSansSerif Bold
    RotisSansSerif ExtraBold
    RotisSansSerif Italic
    RotisSansSerif Light
    RotisSansSerif LightItalic
    Unive
    UniveBol
    UniveBolObl
    UniveObl
    Univers
    Univers Bold
    angelina.TTF
    Library/Frameworks:
    EWSMac-GC.framework
    EWSMac.framework
    Library/Input Methods:
    .localized
    Library/InputManagers:
    Library/Internet Plug-Ins:
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.863509C8-39A3-4BC4-AD55-145 19029264D.plist
    com.goacemjobhmmbdlbbfjgifjcojdfnjfm.updater.plist
    com.google.keystone.agent.plist
    com.spotify.webhelper.plist
    com.veoh.webplayer.startup.plist
    Library/PreferencePanes:
    .DS_Store
    .c4dsetup
    .c4dsetupCINEMA 4D12.016CCF918A6
    Library/QuickTime:
    Library/ScriptingAdditions:
    Library/Services:
    OmniOutliner Professional.service
    ToastIt.service
    Library/Spotlight:
    FontMDI.mdimporter
    FontExplorerXAutoload, Growl, iTunesHelper, SizzlingKeys4iTunes, Jitouch, Alfred, AppCleaner Helper, CNQL2410_ButtonManager

Maybe you are looking for