Files Window always displays in front

Since upgrading to CC (might have also been an issue in CS6, can't remember), the files window always displays as the top window. I like to have it fill a good portion of my monitor so that I can easily see the ftp file next to the local files and also view dates of files. If I want to work in a particular file I have open, I have to close out my sites window. More so, when I leave Dreamweaver open in the background and switch to another application, the files window will still display over top of everything else on my monitor.
Is there any way to change this behaviour or should it be reported as a bug. I am working on an iMac running Mountain Lion.

Hi Amikin,
Can you provide a video cast of what you are experiencing?
You can use jing as its free and fast to set-up so I can help investigate this further for you.
- http://www.techsmith.com/jing.html 
Thanks,
-SIdney

Similar Messages

  • How can I add the date to a PDF file that always displays today's date?

    I am trying to convert a word document into a PDF file. The word document has a field code for the date, but when I convert it to PDF format, the field code is not preserved.

    Convert using what?  Acrobat?  PDF Pack?  Microsoft Office?

  • Switched Views in Site Files window [DW MX]

    I'm using DW MX (not 2004 or DW8), and somehow the Site Files
    window's display of Remote and Local files got switched around. Now
    Remote files are on the left, and Local files are on the right. Not
    a huge deal, but it's counterintuitive to me, and I'd like to
    restore the normal setup.
    How do I reset the view to the normal scheme? (Local on left,
    Remote on right) I can't see any way to do it.
    TIA,
    steve
    PS: I'm on Mac OX 10, if that matters...

    For DW MX 2004 on Windows, go to Edit > Preferences >
    Site. Set the
    "Always show" menu to "Local Files on the Left". I think it's
    the
    same for DW MX.
    Hope this helps,
    David Alcala
    Adobe Product Support
    >I'm using DW MX (not 2004 or DW8), and somehow the Site
    Files window's display
    >of Remote and Local files got switched around. Now Remote
    files are on the
    >left, and Local files are on the right. Not a huge deal,
    but it's
    >counterintuitive to me, and I'd like to restore the
    normal setup.
    >
    > How do I reset the view to the normal scheme? (Local on
    left, Remote on right)
    >I can't see any way to do it.

  • I redownloaded my Photoshop CS5 and Camera Raw will not accept my RAW files nor will the Adobe Bridge display the picture view of these files. A message displays saying it doesn't support this camera.  I have a Nikon 5100 DSLR Camera.  It always displayed

    I redownloaded my Photoshop CS5 and Camera Raw will not accept my RAW files nor will the Adobe Bridge display the picture view of these files. A message displays saying it doesn't support this camera.  I have a Nikon 5100 DSLR Camera.  It always displayed them in the past.  How can I get it to display these photos in Bridge and open them in RAW?

    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Camera Raw 6.7 Update
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Camera Raw 6.7 Update
    Benjamin

  • Want to open a new browser window and display the html file in locale disk.

    Hi,
    I want to open a new browser window and display the html file in local drive. The below html applet work in local system successfully. But i deploy the same in web server (Tomcat) and try the same in client machine it does not work. Please help.
    Note:
    The class below fileopen.FileOpen.class i make it as a jar and put it in jre\ext folder at the client machine.
    ------------------------------------FileOpen.html(Tomcat)-----------------------------------------------------
    <html>
    <body >
    <applet code="OpenFile.class" archive="loadfile.jar" width="100" height="100">
    <param name="path" value="file://c:/open.html" />
    </applet>
    </body>
    </html>
    -------------OpenFile.java in server(Tomcat)--------------------------------------------
    public class OpenFile extends Applet implements ActionListener{
    String path = "";
    fileopen.FileOpen open = null;
    Button b = null;
    public void init(){
    path = getParameter("path");
    b = new Button("Open");
    b.addActionListener(this);
    add(b);
    public void actionPerformed(ActionEvent ae){
    try
    open = new fileopen.FileOpen(this,path);
    catch (Exception e){
    e.printStackTrace();
    -------------------------------------------FileOpen.java /Client JRE/ext----------------------------------------------------
    package fileopen;
    public class FileOpen
    AppletContext context = null;
    URL url = null;
    public FileOpen(Applet applet,String path)
    try
    if(null != applet){
    context = applet.getAppletContext();
    if (null != path)
    url = new URL(path);
    context.showDocument(url, "_blank");
    }catch(Exception ex)
    ex.printStackTrace();
    Please help to solve this issue very urgent.
    Thanks in advance.
    By,
    Saravanan.K.

    zzsara wrote:
    I want to open a new browser window and display the html file in local drive. ...Did you ever pause to consider how ridiculous that is?
    The best audience for applets is people off the internet. 'People off the internet' might be using a computer that has no (what was it?) 'open.html' in the root of the C: drive. In fact (shock horror) they may not even be running Windows, and would therefore probably have no 'C:' drive at all.
    If you do not intend to distribute this to people off the web, an application makes a lot more sense, but even then, you cannot rely on the document being there unless you 'put it there' (during installation, for instance).
    As the other poster intimated, applets can load documents off the local disk as long as they are trusted. Here is an example*, but note that it is not so rash as to presume any particular path or file, and instead leaves it to the user to choose the document to display.
    * The short code can be seen at SDNShare on the [Defensive Loading of Trusted Applets|http://sdnshare.sun.com/view.jsp?id=2315] post.
    On the other hand, a sandboxed applet can load any document coming from its own server via URL, or get showDocument(URL) to work. In that case, the JRE must recognize that the URL is from its own server, so the best way to form URLs for applet use is via the URL constructor
    new URL(getDocumentBase(), "path/to/open.html");That is how I form the URL in this [ sandboxed example of formatting source|http://pscode.org/fmt/sbx.html?url=/jh%2FHelpSetter.java&col=2&fnt=2&tab=2&ln=0]. Of course, in this case the applet loads the document, then parses the text to draw the formatted version, but the point is that an URL produced this way will work with showDocument(URL).
    I am pretty sure showDocument() in an applet off the internet will work with an URL pointing to a foreign (not its own) server, but it will not be able to load documents off the end user's local disks.
    I suggest a couple of things.
    - Try to express this problem in terms of what feature it is that you want to offer the end user. Your question jumps directly to a bad strategy for achieving ..who knows what? An example of a feature is "Shows the applet 'help' files on pressing F1".
    - A good way to indicate interest in a solution is to offer [Duke stars|http://wikis.sun.com/display/SunForums/Duke+Stars+Program+Overview] to match that interest.
    Edit 1:
    ..and please figure out how to use the CODE tags.
    Edited by: AndrewThompson64 on Sep 12, 2008 11:14 PM

  • How can I script a Flash .exe file to always stay on top of all other windows?

    Hi All,
    I'm new to action script, and I just need this one script
    > How can I script a Flash .exe file to always stay on top of
    all other windows?
    Basically what i want to do is have a flash-created
    step-by-step instructional movie, but for the movie to remain on
    top of all windows so the instructee is able to follow the
    instructions on-screen...
    It would be preferable to not have to buy another product
    just to do this... as I said, this is the only scripting I need.
    Thanks in advance
    Cheers
    Rick

    if you create your exe with mProjector you can use one of its
    new AS
    commands to do this.
    setZOrder
    http://www.screentime.com/software/mprojector/docs/mWin_setZOrder.htm
    all APIS
    http://www.screentime.com/software/mprojector/docs/index.html
    Demo
    http://www.screentime.com/software/mprojector/demo.html
    mProjector installs new classes and help into Flash, to
    enable them you
    must build your app with mProjector (its input is your swf)
    John Pattenden
    Screentime Media - Flash Tools since 1997
    http://www.screentime.com

  • Opening a new browser window always puts a flv-file (0bytes of a youtube vid viewed earlier) on desktop. Firefox 18.02

    Opening a new browser window always puts a flv-file (0bytes of a youtube vid viewed earlier) on desktop. Firefox 18.02
    viewed the yuotube vid yesterday. deleted all the flv-files on the desktop.
    same thing today, a new window always puts the same empty file from yesterday.
    any suggestions?

    You can check the home page setting:
    *Tools > Options > General > Startup: Home page
    *https://support.mozilla.org/kb/How+to+set+the+home+page
    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox Profile Folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created

  • I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like t

    I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like this to export my lightroom images to edit in photoshop as it has always been able to do for me.  What fix do you recommend?

    Hi Ashley Clavette,
    The Initial view setting works perfectly when the file is opened in Acrobat after setting the desired Initial View.
    When you upload the file onto Wordpress, and view it on that website in the browser...it might be using a different pdf handler program which might be causing this issue ( it would be helpful, if you could provide the screenshot) , however when you download the pdf again from wordpress server...and open in Acrobat/Reader...then what  exactly happens ?  Does the pdf opens in the desired Initial View setting?
    Rahul

  • Using Windows 7, now Reader XI and now SOME pdf files won't display. Try: 'PDF of Reader XI Help'!!!

    After installling Reader XI SOME pdf files will not display. Using Windows 7 and all worked fine until installation of XI. Esample: when I try to display YOUR file 'PDF of Reader XI Help' all I get is a blank screen with an X in the upper right corner. Works just fine with Windows XP and Reader 8.5.1. Any ideas ????? Thanks.

    http://helpx.adobe.com/acrobat/kb/cant-view-pdf-web.html

  • Stage.nativeWindow.alwaysInFront how to keep the window always in front

    Hi, I've just written and application that needs to always be in front of the other applications. I have set the application's nativeWindow.alwaysInFront property to true, but, after a few other air applications open the application will get pushed behind. It seems to work when the first application opens up, but after opening a second time it will no longer be on top. Any suggestions? Thanks.

    One way is to browse your iTunes Music Library in the Finder and open the video file with QuickTime instead of playing it in iTunes. Then you have always-on-top and also fixes the "full screen on 2nd monitor" problem. Maybe not ideal, but a workaround.

  • I can't open a silverlight dmg file-it always opens Terminal window

    Hi,  I can't open a silverlight dmg file to watch netflix.  I am running Lion on my 2.66ghz iMac i5 with 10.7.3. I can download and install silverlight but when I try to open the file, it always opens the Terminal window.  Please Help.

    It sounds like all your launch services file associations have somehow been corrupted.  I suggest your reset the launch services bake to their initial default settings.
    The easiest way for you to do this is probably to get a maintenence utility like OnyX (download the Lion version for your case).  It has, among many other things, a way to rebuild the launch services.  Launch OnyX.  It will ask for your admin password and a window like below will be dispallyed.
    As you can see from the above picture in OnyX you select Maintenance, Rebuild tab, check the LaunchServices checkbox, and click the Execute button (not shown here but it's at the bottom of the window).
    Note, the above shows the window for the Snow Leopard version of OnyX.  I don't know if the Lion version is different since I don't use Lion.

  • The Files window in Dreamweaver stays in front when it is not active

    How do I get the Files window in Dreamweaver CC to 'jump' behind the active window. It is VERY ANNOYING(!) as it is now when it stays in front on the screen although it is not active. I remember it was like this in an earlier version of DW also, but it was fixed after an update.

    <moved from Adobe Creative Cloud to Dreamweaver support forum>

  • Mac File Site window always on top

    I am using Dreamweaver 8.0, but have seen this exact same
    issue on a Windows CS3 install and a Mac CS3 install.
    I like to have the Files Window detached from the right side,
    and expanded so I can see the Remote Site and Local Files lists
    side by side. When I open an html file, I expect the html file to
    open on top of the file list window. It works this way on some
    installs, but not on others, very annoying. In the problem
    installs, I must manually move the file (site) window way down to
    the right to expose the html file I want to work on. Then when I
    want open another html file, I have to drag it file window back up,
    to see my file list, double click on the file, and then move the
    file list back out of the way.
    In other words, in the problem setups, the File Window is
    "always on top", so it must be a preference or setting, but I
    cannot figure out.
    Please help me fix this annoying problem.
    mark

    I'm having the exact same problem in DW CS5 now. Did you find a solution? Hitting fn+F8 isn't going to work on my iMac extended keyboard. F8 is the iTunes play pause button. Besides, having to command-tab to an app THEN hit fn+F8 just isn't going to work obviously.
    I can't believe in 2010 this is broken.
    Please do let me know if you found a way around it. I tried all the different layout prefabs in CS5, and without exception they all do it.

  • How can I turn off the Download pop up Window from displaying when downloading a file?

    How can I turn off the Download pop up Window from displaying when downloading a file?

    To not display the built-in Firefox downloads window, Tools > Options > General tab, un-check "Show the <u>D</u>ownloads window when downloading a file". See: http://support.mozilla.com/en-US/kb/Options+window+-+General+panel
    If you have some other download manager installed, you will need to see the documentation for the download manager.
    <br />
    You have installed plugins with known security issues that should be updated. To see the plugins submitted as part of your question post, click "More system details..." to the right of you original question.
    *Shockwave Flash 10.1 r53
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave Flash'''
    #*Use Firefox to Download and SAVE to your hard drive from one of the links below; '''<u>the links take you directly to the download and you avoid the "getplus" download manager and "extras" (i.e., toolbars, virus scan links, etc.) on the main Adobe page.</u>'''
    #*SAVE to your Desktop so you can find it
    #*After download completes, close Firefox
    #*Click on the file you just downloaded and install
    #**Note: Vista and Win7 users may need to right-click the installer downloaded and choose "Run as Administrator"
    #**Note: Most browsers other than IE will also get updated with this one download
    #**Note: To update IE, same procedure '''<u>but use IE</u>''' to go: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    #*After installation, restart Firefox and check your version again.
    #*'''<u>Download links and other information</u>''':
    #** https://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash
    #** '''<u>or</u>''' you can download, save, then run the manual installers for IE, then for Firefox (and all other browsers) from here: http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #* Also see: http://support.mozilla.com/en-US/kb/Installing+the+Flash+plugin
    #* Also see (if needed): http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    #* After the installation, start Firefox and check your version again.

  • Capture window always uses the wrong name-

    Hello everyone, I'm having this problem… when I go to capture HDV footage the Capture Window always remembers the name of the LAST clip I captured, when I change it and do all my capturing I find out that all my clips (and with HDV that can be a lot) have still retained the wrong name (in the browser and on my scratch disk). I tried trashing preferences and it works for the first time and goes back to this. Any help would be much appreciated. Thanks!
    Also I am using someone else's computer which is a G4 (not my macbook listed below).

    xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 304.64 (buildmeister@swio-display-x86-rhel47-12) Tue Oct 30 12:04:46 PDT 2012
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    DisplaySize 360 203
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    # Option "UseEdidDpi" "FALSE"
    # Option "DPI" "96 x 96"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "1"
    Option "TripleBuffer" "1"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1360x768_60.00"
    EndSubSection
    EndSection

Maybe you are looking for

  • Itunes no longer imports calendars into my ipod

    My first problem was that iTunes would only transfer over certain calendars, not all that I had selected. On top of that, some, but not all, of the start times were an hour later than my iCal calendars. And, I've been having issues with disappearing

  • CAN'T LOG IN APEX APPLICATION

    Hi, I am working with apex 3.2, when I try to login to the application it immediately shows Please contact the administrator. . I am no expert, the first thing that I check was the http on the Data Base Server, It is on maintenance state, but in othe

  • [SOLVED] Arch terminal issues

    Having some trouble with my terminal in Arch. I currently have Arch running with i3 and using Terminator emulating xterm. Everything is fine except something is causing the terminal instance to wrap the cursor way too earlier (before the end of the c

  • Server Specifications

    I developed a java application using net-beans IDE with jsp and we deploy it in glassfish application server and we want to know what is the hardware requirement for this application to run 1000 user at the same time .is there is a tool that calculat

  • Problem with saving files

    Hello, I use FW since 2002, I am having an anyoing problem: when I save the file, let's say logo.png, I save it in the folder of my client clientxxx I want to export the file into jpg, and I try to export and by default the export command opens the d