Placing desktop shortcuts in Mac

hi there,
I've created an installer(.pkg file) using "Package Maker" for shipping some files and for creating alias(desktop shortcuts) for the shipped folder in customer's machine. But I'm not really sure, creating alias in customer's machine is a good practice. My question here is,
1. Whether it is a good practice to create aliases in the customer's machine ?
2. Is there any, Apple's Human Interface Guidelines regarding this ?
thanks is advance for any helps,
- Balaji
Message was edited by: Balaji Renganathan

There are some common practices in regards to installing applications on OSX:
Mac App Store applications (.app files) automatically get installed in the Applications folder (/Application).
Apps distributed as .dmg (disc image) files typically contain the application, readme files and an alisa (shortcut) to "/Applications" when the disc image is mounted. The user can then easily put the files in "/Applications" by dragging them to the alias or choose to put the files in some other location.
Apps distributed as plain .zip files typically expand to a .app file or a folder containing the .app file and readme files. The user is then expected to place the  .app file / folder in any location they like.
Most .pkg installers give a choice on which HD to install, but will then proceed to put the .app file in "/Applications". Note that a .pkg installer should only be used when the application can not be distributed as a simple .app file.
Shortcuts (aliases) are not created as part of a OSX app install.
Mac users have several ways to find and access their installed apps:
Via the Applications folder in the dock.
Via any other folder placed in the dock.
By clicking on an application previously added to the dock by the user.
Via search using Spotlight.
Via Launchpad.
By using the Finder to directly find the application.

