Rotating Canvass to work in Portrait

Hi,
I want to rotate the canvass so that I can work in portrait rather than landscape. I understand that this can be done by adjusting printing options, but I want to WORK in portrait. In Powerpoint this is done easily by going to page settings and clicking on portrait. Can this be done in Keynote as I prefer using this program for creative reasons?

Welcome to the discussions, Planetude.
You could custom set the resolution to be 768x1024 instead of 1024x768 or some other setting like that.

Similar Messages

  • What's going on with ios8... Screen rotate does not work anymore, wifi doesn't work very well anymore and apps are crashing or running slow... Come on Apple sort this mess out

    ssince I updated my iPhone 5s to ios8 ive had nothing but problems...
    first the the screen rotation is not working... Checked the settings and  lock is off.... The wifi is intermittent, some times it works sometimes it doesn't....
    the he iPhone is really slow now, like really labouring.... It hangs and crashes all the time.... I have to close apps down completely because they won't work from quick launch anymore.... Even writing this the phone is labouring.... It's like my old 48k spectrum.... I don't expect this from Apple and when you spend £400-500 on a phone you expect it to work and play propperly....  come on Apple you need to sort out this mess of a update.... Ios 7 was no bother......

    Same issue here... iphone5S 64GB.  It's intermittent.  Sometimes the rotation works fine, sometimes it doesn't, but most of the time it doesn't work.
    The first time I figured out it wasn't working was when all newly-taken photos and videos were showing up in portrait mode though I always hold in landscape mode when photographing.
    Rotation lock is disabled (tried toggling it on and off).  Tried recalibrating the compass on a whim, no effect (although my compass seems to always require calibration when it's launched now).
    This issue only started happening after upgrading to iOS8.  I did a reset/restore through iTunes rather than an OTA upgrade.
    UPDATE - power-cycling the phone seems to fix it temporarily.

  • Portege M700 - Rotation Button Not Working In Tablet Mode

    I have a Portege M700 and when I turn it into tablet mode the rotation button quits working.
    It works when it in laptop mode.
    I have the rotation utility set to go into secondary landscape and its no longer switching and the button on the front of the screen will not switch it anymore either.
    I can go into the rotation software and rotate it manually.
    Any suggestions on how to get the button functioning again?
    Oh and I am running Vista Business with SP 2.
    Any help would be appreciated.

    Yes it does rotate it just wont rotate with the button once I turn it . also when I turn it to tablet mode it goes into portrait, I need it to go into secondary landscape. I made sure that the setting are set to secondary landscape and that the button is set to rotate. but it just wont. I have reinstalled the drivers for the rotation utility. any other ideas would be very helpful. thanks

  • Thinkpad Helix - Screen auto rotation does not work (Issue 3/3)

    Hi,
    I have installed a clean Windows 8.1 on the Helix and have several issues. Putting them into several threads so they can be answered independently.
    The first thing I did after installing the system (and critical Windows Updates) was running the Lenovo System Update tool and downloading everything.
    Screen rotation does not work. In “Device Manager” I can see “C5621 gw Mobile Broadband Geolocation Sensor” and “Hid Sensor Collection”. The HID one has an exclamation mark next to it. Are there some drivers I need to download to make this work. I did of course check if screen rotation is not locked – it is not (I did turn it on/off a couple of times, without any effect). Manual rotation (using display settings) works fine.
    Thank you in advance for any help,
    Łukasz
    Solved!
    Go to Solution.

    Hi Lukasz,
    Try, in device manager, right click on HID Sensor Collection then uninstall. Reboot, and see if the driver is loaded properly, if not click on scan for hardware changes.
    Vince.
    Knowledge is of two kinds. We know a subject ourselves, or we know where we can find information on it.
    ThinkPad T510 4313-CTO Windows 8 x64 - Intel Core i7-620M - NVIDIA NVS 3100M - 8GB RAM - 240GB SSD- Intel Centrino Ultimate-N 6300 - Gobi 2000.
    ThinkPad Helix 3697-CTO Windows 8.1 x64 - Intel Core i7-3667U - Intel HD Graphics 4000 - 8GB RAM- 256GB SSD - Intel Centrino Advanced-N 6205 - Ericsson C5621gw

  • Rotate tool not working in cs6. It says "Could not complete your request because it only works with OpenGL enabled document windows." Its worked fine in the past....

    Rotate tool not working in cs6. It says "Could not complete your request because it only works with OpenGL enabled document windows." Its worked fine in the past....
    -CharlieH23

    Copy and paste only this area, you may have to scroll down.
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2494 MHz
    Built-in memory: 6019 MB
    Free memory: 3360 MB
    Memory available to Photoshop: 5227 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 2112 MB
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics 4000
    Display: 1
    Display Bounds: top=0, left=0, bottom=768, right=1366
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics 4000
    Driver Version: 10.18.10.3958
    Driver Date: 20140930000000.000000-000
    Video Card Driver: igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igdumdim32,igd10iumd32,igd10iumd32
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics 4000
    Video Card Memory: 2112 MB

  • Rotating entire JFrame to simulate portrait mode

    Hi
    I need to rotate the entire jframe into portrait mode.
    I cannot use the graphics chip, or linux graphics device manger to change the rotation CW 90 degress - due to hardware design and limitation.
    So basically, I have to render the graphics myself, quite easily done with fllowing code at the the top level panel.
    protected void paintComponent(Graphics g)
    // center of rotation is center of the panel
    Graphics2D g2d =(Graphics2D)g;
    int xRot = this.getWidth() / 2;
    int yRot = this.getHeight() / 2;
    g2d.rotate(Math.toRadians(-90), xRot, yRot);
    super.paintComponent(g);
    This does the job nicely, however the screen is still using landscape co-ordinates, and hence when clicking on the swing components they are in the pre-rotation position.
    I have looked and cannot find, is there a simple way to switch a jframe into portrait mode. If not, is there a simple way to intercept the screen coordinates and translate the mouse coordinates to the appropriate JComponent?
    thanks in advance
    Steve

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.*;
    public class TransformPoints extends JPanel {
        List<PointStore> list = new ArrayList<PointStore>();
        AffineTransform at = new AffineTransform();
        String s = "Hello World";
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Color color = g2.getColor();
            drawPoints(g2);
            g2.setPaint(color);
            FontRenderContext frc = g2.getFontRenderContext();
            Font font = g2.getFont().deriveFont(36f);
            Graphics2D copy = (Graphics2D)g.create();
            copy.setFont(font);
            LineMetrics lm = font.getLineMetrics(s, frc);
            float height = lm.getAscent() + lm.getDescent();
            float width = (float)font.getStringBounds(s, frc).getWidth();
            int w = getWidth();
            int h = getHeight();
            System.out.printf("w: %d  h: %d%n", w, h);
            float x = (w - width)/2;
            float y = (h - height)/2 + lm.getAscent();
    //        copy.rotate(-Math.PI/2, w/2, h/2);
            at.setToRotation(-Math.PI/2, w/2, h/2);
            copy.transform(at);
            copy.drawString(s, x, y);
            // draw some reference lines
            copy.setPaint(Color.pink);
            copy.draw(getBounds());
            copy.drawLine(w/2, 0, w/2, h);
            copy.drawLine(0, h/2, w, h/2);
            copy.dispose();
        private void drawPoints(Graphics2D g2) {
            for(int i = 0; i < list.size(); i++) {
                PointStore store = list.get(i);
                Point p = store.loc;
                g2.setPaint(Color.blue);
                g2.drawString(store.viewLoc, p.x+3, p.y);
                g2.setPaint(Color.red);
                g2.drawString(store.xformLoc, p.x+3, p.y+12);
                g2.fill(new Ellipse2D.Double(p.x-1.5, p.y-1.5, 4, 4));
        public static void main(String[] args) {
            TransformPoints test = new TransformPoints();
            JFrame f = new JFrame("click me");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(test);
            f.setSize(500,300);
            f.setLocation(100,100);
            f.setVisible(true);
            test.addMouseListener(test.ml);
        private MouseListener ml = new MouseAdapter() {
            public void mousePressed(MouseEvent e) {
                Point p = e.getPoint();
                String viewStr = String.format("[%d, %d]", p.x, p.y);
                Point2D.Double xp = getInvertedPoint(p);
                String xfStr = String.format("[%.1f, %.1f]", xp.x, xp.y);
                list.add(new PointStore(p, viewStr, xfStr));
                repaint();
            private Point2D.Double getInvertedPoint(Point2D p) {
                Point2D.Double xp = new Point2D.Double();
                if(at.getDeterminant() != 0) {
                    try {
                        at.inverseTransform(p, xp);
                    } catch(NoninvertibleTransformException  e) {
                        System.out.println("invert error: " + e.getMessage());
                return xp;
    class PointStore {
        Point loc;
        String viewLoc;
        String xformLoc;
        public PointStore(Point p, String view, String xform) {
            loc = p;
            viewLoc = view;
            xformLoc = xform;
    }

  • HT4085 Did all of these options as instructed.  Screen still doesn't rotate and remains stuck in portrait view

    Did all of these options as instructed.  Screen still doesn't rotate and remains stuck in portrait view. Help?

    Not sure what you've already tried. Have you locked it using the Side Switch then accidentally changed the side switch to permit Muting/Unmuting?
    Settings > General > Use Side Switch to: Lock Rotation (make sure check box is here).
    Then try sliding the side switch. Also try turning off the device by holding the power and home buttons, then sliding the red slider to the right (then repower).

  • My iPad2 side switch is acting up, it will only allow me to have either sound or rotate. If I unmute the rotate won't work, if I mute the rotate works. How can I get the iPad to unmute and rotate? I have restored, downloaded updates and rebooted.

    My iPad2 side switch is acting up, it will only allow me to have either sound or rotate. If I unmute the rotate won't work, if I mute the rotate works. How can I get the iPad to unmute and rotate? I have restored, downloaded updates and rebooted.

    You should be able to control the function that the side switch isn't controlling via the left-hand end of the taskbar : http://support.apple.com/kb/HT4085 - is the icon that appears there (notification mute or rotation lock) indicating that that function is 'off' ?

  • Rotate won't work in Bridge. How can I fix it?

    Rotate won't work in Bridge. How can I fix it?

    <moved from Adobe Creative Cloud to Bridge General Discussion>

  • Auto rotate just stopped working ,,,

    10 days in to my Z1 compact ownership and the rotation has stopped working ....
    I have done the  on off button volume  reset and doesn't help ...
    Any one have a clue what's going on ????

    I am sorry to hear this,try to boot in safe mode,see if it works:
    http://talk.sonymobile.com/t5/FAQ/How-to-boot-your-phone-into-safe-mode/m-p/348008#U348008
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • Blackberry Torch 9810 auto-rotat​ing not working !

    Hello guys my friend just bought a Blackberry Torch 9810 few weeks ago , only two weeks I think.
    And yesterday she found out that the auto-rotating doesn't work - that is the first time she tried to rotate the phone because she want to stream a video. 
    Hard or Soft reset has been done , reboot has been done , sliders not open , no rotation lock apps has been installed.
    Is this the sensor problem ? I mean , the phone is like brand new and just bought two weeks and the sensor got problem so fast ?
    If anyone knows that exact and working solution please help ~ 
    Thank you. 

    Hi and Welcome to the Community!
    I recommend that you attempt to boot into Safe Mode:
    KB17877 How to start a BlackBerry smartphone in Safe Mode
    It may take you multiple attempts to get the ESC key sequence (press/release/hold) correct, so be patient. When successfully into Safe Mode, see what happens.
    If the behavior ceases, then think carefully...what happened just before this behavior started? A new app? An update? A Theme? Something else? Think carefully as the smallest change could be causal...and attempt to undo whatever that was.
    But if the behavior continues in Safe Mode, then you may need to consider more drastic actions -- WIPE, OS Reload, BBSAK Wipe/Reload, and the "Bare Bones" OS Reload Process. To prepare, you should be sure that you have a full backup to your PC...please review the Backup link in my auto-sig on this post for instructions.
    Nainai wrote:
    Is this the sensor problem ? I mean , the phone is like brand new and just bought two weeks and the sensor got problem so fast ?
    It could be...any device designed, built, and operated by humans is subject to a defect rate greater than zero. But, at an internet distance, it is of course impossible to provide an actual diagnosis, especially if the problem indeed is hardware. Only in hand evaluation by a qualified technician can truly diagnose a hardware problem.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • IPhone sensor ( auto rotate ) Doesn't work !!

    Hello
    I bought an Iphone 4S-16G last week and I understood that on of my Iphone sensor ( auto rotate ) doesn't work it means when I landscape my iphone my messages or photos or in a games doesn't rotate , Now what should I do ?
    I already restored and turned off and turned on and checked rotation option in portrate oriention by double clicking but it didn't work .
    Please Help me .

    oops my bad, you did say exactly that you had tried that. Sorry. Also you already Restored too. Only thing I could add, is to Restore as New iPhone, at end of Restore when prompted Set Up as New iPhone. And then see if better. Anyway, iPhone 4S has full Warranty, make Genius Reservation and take iPhone to Apple for resolution.

  • Personas Rotator has stopped working, again

    Since downloading the latest Firefox, V? (not sure) Personas rotator has stopped working and the 'enable' button has disappeared. I had just got it working perfectly that only lasted a few weeks, then it just stopped.
    SlimSylv
    Oh, BTW, I'm running Windows XP Pro, V.5.1.2600 SP_3.0

    By stopped working do you mean frozen
    Sometimes people have found that performance increased by changing the Search behaviour
    Click on the arrow in the Search box and untick Search Entire Library

  • IPad's auto-rotation frequently stops working.

    Hi there, my iPad's auto-rotation frequently stops working and the only way I can get the screen to rotate gain, is to reboot. It used to be once in while but now happens every day which is very frustrating. What can I do to stop this? Thanks, Siobhan

    I know you already stated that you have to reboot, but make sure you're doing it this way. I've found some that do it differently and the results can be different.
    Make Sure iOS is updated to the latest version
    Reboot the device by pressing and holding down the home and sleep/wake buttons (power) at the same time until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings

  • Automatic rotation is not working anymore

    My automatic rotation doesn't work anymore. Tried the side-button. Could it be the sensor is broken? Anybody an idea how to solve this other than having to send in Ipad for repair?

    I apologize if you have already checked this, but is your side-button set to "Rotation Lock" or "Mute"? The control for whichever one the button is not set to will show up in the multi-tasking bar (double-click the Home button and scroll to the far left, I believe). Assuming that's been checked, maybe a hard reset (home button + power button held until the Apple logo pops up, then released) or you can also try Settings>General>Reset>Reset All Settings.

Maybe you are looking for