No Floating Windows: workaround?

Still cannot get used to no Floating Windows. Found this thread which reveals that they are definitively no longer an option in L8:
http://discussions.apple.com/thread.jspa?messageID=6848865&#6848865
Is there anyone who misses them that has found a good working practise to replace them?

thanks for your reply Mattrixx.. yes - the Event window Floats as does the Loop Browser, Audio Bin all float when opening from the Menu and holding down Option. But crucially the Mixer, Environment, Piano Roll and Score Editor *do not* stay floating after being opened in this way.. which to me is a real nuisance.
*Request to Logic Programmers*: if there is already a facility to open Floating windows on some of the items available in the Window list, could you please extend them to ALL the windows in that list?
Oh and by the way a real useful discovery:
I experimented with different modifier keys on that window list ( ie Control and Shift instead of the old L7 option + window for Floating Window) and guess what:
Control + choice of Window (ie Sample Editor, Piano Roll etc) opens Key Commands taking you to that particular window opening function)....
Now how many of you knew about that .. or care?

Similar Messages

  • How do I keep a floating window on top of a tabbed document so that it can be used as a reference while drawing/painting?

    Just started using Photoshop CC on my iMac and I have noticed this issue which I did not have using windows based computers. Any floating window just seems to hide in the background as soon as I click on the tabbed document I want to work on. This is an issue for me since I like to have a couple of references open while painting plus I always have another with nothing but my color palette in it. I've already gone over the preferences but can't seem to find the way to avoid this and the options from Widow>Arrange weren't any help also resizing all windows so that they don't overlap each other ends up wasting a lot of screen real estate.

    c.pfaffenbichler meruhelp this is what I'm used to in Windows windowsWORKSPACE | Flickr - Photo Sharing! and yes the active document does not need to be the top most window. This enables me to have my references as floating windows and keep them where I need them as I paint.
    This is what I have to do while working on my Mac macWORKSPACE | Flickr - Photo Sharing! keeping references to either side using floating windows or options from Window>Arrange. If I drag them closer to the area I want to work on, the window will either disappear behind the active document window or it will overlap as you can see in the two images in the top left corner. Aside from the extra work from rearranging windows this way I feel that I'm loosing a good chunk of screen (see yellow striped area).

  • What is the keyboard shortcut to close a floating window?

    Hiya, just upgraded to Logic 9 from 7 and I can't close floating windows with option-w.
    Is there a way I can close floating windows without using my mouse?
    Thanks
    Alistair

    r0cker2 wrote:
    Thanks for the quick reply
    I am trying to close floating windows (effects and instruments) using ALT-W not CMD-W.
    Ah, okay, never used that one. Have you checked your *Key Commands* that this shortcut actually still is assigned? Even if it is, it might just help to reassign it (to the same keycombo).
    (much later:)
    Mm, I did a search of Logic key commands, but I cannot find any command that closes floating windows, alt-W is not a default shortcut for anything... to what command exactly did you assign alt-W?

  • How do I change position of video floating window in IDCS5 PDF export?

    I have created an interactive document in InDesign CS5 (for Mac) that includes some movies. The page size is 1280 x 800 and the H264.mov files are 960 x 540 and 800x600. I place the movie in the center of the page at 100% size (without resizing either the movie object or the frame). The poster is set to None to keep it blank. In the PDF options, the Play Video in Floating Window box is checked, with the size set to 1x and the Position is set to Center by default but it is grayed out, with no option to change it.
    When I export the document to PDF (Interactive) with both View and Layout set to Default and Buttons and Media set to Include All, the resulting PDF file opens the movie window in the upper right corner of the PDF document window. It does this whether viewing in Acrobat X Pro (10.1.2) or Acrobat Reader (9.5.0). I've tried opening the file on other computers and have the same issue. I've also created the same document in IDCS5.5 with the same outcome.
    I'd like the movie to open in the center of the PDF document window. I've made other documents where it does this, but for the life of me can't figure out what I'm doing differently to cause the floating movie window to open in the upper right corner of the PDF document.
    Any insight you could provide would be very helpful.
    Thanks,
    John

    Thanks for your reply, Steve. I, too, believe there is a bug, but it's not in InDesign CS5, as I mentioned in my post, I was able to replicate the problem by opening the file in CS5.5 and exporting it to an interactive PDF. The movie again opens in the upper right corner.
    However, if I create a NEW page in the document and place the same movie. it opens in the PDF reader centered in the page. I guess I could recreate the document if this is the only fix, but I thought that I may be doing something wrong, which apparently is not the case.
    "Computers often do what you want them to, but they ALWAYS do what you tell them to."   —anonymous
    "If you have placed the video in InDesign in it's own frame, should you not leave this box unchecked?"
    Rik, I didn't actually place the movie into a new frame. What I meant to say was that once the movie was placed into the document, I did not resize it. I found that if I don't have the PDF viewer open the movie in a flaoting window, the movie quality suffers if the PDF viewer opens in a larger size than the original InDesign page size (which can happen depending on how the user's PDF viewer is configured). However, the movie plays and views perfectly if it is in a floating window.
    jh

  • Can one create a floating window using JSF?

    I was recently shown the interface for GMail. I don't have a GMail account, but one of the things I was asked to investigate was whether or not we can create the sort of floating window that appears on the GMail interface when one positions the mouse pointer over a cell on the grid showing the email messgaes. We have a grid on our JSF page, that shows specific data for items we're supporting, and it would be useful if we could have something like a mouseover event handler for each table row, and in that event handler show a window with a graphic specific to the data in that row, and the chart would move with the mouse pointer, perhaps changing the graphic if the mouse pointer is moved over a different row in the data table.
    Can we do this using JSF? If not, what alternative can you suggest that would provide a reasonable facsimile to this kind of user friendly feature?
    Thanks
    Ted

    "Core JavaServer Faces" Second Edition, by David Geary and Cay Horstmann, copyr 2007 - ISBN: 0-13-173886-0 - (it put me back USD $50, but well worth it). Page 644 gives two examples of how to generate a pop-up window. They give two examples because of problems that can arise when you transfer data between the main window and the pop-up. I do not want to violate copyright and there are ten pages of text devoted to this topic, so I'll just present some tickler code - if you cannot afford the book, maybe you can google on some terms. Sorry, I feel this is as far as I can go on this, I hope this helps some!
    The first example uses a JavaScript call:
    popup = window.open(url, name, features);
    popup.focus();
    where 'features' is a string like "height=300,width=200,toolbar=no,menubar=no"
    The second example creates the pop-up form using a hidden field like this:
    <h:form id="hidden" target="popup">
    <h:inputHidden id="country" value="#{bb.country}"/>
    <h:commandlink id="go" action="showStates"/>
    </h:form>

  • Editing the position of a floating window video for an interactive PDF

    I'm fairly new to InDesign CS5's interactive features, so forgive me if I'm making a blatant mistake. However, everything I have read about floating windows says that you can easily adjust the size and position in the Interactive PDF options dialog and I am not able to. I have no problem getting the video to play in a floating window, the problem is that I am unable to change the position settings. It is locked as "centered" though when I view the PDF, the window pops up in the upper right and extends beyond the frame of my window. How do I unlock the position settings and get it to actually play centered?
    I have tried this using a placed .mov video and I also tried converting it to a F4V file, because I read those worked better, but still no luck.
    Is anyone else experiencing this problem? Any solutions?
    Thanks!

    PDF (Portable Document Format) used to be a proprietary standard developed by Adobe Systems. A few years ago, they decided to make it an international standard, no longer proprietary: ISO 32000.
    http://www.adobe.com/devnet/pdf/pdf_reference.edu.html
    International standards are managed by standards organizations which meet with a committee structure. As such, they are slower to adapt to new techologies.
    By contrast, Adobe Digital Publishing Suite, it an active, rapidly-changing, PROPRIETARY set of applications and cloud-based services.
    Both models have their advantages and disadvantages.

  • How to create floating windows in InDesign for images

    Hi guys, any help on this would be much appreciated.
    I'm designing a document in InDesign that will be exported as an interactive PDF, and within the pages, I have some thumbnail images which, once clicked, will need to open a floating window in the document with the full image. Just wondering if anyone could please help me out with some instructions on how to do so.
    I don't want it to open a browser window, therefore just attaching a hyperlink to a web address is not what I'm after. What I'm hoping is the images can be embedded within the document, and then activated once the thumbnail is clicked.
    Hope that makes sense but if you need me to clarify anything please ask.
    I'm using CS6.

    Go to Tv.Adobe and do a search for interactive and/or object states.
    One other note: search for the topic with workflow export to SWF and replace in PDF.
    If you don't want SWF, then only use buttons (no object states).
    If you don't mind Dutch, take a look at a video at my blog about pop up in PDF etc:
    http://fvdgeest-dtp.blogspot.nl/2012/10/interactieve-knoppen-in-pdf-zonder.html

  • Floating windows in Tiger, Right-Click

    As a fan of keyboard control I appreciate the extend to which Mac OS X is made simple without the use of a mouse. One thing I have not been able to figure out is how to close a floating window. For example, try this: "Get Info" on a folder or object in Finder by using Alt-Command-i; this brings up a floating window that does not share the ordinary properties of a Finder window, i.e. it cannot be closed with Command-w, it will not appear in Exposé operations, etc.
    You can use Control-F6 to give it focus and be able to cycle through its controls, but this seems to be only semi-focus. A Command-w action will still close the window behind it (or, if on Desktop, do nothing).
    Let me know if there is a way to close a floating window from the keyboard.
    Secondly, is there a surefire method for right clicking ('Control-Clicking') built-in to the operating system using only keyboard commands?
    Thanks for your help on this guys.
    iMac G5 1.8Ghz   Mac OS X (10.4.2)  
    iMac G5 1.8Ghz   Mac OS X (10.4.2)  

    Hello WickEd Z, I just checked and mine works fine! I can open Finder>Get info,
    then I can close any window just by the Command+W, so all I can think of is that you'll have to check & see your lay-out in System-preferences.

  • Float windows

    I am trying to float all windows in my copy of E 10. I click on Window>images but the float window tab is not highlighted. Anyone know how to do this
    John

    Hi John
      Click on the menu:
    Edit >> Preferences >> General
    Then check the box “Allow Floating Documents in Full Edit”
    Click OK

  • PS CS4 histogram and floating windows

    How do I get Photoshop to open with floating windows and the histogram in compact RGB mode? I have to reset this every time I open a new photo. I can't believe how hard it is to change modes in the histogram.I have to undock it, change it to expanded view, change the mode, change it back to compact view and redock it. This made sense to someone? I tried saving the workspace, but that doesn't solve the problem.

    Oops

  • Where is "float window above other apps" in digital color meter ?

    Where is the option to Float window above other apps in digital color meter (osx 10.8.2) ?

    It's difficult to provide help without knowing your level of color-management expertise, but I think you've helped us some with that in post number 2.
    Color management is basically this:  Images and devices have certain color characteristics, and these are described by color profiles, sometimes also called color spaces.
    1.  You should not need to use the Proof Setup at all to view your images on your monitor.  When things are set up properly Photoshop shows you accurate color without your choosing View - Proof Colors.
    2.  A color-managed application like Photoshop will try to show you accurate color on your display by interpreting both the image profile and your monitor profile and transforming the colors accordingly.  BY DEFINITION this will look different than other applications which don't do color-management as these just pump the image RGB values directly out to the display. 
    Thus:
    If your monitor profile indicates your monitor has a wide gamut, images with embedded profiles may appear less saturated inside Photoshop than from non-color-managed apps.
    If you view images that have an embedded wide gamut profile (such as Adobe RGB 1998 or ProPhoto RGB), Photoshop and other color-managed applications will interpret that profile and the colors will likely appear more saturated in Photoshop than in a non-color-managed application.
    It sounds as though the first case applies in your case here.
    You can check to see what monitor profile is associated with your monitor through OS settings.  I'm thinking, based on the caption buttons in your screen grab, that you've got Windows XP, but rather than go further with that assumption, I'll ask you to verify it first.
    -Noel

  • Screen mode with floating windows missing in Photoshop cs6?

    Hi,
    How can I show two images open in Photoshop CS6  - next to each other?
    Going through the screen modes by pressing F like in Photoshop CS5 doesn't get me there. That screen mode with the floating windows seems to be missing.
    I need it for comparisions and for dragging layers between the two images.
    Is the floating window screen mode achievable in CS6 or how else can I put two opened images next to each other on Photoshop's workspace?
    Thanks!

    Thanks!
    It's so amusing: you get a new version of Photoshop and one of your well-known features is not where it used to be. Immediately an ancient fear takes over that the feature might have gone away.
    Which is, of course, never happening. There's even "sharpen" and "sharpen more" available in Photoshop.
    Bottom line: the new way of doing things are actually even better. You just need to pull the images off their tabs.

  • 3D full screen and floating window issue

    hey everyone,
    since the new pdf viewer (adobe acrobat 10) released i've got an issue with the 3d fullscreen and the floating window.
    the first photo below shows the default view in a 3d scene. if i'm selecting the floating window (or the fullscreen) there is a problem with the camera (position, targetPosition and the behavior).so the view is wrong and the position of all nodes in it, and up to now i am unable to fix it
    Does anyone has this problem as well and can help me?
    cheers frank

    hi good morning,
    i was on holiday for 5 days now so sorry my late answer. I tried to set the default view in the u3d model but it doesn't work as well
    i loaded up a file that does not work in fullscreen as well as in the floating window (http://www.fileuploadx.de/76685).
    The javascript errors at startup were evoked, because i deleted some models that aren't needed but the javascript tries to load it. But they don't have any effect to the scene so far.
    In the floating window (or fullscreen) something with the camera must be wrong. I deleted the buttons (you can see as billboards in the scene) and then it works. So i tried to figure out the problem and let me displayed the position of the camera after each rendering event simple by (console.println(scene.cameras.getByIndex(0).position). Even if I displayed all cameras, that were about 50 surprisingly, it was the same overall. If the scene is embedded in the pdf document the camera position changed as it has to be. In the floating window and in the fullscreen i did not record any changes of the camera ...
    does anybody has an idea ?!
    cheers frank
    ps: please use adobe reader 10 to see that issue. with version 9 everythings should work fine.

  • Does PSE 10 have floating windows

    Does PSE10 have floating windows it doen't appear on my drop down menu, I have heard it said that it was wiped out with an Adobe download but is this just a rumour. I have only just installed 10 and have never seen it. I find it hard to mess around with any of the other styles, it takes longer, I have tried dragging the photos up from the project bin but this seems to cause the programme to become a little unstable and I don't feel it's meant to be done this way.
    Cheers Chicky picky

    Go to the editor's preferences>general and turn on>Allow floating documents in full edit mode. Then you can go to Window>Images>Float all in Windows.

  • PS stuck to top menu.  Unable to 'detach' to floating window...  Please help!

    I opened Ps as normal and went to drag it to a second monitor and botch it by letting finger slip off mouse.  Now Ps is stuck to top menu bar.  Unable to make it a floating window.  It says it's in 'Standard Screen Mode'...  ???

    It looks like Window menu > Application Frame was checked.
    You can try checking it on and off.
    Or reset the workspace:
    Window menu > Workspace > Reset Workspace
    Or last resort: Reset Preferences:
    Press and hold Cmd - Shift - Opt immediately upon cold-starting Photoshop.  If you get the keys down quickly enough - and you have to be VERY quick - it will prompt you to confirm deletion of your established preferences, which will lead to them all being set to defaults.

Maybe you are looking for

  • Crystal Reports Image box does not display images.

    Post Author: xbhavesh CA Forum: .NET i have CR report which has a Imagebox to display images from db table. i am storing the images in a table as path. in my dev machine when i load the .aspx page with the crystal report it shows the image in the box

  • After Leopard Upgrade, HDTV No Longer Displays Full Screen Apple TV??

    Fairly recent Apple convert. iMac is directly connected to HDTV (Mini-DVI to HDMI) and A/V Receiver(Toslink). After Leopard upgrade, I now have a black border, on HDTV, no matter what resolution I choose (worked automatically and perfectly on Tiger).

  • Goods Issue (SIngle issue of Diff. FInished Goods)

    HI Dears, I am in a Pharma Company and i have two diffrent f.g. with same raw material but in a diff. pack means i have a material said A with raw material AA & Packing Material BB and second one said G with raw material AA & Packing Material GG. My

  • Trying to break pages

    I need to send to printer several tickets. I use af:inputText's for that. One ticket is one af:inputText. I set page-break-after: always; in the inlineStyle to separate tickets in order to print every ticket on its own page. It works. But I don't lik

  • Program bug in SAPLV61A

    has anyone tried this program? I was trying to do stock initialization for BW in ECC and got this short dump. when I look at it, it is pointing at program SAPLV61A, saying structure KOMP does not have component called ZZAUFMENG. the coding is XKWERT