IWork '09 installation location

I was wondering if I would cause a problem by moving my iWork '09 application from the iWork '09 folder and into the root of the Applications Folder. Its just that I like to have an Applications stack on my dock and being able to simply click on Pages '09 and have it load as apposed to then having to click on the finder window that appears because the apps in a folder?

ChrisWad wrote:
Thanks for the reply it just seems odd that Apple don't seem to follow their own UI guidelines in terms of where an application should be installed and how the application should appear in the applications folder. Looks like I will have to make an alias instead.
They aren't selling _three separate applications_ but _one package_ embedding three tools sharing a lot of components.
So, they follow their own guidelines
Yvan KOENIG (from FRANCE lundi 2 février 2009 22:19:12)

Similar Messages

  • I installed on my computer the other SSD hard drive, and now'd like to install Photoshop and Lightroom that station and I do not the C drive. How do I get exchanged the installation location when using your Creative Cloud in your program.

    Photoshop is installed on your C partition and how to get it installed on another partition now!

    Heinonen Petri you can customize the installation location within the preferences for the Creative Cloud desktop application.  Please be aware that the Creative Cloud desktop application and many shared components will always need to be installed to the primary drive containing the operating system.
    For additional details on how to customize the installation location please see Creative Cloud Help | Download, install, update, or uninstall apps.

  • Programatically determine installation location for InDesign CS3, CS4, CS5, AND CS5.5 (Windows)

    We build plug-ins for all versions of InDesign from CS3 and later, for Windows and Mac.
    To deploy our plug-in(s) on Windows, we use InstallShield, which has a somewhat complicated mechanism to locate InDesign.exe and determine its version so we know which plug-in(s) to install, but basically, the location is determined (via the RegLocator table in InstallShield) based on this registry setting:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\InDesign.exe
    This has been working fine for all versions of InDesign since CS2.  However, that location is apparently no longer set by the InDesign CS5.5 installer.  So, we need to find some other way of programatically locating InDesign CS5.5 with our installer.
    I've searched the registry of a machine with InDesign CS5.5  installed, and there are other registry entries related to InDesign, but those  entries are not set by earlier versions of the InDesign installer.  Ideally, there would be a registry setting, or some other reliable marker we can use to locate the InDesign installation, which is consistent across all versions of InDesign (at least back to CS3).
    Using the registry setting is something we came up with on our own via  trial-and-error, since, as far as I know, there is no documented way to  locate the InDesign  installation folder.  (Our Mac installer uses a simpler mechanism to locate InDesign by the application name and version number.)
    I find the apparent lack of documentation on this a bit ironic, since just about every other aspect of the SDK and the methods for creating InDesign plug-ins is extremely well documented, expect for the last final bit one needs to know to get to the promised land of actually deploying a carefully crafted plug-in to customers' machines.  (This seems to be true of the Acrobat SDK as well.)  However, I could have just missed the relevant documentation, in which case, please point me to it.
    So, is there a recommended way to programatically  locate the InDesign installation location on Windows?  How are other people doing this in their installers?

    Hi Dan,
    this is the InDesign plugins SDK forum, you need the installer forum....
    Just kidding. I use a really hacky piece of VB to install my plugins while I'm developing...
    here's the bit which works out the folder depending on which version I'm compiling for.
    That gives you the gist anyway, and I imagine that most installers are going to do more or less the same thing, except they'll have short cuts ways of getting it.
    There's probably a better way, but this works for me...
        Private Function DiscoverApplicationFolderFromName(ByRef strApplicationName As String) As String
            Dim strApplicationSignature As String
            Dim strDefaultPath As String
            If (g_strCreativeSuiteVersion = CREATIVE_SUITE_5) Then
                ' special case for CS5, because a debug machine might have CS5 or CS5.5 or both installed.
                ' plugins built with the SDK for 5.5 will not run in CS5 apps
                strApplicationSignature = strApplicationName + ".Application." + CREATIVE_SUITE_55
                Dim strInCopyPath = DiscoverApplicationFolderFromSignature(strApplicationSignature, "")
                If (strInCopyPath <> "") Then
                    g_strCreativeSuiteVersion = CREATIVE_SUITE_55
                    Return strInCopyPath
                End If
            End If
            strApplicationSignature = strApplicationName + ".Application." + g_strCreativeSuiteVersion
            strDefaultPath = "C:\Program Files\Adobe\Adobe " + strApplicationName + " " + g_strCreativeSuiteVersion + "\" + strApplicationName + ".exe"
            Return DiscoverApplicationFolderFromSignature(strApplicationSignature, strDefaultPath)
        End Function
        Private Function DiscoverApplicationFolderFromSignature(ByRef strApplicationSignature As String, ByRef strDefaultPath As String) As String
            Dim strApplicationPath As String = DiscoverApplicationPathFromCLSID(strApplicationSignature, strDefaultPath)
            If (strApplicationPath = "") Then
                Return ""
            End If
            Dim strDirectory As String = Path.GetDirectoryName(strApplicationPath)
            ' Get rid of the trailing Debug because this depends on whether we install the Debug or Release version first or second.
            ' It will be added on again if we're using a Debug Configuration
            Dim strDebugTag As String = " Debug"
            If strDirectory.EndsWith(" Debug") Then
                strDirectory = strDirectory.Substring(0, strDirectory.Length - strDebugTag.Length)
            End If
            Return strDirectory
        End Function
        Private Function DiscoverApplicationPathFromCLSID(ByRef strApplicationSignature As String, ByRef strDefaultPath As String) As String
            Dim strApplicationPath As String = strDefaultPath
            Try
                Dim strKey As String = strApplicationSignature + "\CLSID"
                Dim regKey As RegistryKey = Registry.ClassesRoot.OpenSubKey(strKey)
                Dim strGUID As String = regKey.GetValue("")
                regKey.Close()
                If IsRegistryVirualized() Then
                    strKey = "Wow6432Node\CLSID\" + strGUID + "\LocalServer32"
                Else
                    strKey = "CLSID\" + strGUID + "\LocalServer32"
                End If
                regKey = Registry.ClassesRoot.OpenSubKey(strKey)
                strApplicationPath = regKey.GetValue("")
                regKey.Close()
            Catch ex As Exception
                LogMessage("FAILED DiscoverApplicationPathFromCLSID: " + strApplicationSignature)
                strApplicationPath = strDefaultPath
            End Try
            Return strApplicationPath
        End Function

  • Sun Java System Application Server installation location on windows

    Hi there...
    I'm just doing the "Your First Cup: An Introduction to the Java EE Platform" tutorial for the first time. I'm trying to add the Sun Java System Application Server in NetBeans IDE. It's asking me to select the Platform Location, and I have no idea where that is. No help instructions I've found say where it normally gets installed, and I've found now mention of it on the web.
    Can anyone tell me the location where this is supposed to be located? I HAVE installed the Java EE SDK 5 for Windows. The location it offers as a default is "C:\Program Files\glassfish-v2ur2\", but there is a red message at the bottom of the dialog that reads "Provide a valid Application Server Installation Location for 'Sun Java System App...". The Register Local Default Domain drop-down box has not options to select, either.
    I would try and search some more, but I just don't know what to search for. If anyone can offer any insight into this, I appreciate it.
    Thanks a ton!!!
    Orion Carrier

    I`ve posted a shorter version of the question in the hopes of getting a timely answer. Thanks

  • IWork '09 Installation Never Completes

    I am trying to install iWork 09 on a iMac G5, 2Gb of ram, running OSX 10.4.11.
    The installation runs fine and almost completes, but hangs on Running iWork '09 Installer script.
    Tried trashing iWork folder, preferences files in user home directory and library folders.
    Along with trashing Pages.pkg & Keynote 2.pkg in the library Receipts folder. After restart hangs at same spot again.
    Any help is appreciated.

    HI,
    Try deleting this file. com.apple.installer.plist
    /Users/YourName/Library/Preferences. Drag that file from the Preferences folder to the Trash, empty the Trash and restart your Mac. See if you can install iWork now.
    How much free drive space is there? Right or control click the MacintoshHD icon on your Desktop, then click: Get Info. In the Get Info window, click the discovery triangle so it's facing down. You will see; Capacity and Available Make sure you have 10% available disk space, 15% is better. Not enough available drive space can cause issues like you are experiencing.
    Carolyn

  • Question:-Is there any way to disable the installation location/folder of da Adobe AIR Application?

    Is there any way to disable the installation location/folder of the Adobe AIR Application or can we skip that part automatically?

    xmlns:mx="library://ns.adobe.com/flex/mx"  is the spark mx address, which is completely different than the original 2006 mx library. 
    The thing is:  I love AIR, hate spark, loved the 2006 pre-spark functionality.  It is so much more convenient and user friendly.  Given the choice between having the display seperate from the  processing, or having it be convenient and easy  to work with, I choose the later option.
    For the most part it seems like the AIR api is like a layer on top of the spark - flex system..   I would like to be able to over lay the same AIR functionality on top of the the old system....
    Possible or no?

  • CS5.1 overrides CS5 registry entries, how do I get the photoshop installation location safely?

    Hi there,
    I'm creating a installer for my Photoshop plugins, so I need to find out Photoshop installation directory. I did this by looking for registry 'HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Photoshop\', but I found that CS5.1 will override the CS5 registry entries - they are both in ’HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Photoshop\12.0‘
    So how can I distinguish CS5 and CS5.1 in the registry? Or how can I get the correct installation direcotry for both CS5.1 and CS5?
    Thanks,
    Daniel

    You can't on Windows. On Mac they did the right thing and made a seperate .paths files. On Windows they just tromped on the CS5 registry entries with the CS5.1 entries, even though it's a completely seperate application installation with its own plugin path. Not too cool.
    Although, it only matters if you encounter the probably rare corner case where a user has both CS5 and CS5.1 installed AND wants to put the plugins into the CS5 plugin path. We just punted and can only install into CS5.1 in that case, unless the user manually selects the installation location. It hasn't generated any significant support issues for us that I know of.

  • Default installation location

    Hello! I am installing the Oracle Database and Query Tool Express Edition for the first time. I have Windows 7 64-bit Ultimate Edition. I was merely wondering why the default installation location is C:\ rather than C:\Program Files\ or C:\Program Files (x86)\. If I change the location from the default, will this affect the software in any way (i.e. will the program have trouble finding certain files)? Is there any real reason to install it to C:\?

    Hi;
    Hello! I am installing the Oracle Database and Query Tool Express Edition for the first time. I have Windows 7 64-bit Ultimate Edition. I was merely wondering why the default installation location is C:\ rather than C:\Program Files\ or C:\Program Files (x86)\. If I change the location from the default, will this affect the software in any way (i.e. will the program have trouble finding certain files)? Is there any real reason to install it to C:\?You can change location but i stongly suggest do not use space when you are using different name
    Example:
    Use D:\My_Database\xxx
    Do not use D:\My Database\xxx
    Regard
    Helios

  • IWork'06 Installer goes crazy!

    That stupid thing tells me that pages and keynote are not in Applications/iWork/ ... blabla bla...
    I hate having to pay for something and not being able to use it with all the updates I have a right to claim access to!

    LLJM,
    welcome to Pages Discussions.
    Did you check Applications/iWork/...blablabla?
    The iWork'06 installer installed iWork on my PowerBook in Applications/iWork'06, with the old '05-Version in Applications/iWork.
    Did you move the original iWork folder to a different place? Maybe moving it back (or at least creating a link) will help.

  • How to customize the installation location for Acrobat Reader 11

    My c:\ is a SSD with limited space.  I would like to install Reader 11 to a different drive path, however the installer does not seem to have custom installation location option.

    Download the offline installer from http://get.adobe.com/reader/enterprise/, then click on 'Change Destination Folder' on the first install panel.

  • How to find programatically the installation location for Mysql?

    How to find programatically the installation location for Mysql?

    There are thousands of them. Probably hundreds of thousands. If you had a particular one in mind, just ask the person who set it up. There's no point in trying to write code for that, since you only need to ask once and put the location in your code.

  • Different installation location?

    I'm trying to install Ps How do I select a different installation location for the program? I don't have enough space on my C: partition. So I need to change the location for the program

    If you are installing Photoshop CC, then try below steps
    Open Creative Could App, Click Gear icon on the top right corner and open preferences.
    Then click Apps tab on preferences, you will be able to locate the option.

  • Freeze during iWork 09 installation

    The installer froze during the installation of iWork 09 trail. I downloded from Apple.com and opened the dmg file. The installation froze at the stage "Configuring Installation". I waited for about 1 day and I finally gave up. Is there something wrong?

    none here wrote:
    The installer froze during the installation of iWork 09 trail. I downloded from Apple.com and opened the dmg file. The installation froze at the stage "Configuring Installation". I waited for about 1 day and I finally gave up. Is there something wrong?
    That section takes seconds to finish. You should not have to wait longer than minutes to install iWork. Run Disk Utility or similar to check for problems on your system and then reinstall.

  • IWork 09 installation fails

    I am unable to install iWork 09 on my computer. It acts like it's going to install, but then it fails for various different reasons.
    One message I received was: *The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.* (Good luck ... there isn't anyone to contact at Apple that I was able to find.)
    Another message I received was: *The Installer could not install the software. The Installer could not install the software because there was no software found to install.*
    I have tried all the "tricks" I found in the forum ... cleaned the disc ... ran a disk check ... did a "run with ..." on the original app rather than the link. Nothing has worked.
    I have been able to install other software via DVD ... but only seem to have issues with Apple software (the DVD for the Apple Care also gave me a problem ... I had to call in to get registered).

    Download the trial and use the serial from your purchase.
    Are you trying to install from a physical disc or a disc image?

  • Iwork 09 installation error

    iWork installs successfully but then when I try to open it, I get the following
    Process:         Numbers [1131]
    Path:            /Applications/iWork '09/Numbers.app/Contents/MacOS/Numbers
    Identifier:      com.apple.iWork.Numbers
    Version:         ??? (???)
    Build Info:      Numbers-3320000~94
    Code Type:       X86 (Native)
    Parent Process:  launchd [95]
    Date/Time:       2014-08-16 22:52:55.837 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          979 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      BBC6547A-7A15-4D72-940E-1596282B18F8
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: @rpath/Inventor.framework/Versions/C/Inventor
      Referenced from: /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 3 GB, SMC 1.20f4
    Graphics: ATI Radeon HD 2600 Pro, ATI,RadeonHD2600, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD3200AAJS-40VWA0, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-875, 557.1 MB
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa400000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfa430000 / 4
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa420000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x1a100000 / 2

    Hi Joshuafromoklahoma,
    Welcome to the Apple Support Communities!
    What I would recommend in this situation would be deleting iWork from your computer and reinstalling fresh. Please use the following article for information on how to complete these steps. I understand the article title doesn’t apply to your situation, but the steps for removal will be of some help to you.
    iWork '09: Disc or Mac App Store install may prompt for serial number
    http://support.apple.com/kb/TS3098
    Have a great day,
    Joe

Maybe you are looking for

  • Best Sound from Audigy 2 ZS

    I have a Creative Sound Blaster Audigy 2 ZS Platinum Pro and I want the best sound quality I can get from my Sound Card. In the Creative Audio Console, I have a few questions on what changes I should make. For the Decoder, do I click "Use Built-in De

  • Need help with writing a query with dynamic FROM clause

    Hi Folks, I need help with an query that should generate the "FROM" clause dynamically. My main query is as follows select DT_SKEY, count(*) from *???* where DT_SKEY between 20110601 and 20110719 group by DT_SKEY having count(*) = 0 order by 1; The "

  • Cursor freezes completely each time with mac os x 10.6.8

    Hello, mac friends, I have a Macbook Pro with 8Gb and upgraded from 10.6.3 to 10.6.8 recently. All was well for some but since one week, the cursor freezes when I use either Safari or Mozilla, and and basically the whole system jams. I cannot do forc

  • Database to CRM

    Hi All: I need to know on what logic we can design this scenerio :- <b>Need to send Event from Database to CRM Database XI-CRM</b> So here is the req. <b>Event1 and Event2</b> need to be send to CRM Sender Database : There are 2 tables ( Table 1 and

  • Communicating with a device

    I'm trying to communicate with a new instrument e.g to control such as moving to the left or right in a specified time given, get the reading out of it etc. I'm using serial communication, and the instrument does not have a driver. Does it mean that