Can I create a shortcut for Rotate Spread?

As the title suggests
Is there a sneaky way to get a keyboard shortcut for the Rotate Spread option?
Thanks,
Phil

Steve - I never thought to look there, I was only looking under the View section
Thanks so much

Similar Messages

  • Can I create a shortcut for Notes in my Dock?

    I love the Apple Notes App on my iPhone because it has the ability to sync seamlessly with my MacBook Pro.
    I prefer to use the Apple Notes App cause they sync seamlessly for me between devices (I don't want to use another program like Sticky Notes or such.)
    I was wondering if it is possible to create a shortcut on my Dock (or desktop or keyboard shortcut to launch?) to these notes directly so I don't have to keep opening up the Apple Mail Client (Which I do not use)? 
    Thanks!

    Hi!  I don't seem to have a Notes application in my Applications folder.  Is there a way to search my computer for it?
    I also looked in the Package Contents of my Mail Application but I couldn't figure out if one of those would work to drag into my Dock (They all seem to be image files)

  • Create keyboard shortcuts for apple mail lion

    Can one create keyboard shortcuts for Apple Mail (in Lion)?  How does one do that? 

    System Preferences->Keyboard; Keyboard Shortcuts is the place to go to add shortcuts to any application.
    Select Application Shortcuts and add yours there.
    regards

  • How can I create a shortcut to launch an external application?

    Hello, I'm developing app in Swing where I want to create a shortcut for any external application, I'm able to get the .exe path, and an icon path (in .png format), is there a way to create a "shortcut" or button and assign the icon and the .exe path to run it? This is what I have to get the .exe path:
    Process p = Runtime.getRuntime().exec("\"" + jTextField2.getText() + "\"");
    Where jTextField takes the value from a JFileChooser value, doing the same for the icon, then I could do this for a button to assign the icon:
    ImageIcon img1 = new ImageIcon("C:\\image.png");
    jButton7.setSize(64, 64);
    jButton7.setIcon(img1);
    But I havent' found any way to make the button (or any kind of shortcut) to execute the program, I could go and create a method to do it on click or ActionPerformed, but the idea is to do all this when I finish the create the shortcut, I hope you can understand me, I'm kinda confused, so far, I can launch the app but I want to create a new button/shortcut everytime I need to add an external app, thanks in advanced!!!

    user3538005 wrote:
    Hello, I'm developing app in Swing where I want to create a shortcut for any external application,.. For what end purpose? If it is to show documents in the default consumer for that document type (e.g. a .doc might be MS Word), then look to the <tt>java.awt.Desktop</tt> class.
    ..I'm able to get the .exe path, and an icon path (in .png format), is there a way to create a "shortcut" or button and assign the icon and the .exe path to run it? This is what I have to get the .exe path:You do realize that is disgustingly Windows specific, right? What about users of Mac and *nix?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to create a shortcut for all users in Win 7 and Win 8?

    Hi,
    I'll trying to make a script that will create a shortcut in every user profile account in a computer. I stumble upon the script below from
    http://gallery.technet.microsoft.com/scriptcenter/Create-shortcut-in-your-11cfd3de/view/Discussions#content.
    Option Explicit
    On Error Resume Next
    Dim objShell
    Dim objDesktop
    Dim  objLink
    Dim strAppPath
    Dim strWorkDir
    Dim strIconPath
    strWorkDir ="C:\Program Files\Microsoft Office\Office15"
    strAppPath = "C:\Program Files\Microsoft Office\Office15\ORGCHART.EXE"  'you have to use your URL to Interanet site or path to specific program
    'strIconPath = "\\server\Xyz.ico"     'specify the path to the icon please change to your valid path
    Set objShell = CreateObject("WScript.Shell")
    'objDesktop = objShell.SpecialFolders("Desktop")
    Set objLink = objShell.CreateShortcut("C:\Users\%userprofile%\Desktop\Org_chart_test.lnk") 'change here To your shortcut name
    objLink.Description = "this is a test" 'replaec with your description
    'objLink.IconLocation = strIconPath
    objLink.TargetPath = strAppPath
    objLink.WindowStyle = 3
    objLink.WorkingDirectory = strWorkDir
    objLink.Save
    I did some modifications to cater to my need. Now the question is, how can I make the script create a shortcut for every user profile from the script above?
    Any inputs would be greatly appreciated.
    Thanks!

    You could create the shortcut at one machine, then copy it to the target as part of the logon script. Note also that this line contains an error:
    "C:\Users\%userprofile%\Desktop\Org_chart_test.lnk"
    It should read:
    "%userprofile%\Desktop\Org_chart_test.lnk"

  • How to create a shortcut for desktop as with IE?

    I've switched my browser to "Firefox" from 'Internet Explorer and would like to know how to create a shortcut for my desktop.

    You can drag the favicon on the left end of the location bar onto the desktop to create a shortcut.
    You can also use an extension.
    * SaveLink: https://addons.mozilla.org/en-US/firefox/addon/savelink/
    * Deskcut: https://addons.mozilla.org/en-US/firefox/addon/deskcut/

  • Error: "Unable to create a shortcut for MyApp" on Windows 2008

    When I try to install my JAVA app on windows 2008 via Java Web Start, it pop up a error message "Unable to create a shortcut for MyApp". The app can startup and work correctly after clicking "ok" on error message. BUT, there is no shortcut created on Desktop or Start Menu.
    This problem occured on Windows 2008 ONLY. I have test the installation process on different OS with JRE 6u14 and 6u20:
    Windows XP PASS
    Windows 7 PASS
    Windows 2003 PASS
    Windows 2008 FAIL, can't create shortcut on Desktop and Start Menu
    And I have test the demos on http://pscode.org/jws/api.html, the problem is same.
    Does any one has any idea on this?

    AndrewThompson64 wrote:
    - Menu items do not work on Ubuntu Linux at all.
    - As a result of that, I am thinking to declare neither desktop shortcuts nor menu items in the JNLP file, but instead using the IntegrationService(1) to perform more specific tests, and offer the end user whatever is available.
    - This is probably a better strategy overall, because if you automatically create desk-top shortcuts (or menu items) for the user, you will discover there is always someone who considers them an unnecessary bother.
    1) BTW - I have been meaning to do a demo. of the IntegrationService and add it to the other examples at PSCode, but have not yet found the time. ;-)Thanks for reply.
    But I don't understand very clear. I'm focus on the windows platform not Linux. Do you suggest to create shortcuts and menu items manually by coding in Applet?
    I prefer to use the JNLP file cause it works good on the other OS than to change my code.
    What I want to know is:
    1. Is it a bug for JRE on Windows 2008?
    2. If NO, how can I make it work on Windows 2008? Do I need change some System Setting or Browser Setting?
    3. If YES, maybe I can try to change my code, but why there is no bug filed in the Bug Database?
    BTW, I use the IE browser.

  • I would like to know how do you create a shortcut for a webpage for your desktop?

    I would like to how if possible, how do you put a "shortcut" on your desktop when using Firefox?
    Thank you for your time.

    ''how do you create a shortcut for a webpage for your desktop?:''
    Drag the favicon at the left side of the location bar to the desktop
    Reference: (you can also do from bookmarks)
    * https://support.mozilla.com/kb/Creating+a+desktop+shortcut+to+a+web+page

  • Can we create a shortcut key like ctr1+1 to cal a new form from the existin

    can we create a shortcut key like ctr1+1 to cal a new form from the existing form,i created using alt key by alloting a letter in access key of a button so it worked with alt button(alt+1) ,but i want a shortcut key which works with control button, i mean the shortcut key must be like ctrl+1 or ctrl+anyletter. On pressing ctrl+1 BUTTON or CTRL+ANY LETTER A NEW FORM must be called from the existing form.so please guide me how this can be achieved..
    i AM USING FORMS 5i

    EdStevens Wrote:
    And what is wrong with using a remote connection?
    Ideally I would like to implement it in an API tool that would create Oracle Databases for an API with specific prescriptions once give DBName and Password .
    Thus I think for an API tool to create remote shell connection maybe is an anti-pattern from Software Architecture
    e.g. I already red from Microsoft Doc that PSEXEC is sometime blocked from antiviruses
    But it was just a question, I may not do it, as informed, that companies having Oracle DB, usually have an Oracle DBA, and an Oracle DBA some times may not let anyone touch the Databases on the Server. Also Oracle DB Server might be on different Operating Systems while the API tool will always be Windows
    The method you use will necessarily be somewhat dependent on the OS of the server.  If Windows, what's wrong with using Windows Remote Desktop?  If *nix, as explained in your several other threads swirling around this question, use a putty session to connect ... then, if needed for a GUI utility like dbca, runInstaller, etc, just set up an x-server on your local machine and enable x-11 port forwarding in your putty session.
    You really are trying to make all of this much more difficult than it need be.
    Hmm... so in Windows a remote seems the only solution, except the one RichardHarisson proposed if you already have a Database set up. For Unix I can promote the port forwarding method you recomended. Thank you.
    Sorry I just finished my University and make my 1st internship on the Oracle DB Layer of Applications in Western Europe.
    P.S.
    There is no such a need but I would find it a personal good exercise in understanind these connections-administration issues under different OS to try create an API tool that creates DB on other PC of different OS once you chosen the OS of the Server.
    + I promess not to follow it with a flood of threads agains : P I already became better in finding what I need through docs, lol

  • I have multiple devices (imacs, lap tops and ipads) all connected to a NAS server.  Can I create a user for myself and one for my wife, and each have our own apple ID, and Itunes accounts, but all share the same media on NAS drives?

    I have multiple devices (iMacs, Lap tops, Ipads) all connected to a Nas Drive.  Can I create a user for myself and one for my wife and we each have our own apple ID's, Itunes etc, but share the same data on the hard drives?  So when she logs in, and sync's her ipads, they will sync with her stuff and when I do the same under my user account, on the same device, my ipads will sync with my stuff?

    You can share the same Apple ID for purchasng form the iTunes and app stores without any problems, but you should all used separate iCloud accounts with separate Apple IDs.  (You are not required to use the same ID for iCloud and other services as you do for the iTunes store.)  This will prevent you from ending up with merged data.  You should also use separate Apple IDs for iMessage and FaceTime or you will end up getting each other's text messages and FaceTime calls.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/, as well as this video: http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l.

  • How can I create a URL for a PWA for MS Project Server 2010 project file that includes the view?

    Hi, this question has been answered for 2013. The answer here suggests that it can be done in  2010.
    See:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/3affdc4f-36bf-4381-8b75-27c73465efd4/action?threadDisplayName=how-can-i-create-a-url-for-a-pwa-for-ms-project-server-2013-project-file-that-includes-the-view
    Who knows how?
    Regards
    Sander

    Hi Sander,
    As far as I tested it, it is not possible either with PS2010. The URL only contains the PDP name and the projUID.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How can i create a Trash for external USB Drives ?

    Hello,
    how can i create a Trash for external USB Drives or my TimeCapsule ?
    Thanks.

    You do not need to create trash cans for individual drives.  The trash can on the desktop holds deleted files from all mounted drives.
    TimeCapsule manages its own space.  If it fills up it will delete older backps to make space for newer ones.

  • How can I create a form for users wherein the text field will expand to accommodate additional text?

    How can I create a form for users wherein the text field will expand to accommodate additional text?

    You need to use LiveCycle (PC Only) to create a dynamic form like that.
    The best you can do with Acrobat to view all of the text in a field is to set the field to multiline, and set the size to "Auto" (If you don't set the size to 'Auto', you can enter as much text as you wish, but the user will need to use the scrollbar to view all of the text.)

  • How can I make a shortcut for bluetooth in my iPhone 4 ?

    Hello everyone
    How can I make a shortcut for bluetooth in my iPhone 4 ?

    sorry not that I know of, out of the box that is, would be heady to quickly change between headset and normal mode though
    let apple know you want this feature
    http://www.apple.com/feedback/iphone.html
    there are 3th party solutions though
    http://www.macrumors.com/2012/04/17/new-app-turns-bluetooth-on-and-off-with-one- touch/

  • Can we create two POs for the same 3rd party Sales Order?

    Hi MM experts,
    Issue: Can we create two POs for the same 3rd party Sales Order
    In Third party purchase process, first sales order created with a spl. item category  and it creates the PR automatically with the Sales order material and Qty and this PR converted PO.
    They got a pur.req. for sale order on same item for same delevery date. They did not get any warning msg. saying that a PO was prviously placed against this sale order.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    If anyone face the same issue, please let me know if you have any answer to this questions.
    Thanks in advance.
    Suresh.

    Suresh,
    It is hard for me to give you a definitive answer since you have created a customized solution.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    Normally, the system will not do this.  A third party PR or PO will be 'account assigned' to the Sales order.  SAP standard 3rd party will not create additional purchase reqs unless there has been manual intervention.  Try searching for changes in the Sales order and changes in the original purchase order.  They may give you a clue.
    I believe the normal Item category for third party SO is TAS (I am working from memory here, I am not in front of a system).  I don't know what ZTAG does.  I confess I am not an SD expert.  You might also want to post your question in an SD forum.
    You mention two custom applications, ZMMPLAN and ZSTPMP.  These somehow have functionality that is used to help you convert your PRs to POs.  If I were in your position, I believe I would also look at these applications for clues to how they might be contributing to your problem.  And please don't send me details about these apps.  I will not comment on custom code in this forum.
    Sorry I can't be of more help.
    Rgds,
    DB49

Maybe you are looking for

  • Diff: Version on workflow builder and Maintain Active Plan version on SWU3

    Group, Can any one help me to understand the Version on workflow builder and Maintain Active Plan version on SWU3 Thanks in advance ! Richard A

  • SAP BOBJ connection with SQL server 2008

    HI Gurus I want to install bobj server on a server that already have SQL server 2008 installed on it, I have few confusions as this is my first time installation, I hope you can help me. 1. Since SQL server is installed on the same machine where I ha

  • ERROR(No text fould) for a request loaded into InfoProvider.

    Dear Experts, I'm facing a typical problem. The regular data loads used to be fine. Since past 2 days, when the loads happen through the regular PCs, in some DSOs I find in the Datasource Name column DataSource Name and (No text Found),. The Sourcesy

  • Modified menu commands (MNU)

    Hi,   how does one modify a macro to include a mnu command, for example Sub compare()     If ([p80].Value > [p81].Value)  Then         response = MsgBox("Please modify values")     Else     End If End Sub   i would like to replace *** in the macro ab

  • How can i connect my touch to my home wifi?

    I currently live in France and can connect my touch to my son's wifi network in England and even in MacDonalds in Poitiers (France) but i am unable to connect to my wifi network at home using the Orange Livebox. Can anyone help?