How do I maximise a screen using a keyboard?

Are there keyboard shortcuts for maximising screens using a keyboard?
Firstly to maximise - the same as the green + button
And secondly to completely maximise
Thanks
Omar

Does this help..
http://superuser.com/questions/718600/keyboard-shortcut-to-maximize-current-wind ow-application-in-mac-ios

Similar Messages

  • Extended monitor: how do I maximise windows + trouble using PC keyboard

    I've got an external monitor attached to my Macbook Pro
    How do I maximise a window in the extended monitor?
    When I maxmise, it just pops back to my mac screen
    ALSO: any advice on using a PC keyboard?
    I'm finding it fiddly using the Windows button
    ALSO: swiping... I cant do
    I have the Macbook Po on a laptop raiser
    Can I swipe with the mouse somehow?
    Thanks
    Omar

    What OS are you running?
    There is no shortage of keys so if it is smaller it just means it is has less bulky and wated space. The wireless ones do not have a number pad if that is what you mean. Apple has a USB "full size" keyboard with number pad.
    I assume, since you are listed the price as pound, you are in the UK?
    http://store.apple.com/uk/product/MB110DK/B/apple-keyboard-with-numeric-keypad?f node=56&p=1
    The track pad is the same as the one on the laptop just bigger and wireless.
    I have a MacBook Pro with two additional displays so I use the Apple wireless keyboard and trackpad. I find gestures to be a great time saver and would never go back to a mouse.

  • How can i create splash screen using netbean?

    how can i create splash screen using netbean?

    Welcome to the Sun forums.
    gabbyndu wrote:
    how can i create splash screen..Java 6 offers a splashscreen functionality. See [New Splash-Screen Functionality in Java SE 6|http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/] *(<- link)* for details.
    [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] has offered splash screens to applications since Java 1.2. See [How can I provide my own splash screen?|http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/faq.html#206] in the JWS FAQ for more details.
    .. using netbean?We don't support Netbeans here. Ask that on a [Netbeans forum|http://forums.netbeans.org/].

  • How to I show a tooltip using a keyboard shortcut?

    Hi, does any one know how to show a tooltip for the currently active item in a web page using the keyboard? I can get tooltips to display using the mouse, but I'd like a keyboard shortcut too. Shift -F1 didn't help, nor Ctrl-F1.
    Any ideas?
    == This happened ==
    Just once or twice
    == I was writing a web page

    Hi, does any one know how to show a tooltip for the currently active item in a web page using the keyboard? I can get tooltips to display using the mouse, but I'd like a keyboard shortcut too. Shift -F1 didn't help, nor Ctrl-F1.
    Any ideas?
    == This happened ==
    Just once or twice
    == I was writing a web page

  • How do I navigate in finder using the keyboard?

    Can someone tell me how I navigate in the finder using the keybaord?
    For example, I want to go back to the parent folder
    How do I do this?
    In Windows I'd hit the backspace key
    Are there any other useful shortcuts for navigating using the keyboard?
    Thanks
    Omar

    EDIT: I just remembered... it's cmd + up arrow (or is it down)
    Just remmebered someone else told me this one in another reply
    Lol
    Is there a one key shortcut like the backspace though?

  • How to display SVG on screen using Batik

    I have the following working code which reads in a PNG graphic and displays it on screen. It uses ImageIO and is fairly simple. I have the same symbols in SVG format. I have downloaded Batik from Apache, but I can't for the life of me find code to simply load the image and display it on screen. Can someone direct me to working code that does this.
    Thanks,
    Chris
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.imageio.*;
    public class Example01 extends Frame
    public static void main(String args[])
    new Example01();
    public Example01()
    super("Java 2D Example01");
    setSize(400,300);
    setVisible(true);
    addWindowListener(new WindowAdapter()
    {public void windowClosing(WindowEvent e)
                    {dispose(); System.exit(0);}}
    public void paint(Graphics g)
    Graphics2D g2d = (Graphics2D)g;
    try
    Image bi = ImageIO.read(new File("burda_knitthruback.png"));
    g2d.drawImage(bi, 40, 40, 50, 50, this);
    catch(IOException ioe)
    System.err.println(ioe.getMessage());

    I'm complely new to Batik.
    I need to display a PNG file in a SVG format. As well I need to display it on the JSVGCanvas.
    What I don't know is using Batik how to implement svg <image> tag.
    Please help me on this problem.
    Here's the code I used. But It's not working.I have used ImageIcon object to display a PNG file.
    But the svg output is not as expected
    import javax.swing.*;
    import org.apache.batik.dom.svg.SVGDOMImplementation;
    import org.apache.batik.dom.util.DOMUtilities;
    import org.apache.batik.svggen.SVGGraphics2D;
    import org.apache.batik.swing.JSVGCanvas;
    import org.apache.batik.util.SVGConstants;
    import org.w3c.dom.DOMImplementation;
    import org.w3c.dom.Element;
    import org.w3c.dom.svg.SVGDocument;
    import java.awt.*;
    import java.io.FileWriter;
    import java.io.PrintWriter;
    import java.io.IOException;
    public class RectCreate{
    private SVGGraphics2D generator = null;
    private JSVGCanvas canvas = null;
    private SVGDocument doc = null;
    public static void main(String[] args){
    RectCreate rc = new RectCreate();
    private void passContent(){
    Element root = doc.getDocumentElement ();
    generator.getRoot(root);
    canvas.setSVGDocument (doc);
    public RectCreate(){
    canvas = new JSVGCanvas();
    DOMImplementation dom = SVGDOMImplementation.getDOMImplementation();
    String svgNS = SVGDOMImplementation.SVG_NAMESPACE_URI;
    doc = (SVGDocument)dom.createDocument(svgNS,"svg",null);
    generator = new SVGGraphics2D(doc);
    passContent();
    Rectangle rect = new Rectangle(10,10,48,48);
    ImageIcon imIcon = new ImageIcon("/home/dds/IdeaProjects/BPEL2SVGLibrary/BPEL2SVGIcons/icons/invoke.png");
    passContent();
    saveToFile("/home/dds/IdeaProjects/MyBatikSVG/svg1.svg");
    private void saveToFile(String file){
    try{
    FileWriter f = new FileWriter(file);
    PrintWriter writer = new PrintWriter(f);
    // Get the created document from the canvas
    writer.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
    writer.write ("<!DOCTYPE svg PUBLIC '");
    writer.write (SVGConstants.SVG_PUBLIC_ID);
    writer.write ("' '");
    writer.write (SVGConstants.SVG_SYSTEM_ID);
    writer.write ("'>\n\n");
    SVGDocument svgDoc = canvas.getSVGDocument();
    // And here our SVG content is actually being
    // written to a file
    DOMUtilities.writeDocument(svgDoc, writer);
    writer.close();
    } catch(IOException ioe){
    System.err.println("IO problem: " + ioe.toString());
    Edited by: ddweerasiri on Nov 10, 2008 8:36 PM

  • How do you maximise the screen?

    Pressing the green button in the top left only seems to make a page fill most of the screen - how do you make a page fill the whole screen?
    Thanks

    Thanks. Surprised there isn't one stroke that can fill the screen - quite fiddly to drag across.

  • How to default values on screen using FREE_SELECTIONS_INIT

    Hi Experts,
    I have the following requirement :
    We have developed a screen on which there is a button. On click of the button, a dynamic selection screen is generated using the functions FREE_SELECTIONS_INIT and FREE_SELECTIONS_DIALOG.
    I want when the selection screen is generated for the first time, the fields on it contains some default values taken from a table.
    e.g. If Screen has fields MARA-MATNR, MARA-MTART, MARA-MEINS then MARA-MEINS should be defaulted with a value 'EA'.
    I have tried a lot but could not find a solution to it.
    Kindly help me out as this is very urgent.
    Points are guaranteed..
    Thanks in advance.
    Regards,
    Himanshu

    SELCTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK BLOCK_1 WITH FRAME TITLE TEXT-001.
    PARAMETERS : P_RADLOC RADIOBUTTON GROUP GRP1 USER-COMMAND USER  .
    SELECTION-SCREEN BEGIN OF BLOCK SUB1_BLOCK WITH FRAME TITLE TEXT-002 NO INTERVALS.
    PARAMETERS : P_LOCNO TYPE /SAPAPO/LOCNO MODIF ID ABC default 'Specify the default value here.
    SELECTION-SCREEN END OF BLOCK SUB1_BLOCK.
    SELECTION-SCREEN SKIP .
    PARAMETERS : P_RADRES RADIOBUTTON GROUP GRP1  DEFAULT 'X'.
    SELECTION-SCREEN BEGIN OF BLOCK SUB2_BLOCK WITH FRAME TITLE TEXT-003 NO INTERVALS.
    PARAMETERS : P_RESNM TYPE /SAPAPO/RES_HEAD-NAME MODIF ID XYZ.
    PARAMETERS : P_NOB   TYPE /SAPAPO/CRES_NOINDIVRES  MODIF ID XYZ.
    SELECTION-SCREEN END OF BLOCK SUB2_BLOCK.
    SELECTION-SCREEN END OF BLOCK BLOCK_1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF P_RADLOC = WL_SPACE .
          IF SCREEN-GROUP1 = WL_ABC.
            SCREEN-ACTIVE = 0.
            MODIFY SCREEN.
          ENDIF.
        ELSEIF P_RADRES = WL_SPACE .
          IF SCREEN-GROUP1 = WL_XYZ.
            CLEAR : P_RESNM, P_NOB.
            SCREEN-ACTIVE = 0.
            MODIFY SCREEN.
          ENDIF.
        ELSE.
          SCREEN-ACTIVE = 1.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • Satellite Pro M70 - How to activate touchpad mouse by use of keyboard?

    I somehow lost connection to the touchpad mouse. How can I activate it again by use of the keyboard (I don't have any external mouse)?
    Asia ;o)

    As mentioned the touchpad can be disabled and enabled using the key combination FN+F9.
    Usually if the touchpad has been disabled then a touchpad icon which appears in the task bar should contains a red crossed circle.
    Check this.

  • How to type a # in Illustrator using  UK keyboard

    As you can see from the subject line i know that Alt + 3 make the # symbol on a Mac using a UK keyboard, but in Illustrator it doesn't seam to let me do this. Is there a reason for this I don't know about or some other way of getting the same character? I'm using CS1 and Mac OS 10.4

    It's on mine, sharing with the ~,  immediately left of the Enter key.

  • How to get a default variant screen using LDB.(HR-ABAP)

    Hello,
                   I have created a report using LDB PNP.Used HRBEN000 as a hr report category.
    Got a default selection screen, I want to add one more field, for this I have selected the field from further
    selection button, and displayed on the screen. Now i saved as a variant.
    how to get this default screen using the variant in the report/program when executed?
    Please help me.
    Thanks&Regards,
    Archana.

    Hi ,you camn always make your Z report category...if the field is present in further selection tab..
    if not you can create your own paramerter or select option.....
    but you have to handle it in your code ....as get pernr wont filter on its basis(parameter select optyin created by you)
    but why loop at screen is not working?
    let me know how you are doing...
    have to do it in at selection-screen output

  • How to get ME23 screen using selection-screen

    Hi,
    I am trying to get the ME23 screen using selection-screen with following code.
    select-options: purordno for ekko-ebeln NO intervals.
    SUBMIT SAPMM06E VIA SELECTION-SCREEN .
    But at the time of execution i got this error "INCORRECT PROGRAM TYPE WITH SUBMIT".
    Can any one please provide me some sample code how to get the ME23  screen
    using Abap program.
    Regards,
    krishna/rajesh.

    Hi Rajesh,
    You can't submit a pool modul ( SAPMM06E ).
    Only executable prog can be submit .
    What you can try is use "CALL TRANSACTION" statement.
    Hope this helps,
    Erwan

  • Skip the selection screen using BDCTAB call transaction

    Hi experts,
    I am using BDCTAB for call transaction SWI1 I need to skip the selection screen. Can you please tell me how to skip the selection screen using BDC call transaction?
    Thank you in advance.....

    hi,
    the first step is to pass some values to the selection screen, at least Date From and Date To; otherwise, it´ll take a long time. The second step is to emulate the Execute button, which is done with '/08'.
    PERFORM fields USING 'BDC_OKCODE'   '/08'.
    Third step is to catch the programme and screen number.

  • How to schedule the background job using current selection screen field val

    Hello Friends,
    How to schedule the background job using current selection screen field values.
    after completion of the job the spool should be sent as a mail to SAP Inbox.
    Is there any way to create the variant dynamically by reading the current selection screen values.
    Thanks,
    Ravi

    Hi,
    To get the variant details you can use teh following FM.
    'RS_VARIANT_CONTENTS'.
    Regards,
    Ankur Parab

  • How do I get content from my iPad to show up on the tv screen using Apple TV without going thru iTunes?

    How can I get content from my iPad and my air book to show up on the tv screen using Apple TV, without going thru iTunes?

    You will need to use AirPlay to see that.
    Assuming both devices are on the same network and that AirPlay is not turned off on the Apple TV, then simply tap on the screen when you are watching content you wish to stream to your Apple TV, then tap the airplay icon that appears in the control bar, choose the Apple TV from the menu that appears.
    When displaying the content you wish to mirror on the iPad 2 (or better), iPad Mini, iPhone 4S (or better), double tap the home button (quickly) and swipe the bottom row of apps to the right to reveal the playback controls, tap the AirPlay icon and select your Apple TV from the list of available devices.

Maybe you are looking for

  • Issue while installing Ms Project Server 2013 on MS Server 2012 R2 with Sharepoint Server 2013

    Hello MS Support Team, I installed SQL server 2012 & Sharepoint server 2013 and after that the MS project Server 2013 is not installing on the same server -- pls hv a look the enclosed screenshot. sent at [email protected] and guide me to resolve it

  • Searching for a better design for function in sql where clause

    We are using for a while a parameter management framework based on parameter hierarchy and matrix fully internazionalized. For implementation flexibility we never use primary key to access directly the parameter but used a function that return the co

  • Export only specific data from PDF to Excel

    Hello, I am trying to figure out a way to export only specific fields from a PDF to an Excel sheet.  I have dozens of past revenue statements from various companies.  When I export the whole PDF at once, it does not transfer in any use able way witho

  • Baggage files will not display/open

    Using Robohelp 9, Baggage files have been added to project and links created to them but linked baggage files will not open when project is generated.  Using local drive and have attempted display in IE10, IE10 (compatability mode), IE9, IE8 but get

  • Importing miniDV files losslessly

    Hi, I have an old Sony TCR-TRV11 Camcorder that uses miniDV cassettes for recording video. I have recently imported all of them thorugh firewire 800 via iMovie '11 as .dv files into the iMovie Events folder. Is there a way to convert those .dv files