How to shift object slightly in keynote?

How to shift object slightly in keynote? It always jumps to be alighned with other objects.

First, the reason why that's happening is because you have Alignment Guides turned on in the Preferences under Rulers. If you turn that off, then it'll stop snapping to other objects.
If you do generally want alignment, BUT, every now and then just need it to move objects so that they won't SNAP to it, you can hold down the Command key either before you start dragging or after you've already started dragging. This will cause the object you're dragging to stop snapping to alignment guides for as long as you're holding down Command.
Also, if you just need to move an object 1 pixel, you can use the arrow keys. Holding down Shift while pressing the arrow keys moves you 10 pixels for every arrow press instead of 1.

Similar Messages

  • How to resize objects simultaneously

    Hi,
    I originally posted a question in the past regarding how to transform objects simultaneously in Illustrator, and the answer had to do with using "transform each" in the object menu. I am trying to do the same in Indesign, but since there is no "transform each" option (or maybe I just missed it, or there is something similar), I am looking for another way..
    I have arrows heads in a diagram that need to be scaled down to about 50% their current size. The problem with scaling is that when all objects are selected, they are treated as though they are one large object, and then scaled so that they all meet in the center (ie. at 50% their size, they all shift together as a photo would scale). Is there any way to do this so that the arrow heads stay in place after each one is scaled up or down?
    I'd appreciate any help. Thanks.

    Yep. Choose one, scale then select the rest and
    Object > Transform Again > Transform Again Individually

  • How do I "move" (not copy) keynotes from my MacBook Pro to my iMac via sharing?

    How do I "move" (not copy) keynotes from my MacBook Pro to my iMac via sharing?

    Whenever you transfer something from one drive or volume to another, it is copied and the original remains where it was no matter the method you use. It is so by design: just in case you were to delete it on the one drive, you still have it on the other. However, if you no longer want the original, simply delete it and empty the trash.

  • How to delete a file in Keynote Remote for iPhone4?

    Any one know how to delete a file in Keynote remote app for iPhone4? I uploaded a Keynote file from iDisk to my iphone and I can't delete the file. The file does not show up when I connect my phone to iTunes.
    I also cannot connect my Iphone to Keynote anymore because of this file.

    The file is actually in the Keynote app and not the Keynote remote app for iPhone.

  • How to change default fonts in Keynote?

    How to change default fonts in Keynote?

    You can't set a default font.
    Instead use a custom slide master with the font you want to use.

  • How to show object creation in UML

    How to show object creation in UML

    In a sequence diagram, it's a line (with arrow) pointing to the new object and the <creates> or <new> tag as mentioned above.
    | obj 1  |
         |
         |    <creates>     ----------
         | -------------->  | obj 2  |
         |                  ----------or----------
    | obj 1  |
         |
         |      <new>       ----------
         | -------------->  | obj 2  |
         |                  ----------

  • How do I view what slide I'm on out of how many I have total in keynote? I know on powerpoint it's at the bottom right of the window but I can't find it on keynote nor can I find the option to make it appear. Any help would be greatly appreciated.

    How do I view what slide I'm on out of how many I have total in keynote? I know on powerpoint it's at the bottom right of the window but I can't find it on keynote, nor can I find the option to make it appear. Any help would be greatly appreciated.

    Your steps so far are OK but you may want to try:
    1 Trash your user library Caches folder (House Icon with short name in Finder window (hard drive window)GOTO:House icon > Library folder > caches folder
    2 Trash the com.apple.Safari.plist file in User library > preferences folder > Safari.plist as well as removing the library Safari folder its self.
    3 you can selectivly re-install Safari 2.0 from your OS Tiger Install disk 1, (see Knowledge base article 301229 for how to just select the Safari Application) without doing a complete system Archive and Install.
    4. Create a new Test user account on the system and test how Safari responds in the Test user, see if its a user related issue and not system issue.
    5. Still no Safari response? have to do an Archive and install (not preserving user and network settings)article 107120
    PS. Issue may be related to actual internet connection connectivity, power cycle cable modem and router or airport if using one as well as the computer(keep unplugged for 3-5 min) and plug the cable modem in and then the router/airport then power on the computer. Do the Airport Admin utiliy (applications, utilities on HD_1)update.
    - do a hard reset of airport knowledge base article 108044(Express base) and 107451 (Extreme base)
    - Check with internet provider for connection issues "cannot find server" ect.

  • How to "get object" -- ResourceBundle

    According to the ResourceBundle API:
    ResourceBundle myResources =  ResourceBundle.getBundle("MyResources");Besides getString, ResourceBundle also provides ... a generic getObject method for any other type of object. When using getObject, you'll have to cast the result to the appropriate type. For example:
    int[] myIntegers = (int[]) myResources.getObject("intList");
    {code}
    Elsewhere,
    +getBundle+ attempts to locate a property resource file.
    Does it make sense/Is it possible to +getObject+ from a property resource file? If so, how is the object "expressed" in the property resource file?
    For example, if the resource file looks like
    1=Person
    then the key 1 is associated with the String "Person"
    If
    [code]class Person {
    String firstName;
    String lastName;
    ... }[/code]
    is it possible to associate "1" with a Person object, where firstName is "Foo" and lastName is "Bar"?
    If so, how would it look in the property resource file?
    Thanks in advance,
    C                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    In the resource file, you can save the data like this:
    numberofperson=2
    firstname1=Foo
    firstname2=dummyfirst
    lastname1=Bar
    lastname2=dummylast
    For programming, you can code like this:
    public class Person{
    private String firstname;
    private String lastname;
    public Person(String firstname, String lastname){
    this.firstname = firstname;
    this.lastname = lastname;
    int personNum = Integer.parseInt(myResources.getString("numberofperson"));
    Person personArr[] = new Person[personNum];
    for (int i=1; i<personNum; i++){
    personArr[i] = new Person(myResources.getString("firstname"+i),myResources.getString("lastname"+i));
    }

  • How to create objects in ABAP Webdynpro?

    Hi,
    I want to create the object for the class: <b>CL_GUI_FRONTEND_SERVICES.</b>
    then i want to call file_save_dialog method.
    how shoud i write the code, plz?

    I have written this code:
    v_guiobj TYPE REF TO cl_gui_frontend_services.
    <u> ?????????????</u>
    v_guiobj->file_save_dialog( ...).
    How to create object in the place of ?????????????.
    Bcoz, when i run this i am getting:
    <b>Access via Null object reference not possible.</b>

  • How to delete object in Integration Repository SAP PI 7.0

    how to delete object in Integration Repository SAP PI 7.0

    Hi Rashmi,
    Right click on the object, you would find the option to delete--> select it. Goto Changelist Tab and activate the changes.
    Ref: /people/siva.maranani/blog/2005/05/22/how-to-delete-software-component-from-integration-builder
    Re: How to delete/remove the software component from integration repository
    Thanks,

  • How do you create an interactive Keynote PDF on a MacBook Pro that can be downloaded and manipulated on an iPad.

    How do you create an interactive Keynote PDF on a MacBook Pro that can be downloaded and manipulated on an iPad?

    File > Export > PDF

  • [svn:osmf:] 15505: Fix image smoothing, which had been broken as a result of some changes to how the display object of an ImageElement is exposed .

    Revision: 15505
    Revision: 15505
    Author:   [email protected]
    Date:     2010-04-16 09:29:26 -0700 (Fri, 16 Apr 2010)
    Log Message:
    Fix image smoothing, which had been broken as a result of some changes to how the display object of an ImageElement is exposed.  Add integration test.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/elements/TestImageElementIntegration.as

    That's a comment in the file. It has no effect at all.

  • How to transport objects from one server to another server?

    How to transport objects from one server to another server.ie..from development to testing sewrver....

    Hi Manoj,
    Check these links
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/frameset.htm
    Transporting Objects IR ID using CMS
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f85ff411-0d01-0010-0096-ba14e5db6306
    http://help.sap.com/saphelp_nw2004s/helpdata/en/e1/69a740aa053a13e10000000a155106/frameset.htm
    You can choose either File transfer methor or CMS. File transfer method is the simplest.
    Sachin

  • "a"+"b"+"c", how many String objects created?

    Hello everyone,
    String s = "a" + "b" +"c";
    How many String objects are created?
    I guess 5, is it right?
    regards

    > How many String objects are created?
    >
    I guess 5, is it right?
    Nope. Just one.

  • How do I make a new keynote master/theme/background?

    I love keynote, but the included masters/themes/backgrounds included are (necessarily) quite limited. I want to use other backgrounds, but I want to make sure that I am not unnecessarily overloading the slideshow size for slide backgrounds. Keynote v. 6.5...

    How do I make a new keynote master/theme/background?
    master:
    view > edit master slide
    click on the blank master then duplicate it using right click or (Command D)
    rename the new master
    theme:
    create a new design on a new master slide then:
    file > save theme
    add to theme chooser
    background:
    click on the slide background then;    Inspector > Format > Background:  click the dropdown menu and select from colour , gradient or image
    The inspector is the side panel on the right

Maybe you are looking for

  • Can I switch off my computer while my nano is saying "Do not disconnect"?

    Please help me. This morning I couldn't switch my nano off - only on the docking speakers so I looked at the online help, tried resetting and then decided to try the update and or restore. When I plugged the iPod in, iTunes asked me if I wanted to up

  • No option when opening a pdf from an email attachment

    I recently had trouble opening a pdf file that was attached to an email, and while mucking around with it, I tried opening it up in Word (which didn't help that particular problem anyway).  Unfortunately, now, all my emailed pdf files open up automat

  • Trying to run Vednor changes reports S_ALR_87012089 and S_ALR_87012090

    Looking at some other posts I would like to use the following reports. S_ALR_87012089 - Display Changes to Vendors S_ALR_87012090 - Display/Confirm Critical Vendor Changes However, when I try to run these from system>services>reporting it says the Pr

  • Custom Access File Permissions

    I"m using Snow Leopard Server 10.6.8, and we've been having some permission problems.  If you go into a folder that has read-write access and open a file and make a change in the file, the system requires you to save it as a new file rather than just

  • Pixel Bender in CS4

    A friend of mine told me he thinks Pixel Bender will work in CS4. Does anyone know if it will? Also, I don't have Creative Premium. Would this make a difference? Thanks in advance for any info. BAZ