Simple but drastic question...resizing windows

I normally work with a Macbook connected to a 23" Cine display. Pulled the Macbook off the display, opened Photoshop, and the bottom of all the action panels (actions, layers, channels, etc...) are below the lower edge of the screen and there appears to be no way to recover them.
The program is essentially useless until I can get connected to a big display, simply to click on the bottom of these panels.
What's the secret to resizing these?

This is in the System Preferences of the Mac in OSX Snow Leopard and above (perhaps previous versions as well)

Similar Messages

  • [Theory] A simple but hard question about OO programming

    I was in my first class of OO programming (4th year of computer engineering in Valencia) and the professor gave us homework.
    The homework was a simple question about OO programming (it is not about a specific language, though we are going to use Java in the practice sessions), we shall find an answer to it and discuss it in class the next day.
    The question was:
    "May classes also be objects?"
    which can be said as:
    "May classes be instances of an(other) classes?"
    I hope that you, archers, can enlighten me in this question

    tvale wrote:I believe an object is an instance of a class.
    Yup, that's true. Let's see... An object is an instance of a class, so we can have a lot of objects coming from one class.
    We can say an object is not a class because it has a state (think about a light, it has a state: on or off, but a class light is not on/off, because in a class we just describe the behavior that class should have.
    But what we're asking here is if a class can have a state. I think it may refer to static properties about the objects.

  • Simple, but dumb, question

    My wife wants to copy a cassette tape to her G4 laptop. Is GarageBand the right application to digitize an analog source? I looked at the Apple page on GarageBand and didn't see anything that helped.
    Thanks.

    You can use simpler programs than GB, but GB will do it:
    http://www.bulletsandbones.com/GB/FAQPages/RecordCassette.html

  • Help with a simple but crazymaking question!

    hi there, would anyone here mind looking at my test site and
    telling me what I am doing wrong?
    http://presentations.patrickmeyers.com/
    I am VERY new at anything web related, and trying to learn
    some Dreamweaver, html, and css. Basically I want ALL my content
    (which for now is just images) to stay flush left with each other
    no matter what the user does with their web browser window. But
    when I expand my web broswer window, two of my images (one of which
    is a rollover image that I need to add a hyperlink to) bump over to
    the right and up. I don't want them to do that! I want them to stay
    flush left at all times.
    I also want to center everything so that no matter what a
    person does with their browser, the page stays in the center of the
    window (i.e. the Yahoo homepage) but all the content remains left
    aligned relative to the top.
    I've tried every concievable setting in Dreamweaver I can
    think of and nothing works. The button and bottom banner still move
    over to the right and up.
    Any tips? Thank you in advance!!!!!
    p

    <p><img src="banner.jpg" width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    <p><img src="lowerbanner.jpg" width="792"
    height="41" vspace="30"
    align="left" /></p>
    </body>
    You have two elements horizontally adjacent (the banner image
    at 792px
    width, and the anchor tag at 180px width). Their combined
    width is
    792+180+32px = 1004px (the 32px comes from the hspace="16"
    attribute). When
    the browser viewport is less than 972px wide, the anchor tag
    and its
    associated image will just drop below the banner image (since
    they are
    contained in a <p> that has no explicit width).
    Change this -
    <p><img src="banner.jpg" width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    to this -
    <p style="width:1004px;"><img src="banner.jpg"
    width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    and see what happens.
    > I also want to center everything so that no matter what
    a person does with
    > their browser, the page stays in the center of the
    window (i.e. the Yahoo
    > homepage) but all the content remains left aligned
    relative to the top.
    It depends on whether you are using absolute positioning on
    the page, as to
    which method might be best, but in either event, this will
    work -
    Change this -
    </head>
    to this -
    <style type="text/css">
    #wrapper { width:1004px; margin:0 auto;position:relative; }
    /* 760px will display on an 800px screen maximized browser
    window without */
    /* horizontal scrollbars. 1004px is pretty wide, and will
    display horizontal
    scrollbars on 1024 screens.*/
    </style>
    </head>
    change this -
    <body
    onload="MM_preloadImages('click-button-yellow.jpg')">
    (the ellipsis represents any other attributes that might be
    mentioned in the
    body tag, and SHOULD NOT BE INCLUDED EXPLICITLY!)
    to this -
    <body
    onload="MM_preloadImages('click-button-yellow.jpg')">
    <div id="wrapper">
    and this -
    </body>
    to this -
    <!-- /wrapper -->
    </div>
    </body>
    and see if that helps.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "patrickpmm" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi there, would anyone here mind looking at my test site
    and telling me
    > what I
    > am doing wrong?
    >
    http://presentations.patrickmeyers.com/
    >
    > I am VERY new at anything web related, and trying to
    learn some
    > Dreamweaver,
    > html, and css. Basically I want ALL my content (which
    for now is just
    > images)
    > to stay flush left with each other no matter what the
    user does with their
    > web
    > browser window. But when I expand my web broswer window,
    two of my images
    > (one
    > of which is a rollover image that I need to add a
    hyperlink to) bump over
    > to
    > the right and up. I don't want them to do that! I want
    them to stay flush
    > left
    > at all times.
    >
    > I also want to center everything so that no matter what
    a person does with
    > their browser, the page stays in the center of the
    window (i.e. the Yahoo
    > homepage) but all the content remains left aligned
    relative to the top.
    >
    > I've tried every concievable setting in Dreamweaver I
    can think of and
    > nothing
    > works. The button and bottom banner still move over to
    the right and up.
    >
    > Any tips? Thank you in advance!!!!!
    > p
    >

  • Simple but elusive question

    I have a master/detail form. Upon updating a row in the detail block, I need to update a table which is different from both the master and detail tables. so far the insert and delete operations are working fine (I use post_insert and post_delete), but the problem is when I try to do an update because the pre_update and post_update triggers deal with the new value for the updated row. How can I handle the situation where there is an old/new value?

    The best way to handle something on a table where you need the old and the new-values would be a database-trigger. Also for reasons of data-consistency a database-trigger would be the better solution (its always executed, not just for dml coming form a specific forms-module).
    If you still want to do it the forms-way there are two possibilities:
    Use a POST-UPDATE-trigger and get the old-values via GET_ITEM_PROPERTY('BLOCK.ITEM', DATABASE_VALUE);
    Use a PRE-UPDATE-trigger and read the data directly from the db-tables via a select.

  • Simple but necessary question

    I have noticed my computer fans running more so when the unit is hooked up to the internet WITHOUT any extra applications running (i.e. Safari)as when unpluged yet running with the same CPU demands.
    In other words:
    When I'm at work, (no internet hook up), and the computer is sitting idle but not asleep, the fans hardly kick in, yet, in the same situation, but at home HOOKED to Cable Net but still running idle, the fans kick in every once in a while.
    Is this to be expected?

    neuroanatomist
    thank you again for the prompt answer.
    As far as I can recall, I did the diagnostic you recommended with the activity monitor and nothing appeared too extensive.
    I think I will attempt it again and hopefully, either find my answer, or ask for your advice again if negative.
    Thank you
    Ralph

  • Pretty simple but annoying question for newbie

    when opening form is there a way to automatically display the
    record rather than having to hit F8.
    also....
    is there a way to navigate through records using PL/SQL rather
    than using the buttons on the tool bar at the top or form
    runtime.
    thanks in advance

    This is probably in the wrong forum. ;)
    Anyway, here's my suggestions for your two queries:
    Q1) Add a WHEN-NEW-FORM-INSTANCE trigger containing the
    following statement:
    EXECUTE_QUERY ;
    Q2) Use the up and down arrow keys - they navigate between the
    previous and next records respectively.
    HTH

  • Concatenate " Simple but tricky question "

    Hey guys
    How are u, this looked like easy problem. However, I tried so many things. I want to add a space in front of character. This is 2-character lengths field.
    When I was executing this command, it is not adding up space.
    If I am something wrong correct me
    Here is the code
    DATA:  i type i ,ONE(1) VALUE ' ',FINAL(2) ,TWO(1).
    i = sTRLEN( t_record-trfgr ). “ first it shows 1 for H
    if i LE '1'.
    concatenate  TWO ONE  '.' into final.
    CLEAR:I.
    i = sTRLEN( final ). “ its still say 1
    Thanks

    Saquib,
      <b>Concatenate   '    '
                    t_record-trfgr
             into
             final.</b>
      Following should also work:
    <b> Concatenate  
             space
             t_record-trfgr
             into
             final.</b>
    Thanks
    Kam
    Note: Allot points for all worthful postings

  • Simple but frustrating question

    When I pressed f6, it used to create a keyframe duplicate of
    the most recent keyframe on that layer. For some reason, today I
    got on and f6 is making blank keyframes! even when I go to
    modify>timeline>convert to keyframes --- still blank! What
    happened and how do I fix it?

    Flash will create a blank keyframe if there is nothing on the
    layer where you are creating the keyframe (i.e. You press F6 when
    you have a 'white' frame selected).
    If you press F6 on a frame that is shaded grey (a frame that
    has content), the content of the frame where you have inserted a
    keyframe does not change, it simply converts the frame to a
    keyframe. I hope that makes sense - and that it is helpful.

  • JTextArea wraping but not working on window resize

    Real noob here...
    I'm having a problem when doing a simple listing of folder/file directory within a JTextArea. I would like to simply list each folder or file per line.
    Example:
    Folder1
    Folder2
    File1
    File2
    File3
    With some messy coding, where I add blank space after the folder/file, I can get it to look like above. But when you resize the window, that all goes out the window (no pun inteneded).
    Example after resizing:
    Folder1 Folder2
    File1 File2
    File3
    Notice how now, they are no longer on individual lines.
    I've tried embedding the JTextArea into a JScrollPanel, but has not effect as again, resizing the window still causes the problem.
    What can I do to fix this situation?

    Thanks for the quick reply...
    First let me state that I'm experimenting with Java and Swing... so I have no doubt that I might looking in the wrong place.
    I'm just trying to list the contents (folders and/or files) of a particular directory. Another example might be listing the contents of a file, that may just be names of people.
    I was attempting to output this listing to a JTextArea. How do you list each item on individual lines? I've attempted to do so, but when I resize the window, the items are no longer displayed on one line.
    A real simple concept, but again, there may be other better equipted classes out there...

  • Simple, funny but annoying question, putting a pixel

    Maybe this could be simple, funny but annoying question.
    How do you put a pixel or draw a pixel?
    Is there a method to draw a pixel directly on screen in j2SDK API?

    This is a very open ended question, do you want to draw a pixel in an image or just draw a shape on the screen?
    If you want to edit single pixels at a time then the best option is to create a BufferedImage and use the WritableRaster to edit the pixels you want by using setPixel().
    Something like the following:
    BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    WritableRaster raster = img.getRaseter();
    raster.setPixel(x_coord, y_coord, new int[]{R_val, G_val, B_val});This image can then be displayed by putting it in a JLabel (there are many other techniques but I find this the easiest method).
    JLabel l = new JLabel(new ImageIcon(img));
    JFrame jf = new JFrame();
    jf.setContentPane(l);
    jf.pack();Alternatively, you can draw shapes by using Graphics or Graphics2D objects
    e.g.
    public class MyPanel extends JPanel
      public void paintComponent(Graphics2D g)
         super.paintComponent(g);
         g.drawLine(x1,y1,x2,y2);
    }Hope this helps,
    Stef

  • SAP Script  - resize window / paragraph

    Hello Gurus,
    I have two problems related to sap script. ( ver 4.6c)
    I have copied the original order confirmation form from 000 client in diff.languages like FR/DE/EN ( these forms are used by diff. offices in diff. location ) now we have to create a form for our china office location so I copied an existing form ( FR language) to language ZH.
    a. I cannot resize or move the window of the form ZH, to do this I have to convert the original laguage to ZH ( original language of the form is FR) , to change the original language I have to edit the FR language form and use the utilities->convert org.lang option , my question is if I do this process what will happen to our FR language settings users? or is there anyother way to do this ( move or resize window ) without disturbing other forms.
    b. I am using two paragraph settings for printing the item line in the order form, ex. ZZ and IS , if I use IS the item line appears but for ZZ there is no item lines printed on the form. ( blank ) What could be the problem for using ZZ Par.format.
    Any help is appreciated.
    Thanks and best regards,
    A drop in an Ocean

    Try to identify the original language of the SAPscript.
    EX: GOTO SE71, give your form name and language ZH. select radio button Header and click change.
    under adminstrative data, identify the original language. EX: if original language is DE
    GO back to SE71, now give your form name and key in language as DE. Modify all windows here.. i.e. re-size etc., it will automatically gets changed in your ZH language. Also you can create new paragraph formats or change existing paragraph formats here using original language. you can see all changes in form ZH.
    If you want to re-size in "ZH" itself .. try to change original language to ZH.
    I guess, this info will help you to close the thread.
    Regards,
    SaiRam

  • SAP Script :change position of window margins (resize window)

    Hi,
    how to change position of window margins (resize a window)?
    Sounds very simple, but when I open my SAPScript form in layout editing mode it does not allow me to change values of window margins...
    Regards,
    Mindaugas

    Hi...
    Make sure your entering language and orginal language of the script is same or not.
    utilities -> convert orginal language..
    Procedure if you are using English as entering language:
    Enter script name -> Enter language as DE -> change -> utiliteis -> convert orginal language -> change it DE to EN -> now back and re-enter into script...
    Thanks,
    Naveen.I

  • Openbox: Resize Window According To Resolution

    Is it possible to use to resize windows according to the resolution of your screen in OpenBox3? What I want to do is make windows half the screen width with a shortcut. I can do this like this in rc.xml:
    <keybind key="S-Right">
    <action name="UnmaximizeFull"/>
    <action name="MaximizeVert"/>
    <action name ="MoveResizeTo">
    <x> 720 </x>
    <y> 0 </y>
    <width> 720 </width>
    </action>
    </keybind>
    But I would like to make it more flexible and to set it to this without knowing how much half of my (1440x900) screen is (720).  Unfortunately resizing after setting MaximizeVert doesn't work which would be a step in the right direction.
    Is there a way to resize a maximised window? Is there another way of doing this?

    Seems there is no way to do this yet although it should be possible since openbox knows what size to "maximise" your windows to.
    Another question: is it possible to perform an action after pressing PART of a keychain? I.E. keybind an action to C-r say and then followed by another key to complete a keychain to perform a different action:
    <keybind key"C-r">
    <action name="action 1"/> <!-- action when C-r is pressed -->
    <keybind key="e">
    <action name ="action 2"/> <!-- action when C-r then "e" is pressed -->
    </keybind>
    </keybind>

  • Zoom resizes window

    I have been using Imageready for years, and now trying to
    switch to Fireworks, since Imageready is gone... I am afraid I will
    be here a lot to ask questions...
    My first one is: Is there an option to automatically resize
    the window if you zoom in or out with Ctrl-+/-
    In Photoshop you can set it in the preferences: General
    --> Zoom Resizes Windows, but haven't found the equivalent in
    Fireworks. I'd like to organize a number of pictures on the screen
    so that I can make decisions where they go on a webpage...
    Thanks,

    treble101 wrote:
    > However, enabling these short cuts still doesn't solve
    my problem that the
    > image window is resizing with the image size itself when
    I zoom in or out. If
    > I zoom out, I'd like to have the window shrink as well,
    so that I can see other
    > images 'behind' it...
    On PC's, document windows don't resize in any program unless
    you resize
    them manually. If they behave that way on Macs, that's a new
    concept for
    me. :-)
    I'm not sure what you mean by images behind it. If you mean
    another
    document you have open, either click on its tab at the top
    left of the
    document window, or undock the document windows by choosing
    Window >
    Cascade.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

Maybe you are looking for

  • IPhone/iTunes music won't sync

    I can't get my music to sync to my iPhone.  I have iPhone 5 and iTunes version 11 (Everything is updated).  I had to delete my music last week to upgrade to iOS 7 because there wasn't enough room on my phone.  And now I can't get it to sync back onto

  • Web Dynpro Application URL Host Name Not Correct

    Hello, I am developing a web dynpro application in our development system but when I activate the application it gets a URL that points to our test system.  When I test the application in HTTP Service (SICF) the URL for the development system is pass

  • Java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[

    HI, I am trying to monitor multiple weblogic servers, I am getting the exception when the program is trying to read multiple domains of the same weblogic server version 8.1. Can any one help me in getting this fix programatically using weblogic.manag

  • How many apps can I upload to the app store?

    Is there a limit?

  • Configurable Products and Campaign Management

    Hi All, In our project we are going for configurable products. We plan to give campaign based discounts on these products in CRM. Please let me know how to handle configurable products in Campaign Management. Many thanks for your response: Keshav