Similar Messages

  • Syntax of the JNLP file (web start) for JFX to allow desktop shortcut/icon?

    I'm having a hard time getting this to work. I'm using NetBeans v7.1.2. First of all - the resulting .jnlp file comes with the applet, as well as the application specification. The classloader is different in both of the cases from what I've seen.
    <applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="jwsapp" >
    <param name="requiredFXVersion" value="2.0+"/>
    </applet>
    <jfx:javafx-desc width="800" height="600" main-class="jwsapp.Main" name="jwsapp" />
    What I did was edit out the applet part - now there is no entry in the "Type" of application in the javaws cache, it's simply blank. And it's still launched as an applet (judging by the console trace). Now we have "<jfx:javafx-desc", instead of application-desc? What does that affect? Is it safe to just fallback to 'application-desc' (then the type is properly detected)? I haven't been able to find any info on this whatsoever.
    Shortcuts.. I have Java 2.1.1 installed and this:
              <shortcut online="false">
                   <desktop/>
              </shortcut>
    does absolutely nothing for me. The shortcut never appears (even though this addition to .jnlp was designated by NetBeans). Moreover, how would I go about attaching icons to this shortcut?
    Does anyone have a working .jnlp example, that is actually able to allocate a shortcut with a predefined icon on the desktop? Thank you.
    Edited by: 919083 on Aug 12, 2012 5:06 AM
    Edited by: 919083 on Aug 12, 2012 5:07 AM

    It works fine for me.
    I'm using latest FX samples and latest 7u6 on Mac OS X.
    Tested with slightly modified version of BrickBreaker.jnlp that includes
    <shortcut online="false">
    <desktop/>
    </shortcut>
    and the shortcut is always created to me.
    Could you please try the latest 7u6 build?
    If it's still reproducible, please file a new bug at http://javafx-jira.kenai.com/
    and also could you please attach an example to reproduce the problem?

  • New Problem creating a desktop shortcut to photoshop 2014 causes the program to break?

    After getting fed up of waiting for adobe CC to finally finish buffering I thought I'd create a desktop shortcut to Photoshop (To save time). After doing this I doubled clicked on the shortcut and after 15 minutes of waiting I realized something was wrong double clicking again and watching the task manager I noticed Photoshop appear for half a second under background processes and then disappear entirely. So I then tried to launch Photoshop 2014 from Adobe CC under Installed Apps and this does the exact same thing. Both links to Photoshop now don't work and just sit there.
    I would appreciate some help and I am also getting increasingly tired of ongoing problems with the software..........(I still have 30 days well 28 to cancel this subscription and simply buy a disk version of CS6)
    Please help!
    Or if you cant help how do i get in contact with someone at adobe?

    You can't just create a short cut during the installation process. If the shortcut is not there, then it was not done installing. That's why it does not work correctly, it is still lacking an important piece of  the puzzle, more commonly known as dll's. (dll is an external app that the main app polls from when needed. This on windows, I do not know what the external apps are called on a mac)
    I recommend that you uninstall all of adobe's apps including the manager and if needed use the adobe cleaner to remove portions if the uninstaller fails to do so. Then restart your computer and install again. How long it take to install will depend on the size of the file, the speed of your internet connection, if using wifi, the speed of that connection, the speed of Adobe's server, how much of a load is on Adobe's server.
    If you are using wifi, you can remove that bottle neck by using a direct connection with eithernet or other means ex. usb.

  • JNLP can't create shortcut on Mac os x

    Hallo
    Im trying to deploy my application via java web start. The app itself works on windows, ubuntu and mac os x. The shortcuts are created on windows and ubuntu but not on mac os x. I did set the settings to always allow shortcut creation.
    Here is my JNLP file:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp version="0.0.1" codebase="http://www.testprogram.com/test/" href="testprogram.jnlp">
    <information>
    <title>Test Program</title>
    <vendor>Test</vendor>
    <homepage href="http://www.testprogram.com"/>
    <description>Test Program</description>
         <icon href="icon.png"/>
         <shortcut online="true">
              <desktop/>
         </shortcut>
    </information>
    <update check="always" policy="always"/>
    <security>
    <all-permissions/>
    </security>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=testprogram.Main_run</argument>
    </application-desc>
    <resources>
    <j2se version="1.6+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="testprogram.jar" main="true"/>
    <jar href="lib/AbsoluteLayout.jar"/>
    <jar href="lib/javacsv.jar"/>
    <jar href="lib/jcalendar-1.3.3.jar"/>
    <jar href="lib/swing-layout-1.0.3.jar"/>
    </resources>
    </jnlp>
    Can someone please assist me on why mac os arent creating the shortcuts?
    Regards
    Matthew Kelly

    JM.Kelly wrote:
    Solution found:
    ..After this everything worked 100%Note that there were errors in the original JNLP shown, that are probably still there. If a JNLP file is invalid it is anybody's guess as to how it will be parsed by a JWS client. To validate JNLP files as well as perform many other checks on the resources, point JaNeLA *(<- link)* at the main JNLP file.
    I am not saying that validation of the JNLP file will make shortcuts work on Mac. Do the Macs. run Java 1.6.0_18+? If so, shortcuts can be installed using methods that return success/failure, through the IntegrationService *(<- link).*

  • How to set mac KEYBOARD shortcuts (for mac OS and windows OS)

    i am having a bit of an issue.
    i run windows 7 and mac os on the same computer on different hard drives in this computer. i also have a "mac" keyboard. i am not sure how this may be different from a "windows keyboard" but the point is i need to use this keyboard because it matches the one on my laptop which is a mac.
    when i switch to windows on this machine i always end up deleting information because the CMD + X and CMD + V cut and paste shortcuts on Mac OS are not the same in windows. windows requires (currently) CTRL + X and CTRL + V. so when i got to cut and paste in windows CTRL + X (this is my habitual way of working) and then i run a CTRL + V i end up writing /over/ the text i selected with a "x" and i end up pasting /over/ the text i selected to paste over with a "v". this is because instead of running a cut and paste, this set of shortcuts in windows simply enters "x" and "y" respectively since the shortcut is not active.
    does anyone know where i set these in windows OS and in mac OS?
    also, does anyone know if it is possible to set how many UNDOS i can do in either of these OS's or to know how many i can in fact undo?
    THANKS
    long story background:
    1. while i may move to a windows keyboard on the computer i am using (because the mac keyboards these days end up losing keys and they end up very wobbly) i cannot do this for the laptop machine so this may not make a lot of sense if i end up also running windows on the laptop which is my intention at some point.
    2. CTRL + X is a very long stretch on the mac keyboard so rather than switching mac shortcuts to accommodate windows shortcuts i am thinking to switch windows shortcuts to mac ATM.
    3. this is no small issue! i just went to copy and paste this text so i could save it for myself in order to explain to someone else and i ended up overwriting with a "c". if i had not thought fast and remembered to UNDO by hitting CTRL - X and not CMD - X i might have lost all my work.

    You don't necessarily need netcfg to get networking. But I used it before for my wireless on my laptop, so I just used the same on my desktop too. Also if you want to do things like this its easier rather than have to go digging around with macspoof and what not. your netcfg eth0 file could be something like
    PRE_UP='ip link set eth0 address XX:XX:XX:XX:XX:XX'
    CONNECTION='ethernet'
    DESCRIPTION='A basic dhcp ethernet connection using iproute'
    INTERFACE='eth0'
    IP='dhcp'
    If you use a different interface then obviously, you need to change it accordingly

  • Incorrect desktop shortcut with Elements 11 silent install

    Hello all,
    I'm attempting a silent install of Photoshop Elements 11 following the instructions from http://helpx.adobe.com/photoshop-elements/kb/silent-install-instructions-photoshop-element s-1.html .  The install works however it is placing a shortcut to the Organizer rather than Elements on the desktop.  I am not installing the organizer so the shortcut will not work.  Does anyone know of a method to have the silent install add the elements shortcut rather than the organizer?  Thanks!

    Can't you create your own desktop shortcut by dragging the executable to the desktop, then assign it a name and an icon (if it doesn't pull in its own)?

  • Desktop Shortcut in non-Default browser?

    Good Evening,
       I have Google Chrome set as my default browser in Lion.  To access certain DOD websites I have to use Safari since it can access my PKI smartcard and chrome can't.  I'd like to create a few desktop shortcuts for these websites to open in Safari, not chrome.  I can drag the URL to the desktop and it creates the shortcut.  I right clicked on the icon and changed the "open with" to Safari but when I then double click the icon it still opens in the default browser, Chrome. 
    Any mac geniuses out there who know of a script or something to force those specific desktop shortcuts to open in Safari(not default browser) vs Chrome (default browser)?
    Thank you!

    This isn't working for me for a URL I want to force open in Firefox (Chrome is my default).  Right-click "open with" works.  But, even after changing the "open with" in "get info" to Firefox, it opens in Chrome.
    Changing ".webloc" to ".webbookmark" broke it entirely.  It does open in FF, but as an XML file that outputs this:
    <plist version="1.0"><dict><key>URL</key><string>[URL]</string></dict></plist>
    Any ideas?  Thanks.

  • Launching from desktop shortcuts results in shared JInitiator sessions?

    Hello,
    I've been looking into how best to give users a route into my Forms 10gR2 application, and had set up a desktop shortcut. This is just a URL to an intermediate htm file, which then uses window.open() Javascript to run the URL for the application itself in a stripped-down browser window. I've turned off the Internet Explorer option 'Reuse windows for launching shortcuts', so a new IE window is always opened rather than use an existing one.
    That all works fine in principal. I've noticed, though, that if a browser is already open, then clicking on the shortcut will open a new browser window (good) but that is still part of the existing browser process. This means that if I use the desktop shortcut twice, to start two separate sessions of my application, they are in different windows but sharing the same browser process - and the same JInitiator (I only see one instance of the JInitiator console, with outputs from the two sessions.) That scenario often causes the newer application session to hang terminally before login.
    The problem doesn't occur if I manually force starting of a new IE instance to run my second application session. It definitely seems to be a problem with running two Forms sessions in one IE instance - I read on another post there was a known bug on this in Forms 10g904, I'd have thought this would be fixed by now..?
    Has anyone else had similar problems? Or experience of using desktop shortcuts to start a Forms app?
    Cheers,
    James
    Message was edited by: Oh, I'm running in separateMode=false, btw.
    kilj

    I haven't done much with JPI, apart from testing it locally on my development box. I've successfully lobbied our DBA in support of creating an alternate JPI config on our test server, to evaluate its effect on an app currently under development, but I've yet to ask that he actually create that config.
    My main reason for wanting JDK 1.4 or better, is to gain support for regular expressions. I'm running JPI 1.3.1_16, so I haven't had a chance to observe the behavior you're describing with JPI 1.5. The Java Plug-In Control Panel provides allows me to choose which JRE it employs -- does JPI 1.5 no longer support this? As for the sticky-cursor issue, I am not familiar with it -- I guess I'll have to research that a bit!
    I'll be working with JPI more, over the coming weeks/months, and will be certain to report back with the results of my testing.
    Later,
    Eric

  • Office 2013 - Creating desktop shortcuts using OCT

    I need to create desktop shortcuts using the Office Customization Tool. But how does one do this when they have both 32 and 64 bit machines in the environment? The "Start In" path below is obviously going to be different when dealing with
    32 and 64 bit OS machines (c:\program files vs c:\program files(x86))
    I'm following these directions but they look to be specific to a 64 bit machine: http://mystang69.blogspot.com/2013/08/office-customisation-tool-2013-adding.html

    https://technet.microsoft.com/en-us/library/cc179097.aspx?f=255&MSPPError=-2147217396#Configure_shortcuts
    Start in
    Enter a path to specify the default starting folder for the application. If you leave this box blank, the default folder is set to the folder where the destination file resides. If the path is not valid on a user's
    computer, the user sees an error message when the user tries to use the shortcut.
    Do you need to set a start in location?

  • NWBC v3.0 installed, but "nothing happens" upon executing desktop shortcut

    I have a problem with v3.0 of NWBC that I have recently installed.  Upon double clicking on the desktop shortcut icon, the initial NWBC 3.0 splash screen is displayed, but then nothing else happens.  I am not presented with any screen where I am able to select a backend system to connect to.   Task Manager shows the service "sapstartsrv.exe" still running (I'm assuming that this is linked to NWBC), but no other evidence can be seen that NWBC is actually running.
    I would like to add that NWBC v1.0 works perfectly well on the same PC, and connects successfully to backend SAP systems.
    Some additional information.
    - I have just installed SAPlogon 7.20 + restarted (as the previous version 7.10 patch level 14 did not meet the required level of 7.1 level 15)
    - I am running XP SP3.  Windows hotfix 919477 is not required, as it is already present as part of one of the XP SPs.
    - I have reverted from Google Chrome as my default browser back to IE (+ restarted), to see if this made any difference, but still no luck.
    Many thanks in advance to anyone who can shed any light on this issue, given the "scraps" of information provided above.
    Alistair Crawshaw

    Hi Ali,
    I am also facing the same issue. After installing NWBC 3.0 when I try to run it, it just display the SAP splash screen and then get closed automatically and I am not getting any screen to select the backend system to connect.
    I saw your reply:
    +Please ignore my question above. The problem was due to the fact that the backend ECC system that we were connecting to did not have the relevant EHP + Support Pack Level. After updating these, the connection was successful.+
    But how did you get the screen to add backend system to which you want to connect?
    Regards,
    Vikram

  • Remote Desktop Connection for Mac - connection lost after a minute idle

    Hi There,
    I am trying to connect from a Macbook Pro to my work (XP) machine using the latest Remote Desktop Connection for Mac.
    It used to work fine, and recently it has been dropping the connection if I've not been 'active' for a minute or so.
    What is confusing is that it is not always like this. Some days, I can leave it inactive for hours over lunch etc, and I'll come back and it will be fine. And just the other day, in the morning it dropped me out ever minute or so I was inactive, and then the afternoon was fine, and the evening was troublsome again.
    Our administrators had not changed anything during that time, nor had I changed anything on my XP machine at work, or my Mac at home.
    I connect via a wireless connection.
    These problems occur when running on battery and when plugged in.
    Any thoughts?
    Thanks,
    ThreeIsles

    Since RDC is not an Apple product, you should post your question on Microsoft's own forums for their Mac version of RDC:
    http://www.officeformac.com/ProductForums/RemoteDesktopConnectionClient/

  • Desktop shortcuts will no longer open firefox after a "shockwave" player software update

    I can go to my email and click on links to web pages that open firefox, but not the desktop shortcuts. This happened after being prompted to install this software while trying to view a video on facebook.

    A couple of quick things to try. Have you re-started your computer?
    Have you tried on the desktop shortcuts - right click>open?
    And a couple of questions. Is Firefox working properly via the URL Bar and the Search Bar?
    Do bookmarks open normally?

  • When I replaced my PC desktop with a Mac Mini and hooked up my HP printer to it, I discovered my other computers on the Wi-Fi network could no longer access the printer.  The manual says Maverick OS will not allow PC's to access the printer. Any thoughts?

    When I replaced my PC desktop with a Mac Mini and hooked up my HP printer to it, I discovered that my other computers on the Wi-Fi network could no longer access the printer.  The manual says Maverick OS will not allow PC's to share the printer. Does anyone else have this problem?  My printer does not have on-board Wi-Fi but, otherwise, works fine.  I shouldn't have to buy a new one.  Is there a OS patch out there that would open the printer port for my PC computers?

    I'm assuming that on the Mac, the System Preferences -> Sharing -> Printer Sharing -> [X] HP printer -> Everyone can print is selected?  That is to say, the Mac will allow anyone to print using the printer, and that you did not try to restrict who can print.
    How is your network configured?  Bonjour as a protocol will NOT cross a router boundary.  If you have 2 or more subnets active with the PCs on one subnet and the Mac on another, that would block the PCs from seeing the Mac.
    You could have multiple subnets if you have more than one router, such as an ISP provided broadband modem/router and another WiFi Router.  If the PCs are talking to one router and the Mac is talking to another, that could be a 2 subnet situation.  The additional routers must be put into bridge mode, which is done differently depending on the router.  But the basics are to diable DHCP and NAT services on the secondary router(s) having just one active router on the network.
    Also, using Bonjour Browser on my Mac, it is showing me that the printer is being advertised as using Internet Printing Protocol, so if that is something selectable on Windows, maybe you can bypass Bonjour on Windows.

  • Is there any way to install iTunes on windows 7 without it changing all my desktop shortcuts to iTunes?

    I just got a new iPhone 6 and I want to use iTunes to download songs and back my info up on iCloud, but every time I try to install iTunes it replaces all my shortcuts with iTunes! I had to entirely uninstall it last time to be able to use google chrome again. Is there any solution to this problem?

    Should you find that all of your desktop shortcuts have turned into links to the iTunes application download and apply the lnk registry fix from www.sevenforums.com/tutorials/19449-default-file-type-associations-restore.html.
    tt2

  • Steps to take if BlackBerry is not shown as connected in Desktop Manager for Mac

    Hello Community,
    Here is a list of steps you should attempt to try and get your BlackBerry detected in Desktop Manager for Mac.
    1. Make sure you're using the most up to date BlackBerry Desktop Software for Mac.  Which is available to download at http://www.blackberry.com/desktop
    2. If using a MacBook/MacBook Pro make sure the BlackBerry is plugged in the left USB port close to the screen.  If using a iMac make sure you use the USB ports on the Mac and not a USB hub.
    3. Make sure you're using a BlackBerry branded USB cord.  (There are usb cords out there for charging only).
    4. Make sure mass storage mode is enabled on your BlackBerry smartphone. KB Article.
    5. Disable Media Transport Protocol on your BlackBerry smartphone. (Options>Memory)
    6. Make sure your Mac OS X 10.6 is running in 32-bit mode. KB Article.
    7. Make sure ALL other syncing software has been uninstalled and removed off your Mac.  KB Article.
    8. Perform a battery reset on your BlackBerry smartphone. KB Article.
    9. Make sure your BlackBerry smartphone is not hour-glassing or have an application error appearing on the LCD screen. However if there is a JVM 507/513 error appearing on the BlackBerry the Desktop Manager for Mac will pick up the device and reload the software.
    10. Make sure "Open using Rosetta" is not running/disabled on Mac OS X. KB Article.
    I will be adding more tips and tricks to this post once I come across them.
    Feel free to share with other community members and I always welcome suggestions and comments. 
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

    Hey burko74,
    Do you have a media card in your BlackBerry? If so, do you get prompt for mass storage mode?
    Also does the mac pick up the media card as a removable hard drive?
    Have you tried to do a battery reset as well?
    I look forward to your reply.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

Maybe you are looking for

  • WLM Not playing videos, says I need Flash, but I have it installed

    Okay, I originally had a topic going in Microsoft Tech Support, and was told to come here, so I'll copy my original post there. Which version of Windows Live Messenger are you using ? Version 2011 (15.4.3538.513) Choose your Operating System version

  • Insert statement taking more time

    Hi, Insert happening very slow after sqlldr happening in my program. Please find the below workflow of my program. 1) SQLLDR will be called, it will insert around 4 lakhs records in 'TEMP" table using direct path load.Response time is good here. 2)Af

  • How to hide/disable certain features in left panel, need help...

    Heya, So I upgraded to Leopard recently and I see that Mail has some lovely new features that appear in the left panel. Things like "On My Mac", "RSS", "Reminders" and my IMAP drive. Basically all I want to see is my "Inbox" drop down (this connects

  • Not converting

    I have experienced a sudden problem with Acrobat Professional. When I try to convert a Word document to PDF, one of two things happens: 1. If I use the PDF button within Word, the process begins, but then it suddenly ends, and no error message is giv

  • Alv field with f4 help without using class

    Hi, Can any one give me a program of "Alv field with f4 help without using class". Thanking you in advance.