InDesign CS3 Visual Basic Type Library GUIDs difference in XP and Vista

I have started migrating to Vista for some of our applications and have run across an issue. After installing InDesign CS on Vista I went to run one of the Applications and it did not work when calling COM object from the Adobe InDesign CS3 Type Library {666F676B-7790-4B6F-B691-EC43C6F94C18}. After investigating it turns out that the type library isnt installed with this GUID in the registry instead it has been installed under GUID {B694A47E-004D-48e0-AE77-B37A9CC18760}. I have tried to uninstall the install InDesign but this still doesnt register the type library under the right value {666F676B-7790-4B6F-B691-EC43C6F94C18}. Has anyone suggestly used C# to access the Visual Basic Type Library on Vista?

I have resolved this. Basically the installation of InDesign CS3 on Vista doesn't register the COM interfaces in the registry. Once I registered all the interfaces everything is working.

Similar Messages

  • VISUAL BASIC USER'S MANUAL & VISUAL BASIC SUBROUTINE LIBRARY ?

    please provide me with a link to a visual basic user's guide/manual for my general use.
    specifically, at present, I am looking for the name and description of a visual basic subroutine library least squares curve fitting subroutine.  
    Joe MIller

    please provide me with a link to a visual basic user's guide/manual for my general use.
    specifically, at present, I am looking for the name and description of a visual basic subroutine library least squares curve fitting subroutine.  
    Joe MIller
    This link will take you to the official documentation on functions included with Visual Basic:
    Visual Basic Functions
    It is also interesting to note that there are such thing as .Net functions, which are attached to .Net classes.
    An example of that would be
    Graphics.DrawCurve
    If drawing a curve is something you are trying to do...
    Don't forget to vote for Helpful Posts and
    Mark Answers!
    *This post does not reflect the opinion of Microsoft, or its employees.

  • Visual Basic TCPControl Help - I've Searched, Looked and Learn But not exactly getting it right - Please Help

    Simple Card Game - that works
    Now want to give it Multiplayer Functinality
    Also I am confused, how do I get the client to get information sent from my server to it, since it is not listening (and store it into a string)
    I really just want a bare bones code to
    have A Master Server that Can recieve Multiple Connections
    That Master Server Needs to be able to get messages from each user connected to it
    The Master Server Needs to be able to send Messages to each user connected to it
    each user (client) needs to be able to recieve and show messages recieved from the master server!
    That really sums it up - I need to stream line the network code.  I need to focus on the actual card game itself!
    Please Help!!!!
    1 - Player will start their game (client)
    2 - The client will connect to the server
    3 - Master Server Accepts the Connect
    4 - The Client will automatically send their login info as a string to the Master Server
    5 - Master Server Will check the string and get user info - if the Info is correct then the Master Server will send a message to the Client as a string letting it know it is connected
    6 - Master Server Will give that player a UniqueID
    7 - Master Server Will put Player in a list as An Available Player
    8 - 
    9 - Now
    10 - 
    11 - Player 2 will start their game (client)
    12 - The client will connect to the server
    13 - Master Server Accepts the Connect
    14 - The Client will automatically send their login info as a string to the Master Server
    15 - Master Server Will check the string and get user info - if the Info is correct then the Master Server will send a message to the Client as a string letting it know it is connected
    16 - Master Server Will give that player a UniqueID
    17 - Master Server Will put Player2 in a list as An Available Player
    18 - 
    19 - Now since there are 2 players
    20 - 
    21 - The 2 players are removed from the Available Player List
    22 - 
    23 - Master Server will randomly pick a player 1 to go first
    24 - Master Server Sends Message to Player to take turn (as a string code)
    25 - Player 1 plays a card - the card info is sent as a string to the master server
    26 - The Master Server then sends the Player 1 info to Player 2
    27 - Player 2 Client gets the info from the master server that contains the card info from player 1
    28 - Player 2 plays their card and the information is sent to the master Server
    29 - 
    30 - Until
    31 - 
    32 - One of the players is considered a winner
    33 - At that Time the Server will Record Player 1 as winner or loser and Player 2 as winner or looser  
    34 - Now The 2 Players are put back onto the available players list
    Now this is where I am stuck.
    Step 11 - 
    How do I get my progam to accept more than one person?
    So my problem is my TCPControl I guess  SO code below
    ClientTCPControl.vb (Class)
    Imports System.IO
    Imports System.Net
    Imports System.Net.Sockets
    Imports System.Threading
    Imports System.Text.RegularExpressions
    Public Class ClientTCPControl
        Public Client As TcpClient
        Public DataStream As StreamWriter
        Public Sub New(Host As String, Port As Integer)
            'Client
            Client = New TcpClient(Host, Port)
            DataStream = New StreamWriter(Client.GetStream)
        End Sub
        Public Sub Send(Data As String)
            DataStream.Write(Data & vbCrLf)
            DataStream.Flush()
        End Sub
    End Class
    MasterSercerTCPControl.vb
    Imports System.IO
    Imports System.Net
    Imports System.Net.Sockets
    Imports System.Threading
    Imports System.Text.RegularExpressions
    Public Class MasterServerTCPControl
        Public Event MessageReceived(sender As MasterServerTCPControl, Data As String)
        Public PublicServerIP As IPAddress = IPAddress.Parse("10.0.0.6")
        Public ServerPort As Integer = 64554
        Public Server As TcpListener
        Private ComThread As Thread
        Public IsListening As Boolean = True
        'CLIENTS
        Private Client As TcpClient
        Private ClientData As StreamReader
        Public Sub New()
            Server = New TcpListener(PublicServerIP, ServerPort)
            Server.Start()
            ComThread = New Thread(New ThreadStart(AddressOf Listening))
            ComThread.Start()
        End Sub
        Private Sub Listening()
            'Create Listener Loop
            Do Until IsListening = False
                'Accept Incoming Connections
                If Server.Pending = True Then
                    Client = Server.AcceptTcpClient
                    ClientData = New StreamReader(Client.GetStream)
                End If
                'Raise event for incoming messages
                Try
                    RaiseEvent MessageReceived(Me, ClientData.ReadLine)
                Catch ex As Exception
                End Try
                'Reduce CPU Usage
                Thread.Sleep(100)
            Loop
        End Sub
    End Class
    Client Code This Sub Runs when the Player Clicks the Connect Button
        Private Sub cmdConnect_Click(sender As Object, e As EventArgs) Handles cmdConnect.Click
            'Make Connection to Master Server
            Client = New ClientTCPControl("10.0.0.6", 64555)
            If Client.Client.Connected Then cmdConnect.Text = "Connected"
            varConnectedToServer = True
            'Create Login Credential String
            LoginCredentials = "login" & "," & varUserName & "," & varUserEMail & "," & varUserPassword & "," & varUserState & "," & varUserMachineIP
    & "," & varUserInternetIP & "," & varPlayerPort & ","
            SendLoginCredentialsMessage()
        End Sub
    Also I am confused, how do I get the client to get information sent from my server to it, since it is not listening (and store it into a string)
    I really just want a bare bones code to
    have A Master Server that Can recieve Multiple Connections
    That Master Server Needs to be able to get messages from each user connected to it
    The Master Server Needs to be able to send Messages to each user connected to it
    each user (client) needs to be able to recieve and show messages recieved from the master server!
    That really sums it up - I need to stream line the network code.  I need to focus on the actual card game itself!
    Please Help!!!!

    I suggest you search the net until you find something that sounds like it may be able to do what you want to do.
    Like this link from CodeProject
    C# \ VB .NET Multi-user Communication Library (TCP).
    Although for the server to work I suppose it will need to be on a machine which has a public internet IP address or perhaps port forwarding would need to be used or dynamic dns. Things which may cost extra or not be available from your ISP.
    What you need to know about the Internet
    Making your Computer Accessible from the Public Internet
    La vida loca

  • Magic Mouse Guide for Windows 7 and Vista,,,

    Hello All,
    I recieved my Magic Mouse and it works great under OSX but I couldn't get it working under Windows at all. Searching here and around the web, I've compiled a guide on how I got it working. Hopefully, Apple will release proper drivers in the future but for now, here is what I did:
    Turn mouse off...if you have already tried installing, remove the device and then turn the mouse off. To remove it, open Start, type "Devices" and press enter. Select "remove device"...Now let's get started:
    1) Update the Bluetooth Driver.
    Open Device Manager.
    Start > (Right Click Computer) > Properties. Click Device Manager in upper left of this window. Double click (Bluetooth Radios), Right click on "Generic Bluetooth" and select "Properties". Open the Driver tab and then select "Update Driver". Click "Browse my computer for driver software". On the next screen, towards the bottom, click on "Let me pick from a list of device drivers...". Uncheck "Show compatible hardware". Select "Apple" and then "Apple built in bluetooth". Done
    2)In the notification area of the task bar, right click on Bluetooth icon and select "Add a device". Turn on your mouse. It will show up on screen. Right click on the mouse icon. Select Properties. Select the "Services" tab and check the "Drivers for keyboard, mice, etc". The mouse may disappear from the screen since it's been added. Windows is still looking for other devices so click "Cancel".
    3) Disable power management for Bluetooth Radio. Open device manager, open Bluetooth Radios and right click on "Apple Bluetooth". Select the "Power Management". Uncheck "Allow the computer to turn off this device to save power".
    4) Reboot computer. Mouse should be working in Windows 7/Vista now.
    * If you reboot and your mouse is still not working, click on the mouse two or three times. On my system, the mouse will not begin working until I do this, every time I boot my system. *
    Hope this helps,
    Al

    if you go to
    http://support.apple.com/kb/DL952
    then download this package
    and extract the AppleWirelessMouse.exe or AppleWirelessMouse64.exe
    you then can run this on your windows PC and execute this
    this enables scrolling functionality of the Magic Mouse
    do not execute the downloaded file directly because it will tell you it doesn't run on this computer ( which is logical because of pc hardware =/= Mac hardware )
    i hope it works for everybody
    for me it does..
    it recognizes my Magicg Mouse and i now also have scrolling enabled

  • Unable to load Adobe InDesign CC 2014 Type Library (Version 1.0)

    Good evening,
    I've just upgraded ID from CC to CC 2014 and now a script that had always run without issue now won't work. I get an error saying 'Unable to load Adobe InDesign CC 2014 Type Library (Version 1.0)'
    The bit of code I was running was executing a little VB script copying files:
            var vbScript = 'Set fs = CreateObject("Scripting.FileSystemObject")\r';
            vbScript +=  'fs.CopyFile "' + f.fsName.replace("\\", "\\\\") + '", "' + destinationFolder.fsName.replace("\\", "\\\\") + "\\" + f.name + '"';
            app.doScript(vbScript, ScriptLanguage.visualBasic);
    From trawling the net I can see stuff about the 'Resources for Visual Basic.tlb' file. I can see this in the C:\ProgramData\Adobe\InDesign\Version 10.0\en_GB\Scripting Support\10.1 folder but clearly it isn't registered or something similar.
    Can anyone help me get past this problem?
    Thanks for any help.

    Thanks for your prompt reply.
    Do you mean copy the 'Resources for Visual Basic.tlb' into the Version 9 folder?
    If so I already have the file in there: "C:\ProgramData\Adobe\InDesign\Version 9.0\en_US\Scripting Support\9.0\Resources for Visual Basic.tlb" as well as the file in this location: "C:\ProgramData\Adobe\InDesign\Version 10.0\en_US\Scripting Support\10.1\Resources for Visual Basic.tlb"
    The only difference between the 2 installs that I can see is that v10 also has a locale for en_GB.

  • Can not select the VISA library (visa32.dl​l) as a reference from Visual Basic.

    I have a copy of Labview base package version 5.1.1 and Microsoft Visual Basic 6.0 in my PII 333 128M PC. I like to use the NI-VISA feature to develope my own testing program by using Visual Basic. However, the NI-VISA library (i.e. visa32.dll) can not be found from the Visual Basic reference library.

    Go PROJECT | REFERENCES menu. In the list, look for "VISA library".
    If the list does not show it, then BROWSE the visa32.dll located in the
    WinNT\SYSTEM32 folder.
    If the VISA library is earlier than V2.x, there is no TypeLib supported.
    Makoto
    "rfan99" wrote in message
    news:506500000008000000B6180000-984882144000@quiq.​com...
    > I have a copy of Labview base package version 5.1.1 and Microsoft
    > Visual Basic 6.0 in my PII 333 128M PC. I like to use the NI-VISA
    > feature to develope my own testing program by using Visual Basic.
    > However, the NI-VISA library (i.e. visa32.dll) can not be found from
    > the Visual Basic reference library.

  • InDesign CS3 & OSX Leopard  cannot type into palettes

    In InDesign CS3, I cannot type into palette boxes (e.g. to choose a typeface, find & change, the tranform palette etc etc).
    It allows me to type so far, then seems to 'refresh' itself, wiping what I have typed and reverting to what was there before.
    We have two iMacs (2.66GHZ Intel Core2Duo, 2GB RAM) here having the same problem!
    Has anyone else experienced this, or know of a solution/workaround? It's driving us nuts!
    Cheers

    Have a look at these:
    Kevin Cecil, "ID CS3 Control Palette Oddity" #, 30 Aug 2007 9:10 am
    http://www.adobeforums.com/webx/.59b4da44/2
    If you disable the auto activation plugin if you are using Suitcase X1 you will most likely see the problem disappear. I would use a program call FontNuke as well to purge corrupt font cache files. Use startup sets or project sets... stinks but gets rid of the stalling/crashing.

  • InDesign CS3 crashing

    We have an issue with InDeisgn CS3 crashing on a regular basis randomlly 3-6 times per night while publishing a newspaper.  The environment is a small newspaper.  The affected systems are 5 editors iMacs running iOS 10.6.8 and 4GB RAM.  They use InDeisgn, InCopy, and Photoshop at the same time along with Mediaspan Newsedit/IQue to access pages, and graphics/images are stored on a file server.  They print to an HP Laserjet 5200 and a Sharp MX3100 copier.  While they do get a few crahses on the large Sharp copier while pirint, they get many more crashes when printing to the HP Laserjet 5200.  All 5 computers are clones, so they are all based on the same image and they all encounter crashes when printing, and while doing other things such as opening files.
    This problem has been happening for the past 6-9 months, and I cant determine what may have changed to have caused it.  I have already cleared the PPD's, as well as the crash recovery folders.  I have ran DiskWarrior 4.3 on all of them as well as the normal Apple disk maintenance software.  The Adobe Suite is CS3 with the latest service pack.  I have recently ordered an addtional 4GB of RAM to bring thre of them from 4 to 8 GB in an attemtp to see if there is any difference in crashing.
    I have many crash logs from both printing, as well as non printing.  Because Printing is more of an issue and happens more than non printing, I will post the most recent printing crash log.  I can follow up with a non printing crash log if that can help diagnose it better.
    Thanks,
    =================================
    Process:         Adobe InDesign CS3 [570]
    Path:            /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    Identifier:      com.adobe.InDesign
    Version:         5.0.4.682 (5040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [125]
    Date/Time:       2013-03-03 19:27:33.318 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          449308 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  347556 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      A2F3363D-51FA-4BF5-A541-8B64748C2B26
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x93e3dc5a __kill + 10
    1   libSystem.B.dylib                 0x93e3dc4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                 0x93ed05a5 raise + 26
    3   libSystem.B.dylib                 0x93ee66e4 abort + 93
    4   libstdc++.6.dylib                 0x95d6cfda __gnu_cxx::__verbose_terminate_handler() + 433
    5   libstdc++.6.dylib                 0x95d6b17a __cxxabiv1::__terminate(void (*)()) + 10
    6   libstdc++.6.dylib                 0x95d6b1ba __cxxabiv1::__unexpected(void (*)()) + 0
    7   libstdc++.6.dylib                 0x95d6b2b8 __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    8   AdobeAGM                          0x0029c2cb AGMInitialize + 1368139
    9   AdobeAGM                          0x00330117 AGMInitialize + 1973911
    10  AdobeAGM                          0x002d3032 AGMInitialize + 1592754
    11  AdobeAGM                          0x002d44a6 AGMInitialize + 1597990
    12  AdobeAGM                          0x002cd653 AGMInitialize + 1569747
    13  AdobeAGM                          0x0015d8d5 AGMInitialize + 63061
    14  AdobeAGM                          0x0033d132 AGMInitialize + 2027186
    15  AdobeBIB                          0x0075d60d BIBInitialize2 + 15359
    16  AdobeBIB                          0x0075d6bb BIBInitialize2 + 15533
    17  com.adobe.InDesign.Print          0x2154d18f GetPlugIn + 183995
    18  com.adobe.InDesign.Print          0x215518b4 GetPlugIn + 202208
    19  PublicLib.dylib                   0x00f0d270 Command::DoImmediate(short) + 34
    20  com.adobe.InDesign.Utilities      0x1eaa29c7 0x1eaa0000 + 10695
    21  com.adobe.InDesign.Utilities      0x1eaa2bee 0x1eaa0000 + 11246
    22  ...adobe.InDesign.AppFramework    0x1ddcd144 0x1ddb5000 + 98628
    23  PublicLib.dylib                   0x00f0e1d5 CmdUtils::ProcessCommand(ICommand*) + 55
    24  com.adobe.InDesign.Print          0x21553920 GetPlugIn + 210508
    25  PublicLib.dylib                   0x00f0d270 Command::DoImmediate(short) + 34
    26  com.adobe.InDesign.Utilities      0x1eaa29c7 0x1eaa0000 + 10695
    27  com.adobe.InDesign.Utilities      0x1eaa2bee 0x1eaa0000 + 11246
    28  ...adobe.InDesign.AppFramework    0x1ddcd144 0x1ddb5000 + 98628
    29  PublicLib.dylib                   0x00f0e1d5 CmdUtils::ProcessCommand(ICommand*) + 55
    30  com.adobe.InDesign.PrintUI        0x23f91f6b GetPlugIn + 5559
    31  WidgetBinLib.dylib                0x023a11fc CActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 34
    32  ...aspansoftware.IQue.DragInUI    0x24a01df4 (anonymous namespace)::DoActualAction(IDType<ClassID_tag>, IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 100
    33  ...aspansoftware.IQue.DragInUI    0x24a067af DragInUIActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 997
    34  com.adobe.InDesign.Actions        0x22ed8867 GetPlugIn + 5787
    35  com.adobe.InDesign.Actions        0x22ecd95b 0x22ecb000 + 10587
    36  WidgetBinLib.dylib                0x0239f17f MDefaultEH::KeyboardShortcut(IEvent*) + 473
    37  WidgetBinLib.dylib                0x0239ea06 CDefaultEH::KeyDown(IEvent*) + 150
    38  WidgetBinLib.dylib                0x0239ef8a MDefaultEH::KeyDown(IEvent*) + 162
    39  PublicLib.dylib                   0x00f25ab5 CEventDispatcher::DispatchToEventHandlers(IEvent*) + 157
    40  PublicLib.dylib                   0x00f25704 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    41  ...obe.InDesign.Application UI    0x1e10e025 GetPlugIn + 196289
    42  ...obe.InDesign.Application UI    0x1e10c4eb GetPlugIn + 189319
    43  com.apple.HIToolbox               0x9a5c1c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    44  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    45  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    46  com.apple.HIToolbox               0x9a5f56d7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2161
    47  com.apple.HIToolbox               0x9a5c2080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    48  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    49  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    50  com.apple.HIToolbox               0x9a6459de SendTSMEvent + 82
    51  com.apple.HIToolbox               0x9a64535b SendUnicodeTextAEToUnicodeDoc + 700
    52  com.apple.HIToolbox               0x9a644f65 TSMKeyEvent + 998
    53  com.apple.HIToolbox               0x9a635e32 TSMProcessRawKeyEvent + 2515
    54  com.apple.HIToolbox               0x9a68396f HandleCompatibilityKeyEvent + 331
    55  com.apple.HIToolbox               0x9a5bd9b2 HIApplication::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2716
    56  com.apple.HIToolbox               0x9a5c1c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    57  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    58  com.apple.HIToolbox               0x9a5c0d55 SendEventToEventTargetWithOptions + 58
    59  com.apple.HIToolbox               0x9a5f560b ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1957
    60  com.apple.HIToolbox               0x9a5c2080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    61  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    62  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    63  ...adobe.InDesign.AppFramework    0x1ddb72af 0x1ddb5000 + 8879
    64  ...adobe.InDesign.AppFramework    0x1ddd4750 GetPlugIn + 10840
    65  com.adobe.InDesign                0x0000277b main + 115
    66  com.adobe.InDesign                0x0000209e start + 258
    67  com.adobe.InDesign                0x00001fc5 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x93e03382 kevent + 10
    1   libSystem.B.dylib                 0x93e03a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x93e02f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x93e02cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x93e02781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x93e025c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x93ddcb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93e395a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore    0x96cbab90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    5   PMRuntime.dylib                   0x000129b3 GetAvailContiguous() + 165
    6   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    8   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x93ddcafa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ddd267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore    0x96d62ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    4   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x93ddcb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93e395a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x9297a8e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x929333b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x92933294 -[NSConditionLock lockWhenCondition:] + 69
    6   PublicLib.dylib                   0x0113f4e1 devtech_private::ZString::BackDoorGetUnicode(unsigned short*, unsigned long, bool) const + 397
    7   PublicLib.dylib                   0x01133f55 devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 2503
    8   PublicLib.dylib                   0x0113d0f8 devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 39786
    9   com.apple.Foundation              0x9293e4c4 -[NSThread main] + 45
    10  com.apple.Foundation              0x9293e474 __NSThread__main__ + 1499
    11  libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    12  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   TINthread.dylib                   0x242b77a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                   0x242b783f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   ...obe.InDesign.AdGrabber4.CS3    0x1dc2f2f5 XMLRecvThread::Run() + 111
    4   ...obe.InDesign.AdGrabber4.CS3    0x1dc2f311 XMLRecvThread::StartRoutine(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   ...obe.InDesign.AdGrabber4.CS3    0x1dc2e71e XMLSendThread::Run() + 240
    4   ...obe.InDesign.AdGrabber4.CS3    0x1dc2e735 XMLSendThread::StartRoutine(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x93ddcc0e mach_wait_until + 10
    1   libSystem.B.dylib                 0x93e64429 nanosleep + 345
    2   ...sign.Support for JavaScript    0x2767dc03 TerminateConnection + 238555
    3   ...sign.Support for JavaScript    0x2766f641 TerminateConnection + 179737
    4   ...sign.Support for JavaScript    0x2767dced TerminateConnection + 238789
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 15:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x93dfbac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x922e6c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    3   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000  ebx: 0x93ee6693  ecx: 0xbfffbd7c  edx: 0x93e3dc5a
    edi: 0xa0447b30  esi: 0x004d22b0  ebp: 0xbfffbd98  esp: 0xbfffbd7c
    ss: 0x00000023  efl: 0x00000282  eip: 0x93e3dc5a   cs: 0x0000000b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0xf94e6000
    Binary Images:
    0x1000 -     0x3fff +com.adobe.InDesign 5.0.4.682 (5040) <B1E85AB9-4BDB-4519-A7CB-818B7547B67B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    0x8000 -     0x8fff +InDesignModel ??? (???) <40D79185-3619-4F05-82AE-68B9A4386725> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
    0xc000 -     0xcfff +InDesignModelAndUI ??? (???) <B42DD96C-21E7-4933-8656-24339222F36B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
    0x10000 -    0x14fef +PMRuntime.dylib ??? (???) <2EA00C2F-B52A-4BA0-AC44-8661710844CB> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PMRuntime.dylib
    0x1a000 -   0x11afe7 +AdobeACE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x139000 -   0x5b7fff +AdobeAGM ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x70d000 -   0x74cfff +AdobeARE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x756000 -   0x76ffff +AdobeBIB ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x779000 -   0x79aff7 +AdobeBIBUtils ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x7a7000 -   0xa0cfc7 +AdobeCoolType ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0xa89000 -   0xda5fef +AdobeMPS ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0xe1c000 -   0xe89fef +ObjectModelLib.dylib ??? (???) <9B7EB1CF-F8AC-4DB2-A423-712DEFC1E70D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/ObjectModelLib.dylib
    0xeab000 -   0xedbfcf +DataBaseLib.dylib ??? (???) <21AF2E90-75EC-493D-8BFB-DB197B79CF9F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/DataBaseLib.dylib
    0xeea000 -  0x137aff8 +PublicLib.dylib ??? (???) <F49BE5C3-EFCF-4803-9181-882B579F568D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PublicLib.dylib
    0x1595000 -  0x15b9fea +AdobeAFL ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x15d5000 -  0x1684fd7 +AdobeSVGExport ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x16b7000 -  0x16bdfdf +com.adobe.AdobeCrashReporter 2.5 (2.5.03072007) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x16c3000 -  0x1f30fff +libicudata.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUData.framework/Versions/3.4/libicudata.dylib.34.0
    0x1f33000 -  0x1ff39fb +libicui18n.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.4/libicui18n.dyl ib.34.0
    0x207b000 -  0x2143387 +libicuuc.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.4/libicuuc.dylib.34.0
    0x2193000 -  0x220aff7 +libboost_regex-mt-1_33.dylib ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/libboost_regex-mt-1_33.dylib
    0x2264000 -  0x22abfc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x22b1000 -  0x22f1ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x230a000 -  0x2462ffd +WidgetBinLib.dylib ??? (???) <EEF2CA93-B6E3-449E-A963-893471395377> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/WidgetBinLib.dylib
    0x2570000 -  0x26dbff7 +AdobeOwl ??? (???) <4F473F2F-D9A9-41DF-94DF-F311FA16B720> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x27a5000 -  0x27a6fff +com.adobe.InDesign.Metadata Database Filter 5.0.0.458 (???) <CC8859BB-C15A-4709-B912-FD85C537F6EC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x27bf000 -  0x27c0fff +com.adobe.InDesign.Global Preferences Panel 5.0.0.458 (???) <693EF424-C046-4F46-B986-0F363C59468B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x27c5000 -  0x27c9fd8  com.apple.carbonframeworktemplate 1.1 (1.1.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x7538000 -  0x753fff2 +com.adobe.Writer for Text Writer for Text 4.2 (4.2.0.22) <2E03F227-3055-4409-93FF-A231BB4C3627> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Writers/Writer for Text.smwt/Contents/MacOS/Writer for Text
    0x75ee000 -  0x75f0ff7  com.apple.printingprivate.framework.PrintingPrivate 6.1 (15.2) <1A6E0614-420C-1E2B-43DA-722639B1FBCB> /System/Library/PrivateFrameworks/PrintingPrivate.framework/PrintingPrivate
    0x77e8000 -  0x77e9ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x77ee000 -  0x77fcfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <AFA4C3C8-D752-EC96-FF56-6E2F8ABB391B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1d4b9000 - 0x1d4cbff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <08801444-00D2-E55B-AE80-B807B99BB0C6> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1d508000 - 0x1d50fff3 +com.adobe.InDesign.Scripts Panel 5.0.0.458 (???) <E40BF92F-6275-4C9F-BF25-2016C5021CFD> /Applications/Adobe InDesign CS3/Plug-ins/Script/Scripts Panel.InDesignPlugin/Scripts Panel
    0x1d519000 - 0x1d52bff3 +com.adobe.InDesign.IME 5.0.4.682 (???) <95942223-32AD-44B1-A0B7-2DB2E0F2F62A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x1d573000 - 0x1d57bff3  com.apple.URLMount.AFPPlugin 3.2.2 (3.2.2) <46711A0E-D330-BD32-8B30-1FFE8B3346F0> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0x1d582000 - 0x1d588fff +com.adobe.InDesign.InCopySharedUI 5.0.0.458 (???) <322B8FCA-C43A-4B73-93EA-0B44B4B82640> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x1d590000 - 0x1d591fff +com.adobe.InDesign.Help 5.0.0.458 (???) <59C676A7-D46D-4BF8-A44B-5649E240AA35> /Applications/Adobe InDesign CS3/Plug-ins/UI/Help.InDesignPlugin/Help
    0x1d597000 - 0x1d599fff +com.adobe.InDesign.Username UI 5.0.0.458 (???) <7946FF7E-3349-498D-93F5-1F0D51D25707> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/Username UI.InDesignPlugin/Username UI
    0x1d5e2000 - 0x1d5efff2 +com.adobe.InDesign.PMWelcomeScreen 5.0.0.458 (???) <D235E4C3-BBCF-40A3-88B2-3E91C664269D> /Applications/Adobe InDesign CS3/Plug-ins/PMPack/PMWelcomeScreen.InDesignPlugin/PMWelcomeScreen
    0x1d700000 - 0x1d726fe2 +com.adobe.Writer for RTF Writer for RTF 4.2 (4.2.0.22) <1D5DAE82-ABDA-4125-B599-B7B4E1C5E078> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Writers/Writer for RTF.smwt/Contents/MacOS/Writer for RTF
    0x1d94f000 - 0x1d953ff7 +com.adobe.InDesign.Keeps Panel 5.0.0.458 (???) <CDB33F72-0447-42FE-81EC-D0799FB2CD6E> /Applications/Adobe InDesign CS3/Plug-ins/Text/Keeps Panel.InDesignPlugin/Keeps Panel
    0x1da2c000 - 0x1da32ff7 +com.adobe.InDesign.GenericSettings 5.0.0.458 (???) <0B8E02A0-5809-4DC7-B773-3F6B8B1B2048> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0x1da67000 - 0x1daaeff7  com.apple.AppleShareClientCore 2.1 (2.1) <351D93FA-D8AB-657F-2A67-9A6FF3875F82> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0x1daf1000 - 0x1daf6fff +com.adobe.InDesign.Workgroup UI 5.0.4.682 (???) <C8DDDEAF-ECBF-481B-9D50-391268443997> /Applications/Adobe InDesign CS3/Plug-ins/Workgroup/Workgroup UI.InDesignPlugin/Workgroup UI
    0x1dc00000 - 0x1dc4bfcb +com.adobe.InDesign.AdGrabber4.CS3 4.3.1.0 (???) <52DD0083-66C6-40E8-8B29-31BF345B13F4> /Applications/Adobe InDesign CS3/Plug-ins/Layout/AdGrabber4.CS3.InDesignPlugin/AdGrabber4.CS3
    0x1dd8b000 - 0x1dda6fff +com.adobe.InDesign.Plugin Manager 5.0.0.458 (???) <6D0D804D-2F29-46BC-BF82-ED25ABB6086B> /Applications/Adobe InDesign CS3/Plug-ins/Utility/Plugin Manager.InDesignPlugin/Plugin Manager
    0x1ddb5000 - 0x1dedafe3 +com.adobe.InDesign.AppFramework 5.0.4.682 (???) <9BBA0C9F-2C1E-4EF3-8C30-F7E761207844> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x1e0ae000 - 0x1e231ff3 +com.adobe.InDesign.Application UI 5.0.4.682 (???) <D3A0FBAC-3FEA-4E26-8166-356C6F14A154> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x1e2be000 - 0x1e343fff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) <EF6B3A34-C43A-45D3-BCD3-D7D450B5C6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1e37f000 - 0x1e3fbfef +AdobeScCore 3.7.0 (compatibility 3.7.0) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x1e439000 - 0x1e5b6ffb +com.adobe.InDesign.Text Walker 5.0.0.458 (???) <04A3777D-DC3E-4DB8-9B73-7848892730A1> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Walker.InDesignPlugin/Text Walker
    0x1e64d000 - 0x1e695ffb +com.adobe.InDesign.Linguistics 5.0.4.682 (???) <9F3AD4D7-56F2-4F48-BE09-F0D7D7701E09> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x1e6b8000 - 0x1e6e8fff +com.adobe.InDesign.Text Panel 5.0.0.458 (???) <4DDA3134-B6AC-45D0-B61E-DE2C1773E545> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Panel.InDesignPlugin/Text Panel
    0x1e6fa000 - 0x1e724fef +TextPanelLib.dylib ??? (???) <47B64D3E-4DAF-4EEA-A02F-A7A52601B6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/TextPanelLib.dylib
    0x1e747000 - 0x1e76efe3 +com.adobe.InDesign.Spelling Panel 5.0.0.458 (???) <56460421-FF84-45E6-92AA-43626E38B270> /Applications/Adobe InDesign CS3/Plug-ins/Text/Spelling Panel.InDesignPlugin/Spelling Panel
    0x1e780000 - 0x1e7f9ff3 +com.adobe.InDesign.Text Editor 5.0.0.458 (???) <7677E1F3-26C7-43BB-8655-B41C08310052> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0x1e818000 - 0x1e92cfe7 +com.adobe.InDesign.Layout UI 5.0.4.682 (???) <ED6DDA51-E1C3-4889-8938-6FD3A9184650> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x1e995000 - 0x1e9c1ff7 +com.adobe.InDesign.Import Export UI 5.0.0.458 (???) <0D90A717-9DF4-4DF0-9F1C-9EEA4889E11C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0x1e9dc000 - 0x1ea37ffb +com.adobe.InDesign.Hyperlinks 5.0.0.458 (???) <1359AA1D-E4EA-4BF7-8D8F-7BCA8AB2AB61> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0x1ea4b000 - 0x1ea8fffb +com.adobe.InDesign.Master Page 5.0.4.682 (???) <11214FFF-49DC-4479-BA70-B2BA83B481A0> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x1eaa0000 - 0x1eabdfef +com.adobe.InDesign.Utilities 5.0.4.682 (???) <D7455929-9796-4277-92C4-B12F2B6086AD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0x1ead2000 - 0x1eb73ffb +com.adobe.InDesign.Color Management 5.0.0.458 (???) <D0F8049B-EB18-44BC-AB25-22F1595F3247> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x1eb9e000 - 0x1ebd0feb +com.adobe.InDesign.Note 5.0.0.458 (???) <A274D200-D554-4003-84BF-365B89216A93> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/Note.InDesignPlugin/Note
    0x1ebe4000 - 0x1ebf2fff +com.adobe.InDesign.Workgroup Client 5.0.4.682 (???) <0B493720-F8EE-4141-A0CE-D4F0F982A0D4> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0x1ebf9000 - 0x1ebfaff7  ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x1ee00000 - 0x1ef09fff +com.adobe.InDesign.Document Framework 5.0.4.682 (???) <040E5EDC-859D-4EDD-A93E-EA845DBB7B52> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x1efae000 - 0x1f02102b +com.adobe.InDesign.Q2IDv3_CS3 v3.63 (???) <EFD32728-5C5A-46CA-9ECA-ED6722877595> /Applications/Adobe InDesign CS3/Plug-ins/Q2IDv3_CS3.InDesignPlugin/Q2IDv3_CS3
    0x1f0c9000 - 0x1f1c3feb +com.mediaspansoftware.IQue.Common 5.3.5 .0 (???) <2228137A-1B91-4170-A199-F509E3754920> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/Common.InDesignPlugin/Common
    0x1f2dc000 - 0x1f367ffb +com.mediaspansoftware.IQue.CommonUI 5.3.5 .0 (???) <15E9BCA7-E6CF-468B-8003-5978A927D17A> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/CommonUI.InDesignPlugin/CommonUI
    0x1f3eb000 - 0x1f5a7fff +com.adobe.InDesign.XML 5.0.4.682 (???) <2F368287-0EE5-4DD0-929E-85A450A08D26> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0x1f642000 - 0x1f713fef +AdobeAXEDOMCore ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1f745000 - 0x1f833fff +com.adobe.InDesign.XMedia UI 5.0.4.682 (???) <E526BDD4-BF57-4027-8635-FCEF8B5202A2> /Applications/Adobe InDesign CS3/Plug-ins/XMedia/XMedia UI.InDesignPlugin/XMedia UI
    0x1f899000 - 0x1f8faffb +com.adobe.InDesign.TableStylesUI 5.0.0.458 (???) <0E2577DB-0D37-450A-B63E-67BD3B36BD26> /Applications/Adobe InDesign CS3/Plug-ins/Tables/TableStylesUI.InDesignPlugin/TableStylesUI
    0x1f919000 - 0x1fad2ffc +com.adobe.InDesign.Table Model 5.0.0.458 (???) <E7338D64-7690-45CE-94B2-8CC508842208> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x1fb4b000 - 0x1fbd8fe7 +com.adobe.InDesign.Tables UI 5.0.0.458 (???) <20BE7B63-0947-45E7-BD3F-8E332E701D5F> /Applications/Adobe InDesign CS3/Plug-ins/Tables/Tables UI.InDesignPlugin/Tables UI
    0x1fbfb000 - 0x1fd0cff7 +com.adobe.InDesign.Galley 5.0.4.682 (???) <3B17EC29-231A-47CF-8E3C-9A4F786375FE> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0x1fd58000 - 0x1fddcfeb +com.adobe.InDesign.Graphics 5.0.4.682 (???) <CF9D21CB-F42F-4A94-AAE7-9F07101750C7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x1fdf8000 - 0x1fee3ff3 +com.adobe.InDesign.Transparency 5.0.4.682 (???) <BBDCCD4E-5129-4D9C-9AFA-0C32A1B64B7E> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0x1ff2c000 - 0x20bd3feb +com.adobe.psl 10.312765.46.313722 (10.312765.46.313722) <C0C4D40C-B84D-4740-BF61-35D5FBFC00FF> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x20ef2000 - 0x20f15ff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x20f1d000 - 0x20f72ffd +AdobeXMP ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x20fa1000 - 0x212adfcf +com.adobe.InDesign.Text 5.0.4.682 (???) <50295B31-CCBA-478D-A5C5-8702DAC13D7C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x21337000 - 0x21374ffb +com.adobe.InDesign.Text Wrap 5.0.4.682 (???) <32895FDE-AF63-49D2-9AA9-8E0B0F3B4B79> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x21386000 - 0x213c7fef +com.adobe.InDesign.Gradient Fill 5.0.0.458 (???) <F4F2DFF0-5C9D-49C4-A651-0F1F02A9428F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0x213da000 - 0x214eaffb +com.adobe.InDesign.Generic Page Item 5.0.4.682 (???) <31A42D7B-777B-4448-832C-68D4C6CD3F07> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x2151f000 - 0x2163afe3 +com.adobe.InDesign.Print 5.0.0.458 (???) <0C7F8380-7B66-4126-BD7A-B5E764C84833> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x21690000 - 0x216dffeb +com.adobe.InDesign.CJKGrid 5.0.4.682 (???) <C9BBE76F-7107-4CA3-B629-FC2E7BDB817D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0x216f3000 - 0x2172dfeb +com.adobe.InDesign.Stroke and Fill 5.0.0.458 (???) <8A29824D-3A5E-4A27-A588-D7D6935FD86D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x2173c000 - 0x2179bfff +com.adobe.InDesign.FormField 5.0.0.458 (???) <423AA6D9-1ACF-4819-8806-BA5B7343B7F3> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0x217c4000 - 0x217e3fe7 +com.adobe.InDesign.Find Change Format Panel 5.0.0.458 (???) <7671FB52-74A6-4DFF-B1BE-B54E1A8FB313> /Applications/Adobe InDesign CS3/Plug-ins/Text/Find Change Format Panel.InDesignPlugin/Find Change Format Panel
    0x217ee000 - 0x217f4fff +com.adobe.InDesign.Workgroup Client UI 5.0.4.682 (???) <6A4B63B8-6AC6-4432-85D4-0F9EDB61D1D7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0x21900000 - 0x21929fef +com.adobe.InDesign.Text Attributes 5.0.0.458 (???) <5EB4606D-80FD-49EF-A016-4B4F03C7BBC6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x2193d000 - 0x219e9fef +com.adobe.InDesign.Find and Change Panel 5.0.4.682 (???) <696E777E-A54B-4BF4-93D9-8B34E41D2B5E> /Applications/Adobe InDesign CS3/Plug-ins/Text/Find and Change Panel.InDesignPlugin/Find and Change Panel
    0x21a15000 - 0x21accfff +com.mediaspansoftware.IQue.ConnectionManagement 5.3.5 .0 (???) <DA6E45A6-C3D1-4D69-90A5-82DBB972C97B> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/ConnectionManagement.InDesignPlugin/ConnectionManagement
    0x21b69000 - 0x21b9bff7 +com.adobe.InDesign.AWSUI 5.0.0.458 (???) <C2460D67-B740-41E6-8C4C-CD97929F158F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0x21bb6000 - 0x21bffffb +com.adobe.InDesign.AWS 5.0.0.458 (???) <3CC41036-743E-4B6D-A6AB-743D69A85613> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x21c20000 - 0x22059ff7 +com.adobe.versioncue 3.1.0.0 (3.1.0.0) /Library/Application Support/Adobe/Adobe Version Cue CS3/Client/3.1.0/VersionCue.framework/VersionCue
    0x2214a000 - 0x22170fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <9203FADE-F4F2-2245-A32E-BD88819D314D> /usr/lib/libssl.0.9.7.dylib
    0x2217f000 - 0x22234fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2227a000 - 0x2228efff +com.adobe.InDesign.Rulers 5.0.4.682 (???) <F4DBA320-9CE5-429E-9457-27DF0E13441F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x222a0000 - 0x222be00f +com.adobe.InDesign.Workgroup 5.0.4.682 (???) <BF77FEB9-F4FA-479A-A5F2-324430200B80> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0x222c7000 - 0x22359ff7 +com.adobe.InDesign.InCopyWorkflow 5.0.0.458 (???) <6639A154-67A2-4BD0-A74C-C607BCF4DC0A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x2239b000 - 0x22450ff7 +com.adobe.InDesign.InCopyShared 5.0.4.682 (???) <84802C43-1148-40A9-8A9A-A4FF07C0A5FA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x22496000 - 0x224baff7 +com.adobe.InDesign.InCopy Bridge 5.0.4.682 (???) <48E731B3-86A4-4DD9-B8FA-C988F3EF956B> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopy Bridge.InDesignPlugin/InCopy Bridge
    0x224c6000 - 0x2257ffe1 +com.adobe.InDesign.Indexing 5.0.4.682 (???) <432E3821-DC6E-452B-A28C-A35C0957213F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x225b7000 - 0x225e6ffb +com.adobe.InDesign.Output Preview 5.0.4.682 (???) <62CB922C-0190-4CFE-9D39-4C01E47FB1AA> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Output Preview.InDesignPlugin/Output Preview
    0x225f7000 - 0x22656ffb +com.adobe.InDesign.Glyphs Panel 5.0.0.458 (???) <7E2FECBE-E228-4F60-B315-0A07EAB77612> /Applications/Adobe InDesign CS3/Plug-ins/Text/Glyphs Panel.InDesignPlugin/Glyphs Panel
    0x2266c000 - 0x226d0ff7 +com.adobe.InDesign.XMLParser 5.0.0.458 (???) <72EA1124-4504-4E5F-8C28-B470D381BA5D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0x22703000 - 0x22766fff +AdobeAXEParser ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXEParser.framework/Versions/A/AdobeAXEParser
    0x22782000 - 0x2283ffff +AdobeAXSLE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x2286e000 - 0x228c7fef +com.adobe.InDesign.CJK Text Attributes 5.0.0.458 (???) <DCE49BEA-5BE0-4156-BE7F-147494C71A5F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0x228e0000 - 0x22984feb +com.adobe.InDesign.Font Manager 5.0.4.682 (???) <08D1639E-9042-4F48-A705-DD394FB8D5FA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x22a1b000 - 0x22a1ffff +com.adobe.InDesign.InCopyWorkflow UI 5.0.0.458 (???) <6955319C-2E61-413B-A4BE-6F0D2583D10B> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyWorkflow UI.InDesignPlugin/InCopyWorkflow UI
    0x22a49000 - 0x22a4efef +com.adobe.InDesign.General Preferences Panel 5.0.0.458 (???) <97415234-1B28-4D38-8A96-E19DDDF95DE6> /Applications/Adobe InDesign CS3/Plug-ins/UI/General Preferences Panel.InDesignPlugin/General Preferences Panel
    0x22a57000 - 0x22a57ff7  com.apple.applescript.component 2.1.2 (2.1.2) <C753B747-FBB7-EF99-32C9-133CA88FD5C4> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x22a75000 - 0x22a85fff +com.adobe.InDesign.Guides 5.0.4.682 (???) <18406BEE-7811-4A41-8341-18D7CDDB9AF1> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0x22aa2000 - 0x22aa2ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x22aed000 - 0x22af3feb +com.adobe.InDesign.Text Color Panel 5.0.0.458 (???) <072591AA-A2E0-44CA-8982-056229E9598A> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Color Panel.InDesignPlugin/Text Color Panel
    0x22af8000 - 0x22afafff +com.adobe.InDesign.SimpleTextImportFilter 5.0.0.458 (???) <AFC35B5D-6977-498F-A6C0-7378C24ADC69> /Applications/Adobe InDesign CS3/Plug-ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter
    0x22b00000 - 0x22b10fff +com.adobe.InDesign.SING 5.0.0.458 (???) <101E0AF3-FCAF-4902-8E7E-331A176E61DD> /Applications/Adobe InDesign CS3/Plug-ins/Text/SING.InDesignPlugin/SING
    0x22b19000 - 0x22b73fe7 +com.adobe.SING.bundle 11.4.0 (11.4.0) <B4FBAE4D-E332-4E95-821E-C7E39BFDEE50> /Library/Application Support/Adobe/SING/SING.bundle/Contents/MacOS/SING
    0x22c8f000 - 0x22c98fff +com.adobe.InDesign.Paragraph Rules Panel 5.0.0.458 (???) <C3BD8CD8-9B50-4241-9499-56BEE7C8C8A5> /Applications/Adobe InDesign CS3/Plug-ins/Text/Paragraph Rules Panel.InDesignPlugin/Paragraph Rules Panel
    0x22ca2000 - 0x22caefe7 +com.adobe.InDesign.RunIn Styles Panel 5.0.0.458 (???) <DBEE6188-6AF7-4366-A800-77D5CC719BEE> /Applications/Adobe InDesign CS3/Plug-ins/Text/RunIn Styles Panel.InDesignPlugin/RunIn Styles Panel
    0x22cd2000 - 0x22cd7fef +com.adobe.InDesign.Document UI 5.0.4.682 (???) <8218D4C1-12B5-4656-89EB-9BEC5CBA3C09> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0x22d2a000 - 0x22d3efef +com.adobe.InDesign.Document Actions 5.0.0.458 (???) <495400EB-B390-4A66-9B6D-81C0A841058F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0x22d48000 - 0x22d61ff3 +com.adobe.InDesign.Optical Kerning 5.0.0.458 (???) <B0780089-D891-4294-9881-8237BB949911> /Applications/Adobe InDesign CS3/Plug-ins/Text/Optical Kerning.InDesignPlugin/Optical Kerning
    0x22d6a000 - 0x22d7eff3 +com.adobe.InDesign.Text Frame Options 5.0.0.458 (???) <EA8842D0-DABF-4980-83C4-4507A204C3D8> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Frame Options.InDesignPlugin/Text Frame Options
    0x22d93000 - 0x22d9afeb +com.adobe.InDesign.Tool Tips 5.0.0.458 (???) <4B227DB1-BCC1-4A6C-A703-CE507D59F6BF> /Applications/Adobe InDesign CS3/Plug-ins/UI/Tool Tips.InDesignPlugin/Tool Tips
    0x22e17000 - 0x22e1cfef +com.adobe.InDesign.Hyphenation Panel 5.0.0.458 (???) <A18BA408-B78C-41C7-966E-F000F8F6F914> /Applications/Adobe InDesign CS3/Plug-ins/Text/Hyphenation Panel.InDesignPlugin/Hyphenation Panel
    0x22e25000 - 0x22e28fff +com.adobe.InDesign.PNG Import Filter UI 5.0.0.458 (???) <219F77F4-FB2C-4967-9D25-60C4198DB153> /Applications/Adobe InDesign CS3/Plug-ins/Filters/PNG Import Filter UI.InDesignPlugin/PNG Import Filter UI
    0x22e2d000 - 0x22e31fff +com.adobe.InDesign.StepRepeat 5.0.4.682 (???) <C3EE7F06-93EB-45A8-A35B-461C2DA03F11> /Applications/Adobe InDesign CS3/Plug-ins/Layout/StepRepeat.InDesignPlugin/StepRepeat
    0x22e43000 - 0x22e4bffc +PathTypeLib.dylib ??? (???) <18C15E31-C72D-4EEA-8452-2444772CFC43> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PathTypeLib.dylib
    0x22e52000 - 0x22e54fe7 +com.adobe.InDesign.Layout Adjustment Panel 5.0.0.458 (???) <0051EC6E-8721-4CCE-9EE7-183BE332A566> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Layout Adjustment Panel.InDesignPlugin/Layout Adjustment Panel
    0x22ecb000 - 0x22f16fdf +com.adobe.InDesign.Actions 5.0.0.458 (???) <6B80AA4C-EFB8-4E46-BA47-1E14791702F7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0x22f32000 - 0x22f6bfef +com.adobe.InDesign.CompFontMgr 5.0.4.682 (???) <9514C67C-86A5-418A-811A-E4FA10F0FA65> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0x22f7d000 - 0x22f8efff +com.adobe.InDesign.Shortcut Editor Dialog 5.0.0.458 (???) <FD95270C-FF81-4FF6-BE64-10ADAE2ED53F> /Applications/Adobe InDesign CS3/Plug-ins/UI/Shortcut Editor Dialog.InDesignPlugin/Shortcut Editor Dialog
    0x2304b000 - 0x2305bfff +com.adobe.InDesign.Create Outlines 5.0.0.458 (???) <C7D6CA71-EF03-4A40-8E3A-C3123E8335B7> /Applications/Adobe InDesign CS3/Plug-ins/Text/Create Outlines.InDesignPlugin/Create Outlines
    0x23063000 - 0x2306800e +com.adobe.InDesign.InCopyImport 5.0.0.458 (???) <DB270045-C915-4D59-96DE-22BDAE988898> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyImport.InDesignPlugin/InCopyImport
    0x2306d000 - 0x23080fff +com.adobe.AdobeSFL AdobeSFL 1.1 (1.1.0.12) <9A014AEE-FC48-4000-A00C-EB2C6FD72795> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x23087000 - 0x23093fe3 +com.adobe.epic adobe_eula 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x2309a000 - 0x2309ffff +com.adobe.InDesign.Create Guides Dialog 5.0.0.458 (???) <729142B6-15CB-4EEA-8733-F6FA07B99EF2> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Create Guides Dialog.InDesignPlugin/Create Guides Dialog
    0x230ba000 - 0x23152fff  com.apple.applescript 2.1.2 (2.1.2) <E4A816FB-C4A5-DE64-963B-3DCF031124CF> /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x23181000 - 0x231a4fe3 +PMFileReader.dylib ??? (???) <D1DB58A4-61B8-42AA-8211-D7BD076E9985> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PMFileReader.dylib
    0x232e1000 - 0x232f801f +com.adobe.InDesign.Font Usage Dialog 5.0.0.458 (???) <C10CFFAE-C33D-4F8A-A174-9334C975953A> /Applications/Adobe InDesign CS3/Plug-ins/Text/Font Usage Dialog.InDesignPlugin/Font Usage Dialog
    0x23303000 - 0x2332afef +com.adobe.InDesign.Open Place 5.0.4.682 (???) <0B0F2BF1-58D4-4D52-9DE1-6058F50312D7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x2333e000 - 0x2335bfff +com.adobe.InDesign.Media 5.0.0.458 (???) <171C2E82-1AB9-40C8-8BBA-13C6FFEBAA8A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x23365000 - 0x233aefc3 +com.adobe.InDesign.Image Filters 5.0.4.682 (???) <AEBAE635-E10B-410D-8A51-6C516B52AB29> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0x233b6000 - 0x233d6ffb +com.adobe.InDesign.Dialog Layout 5.0.0.458 (???) <4B8B24B4-5CD3-44C7-9131-EBDF292A07BC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0x235ed000 - 0x2362dff6 +com.adobe.Reader for DOCX Reader for DOCX 4.2 (4.2.0.22) <417CBE16-9D3B-4F28-846D-9FF55AF1A167> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Readers/Reader For DOCX.smrd/Contents/MacOS/Reader for DOCX
    0x23654000 - 0x23689fd3 +com.adobe.epic adobe_epic 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x23696000 - 0x2369afeb +com.adobe.InDesign.InCopyExport 5.0.0.458 (???) <0F2363BB-C116-4132-B79D-71FC78AA140C> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyExport.InDesignPlugin/InCopyExport
    0x236a5000 - 0x236e3feb +com.adobe.InDesign.Asset PubLibrary 5.0.0.458 (???) <5AC83352-A68B-4D23-BA8B-2758AD4994B6> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Asset PubLibrary.InDesignPlugin/Asset PubLibrary
    0x236f7000 - 0x2371dff7 +com.adobe.InDesign.Asset Library Panel 5.0.0.458 (???) <CBE05090-A4BD-47A4-BC63-A5E8DF5EA954> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Asset Library Panel.InDesignPlugin/Asset Library Panel
    0x23733000 - 0x23793fff +com.adobe.InDesign.BNCore 5.0.0.458 (???) <F425FD82-7BBA-45E4-90F8-61DB5F5A91A9> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0x237a9000 - 0x237d2ff3 +com.adobe.InDesign.Behavior 5.0.0.458 (???) <895A9202-2E6A-43CC-BAF3-D814F261695C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0x237e8000 - 0x23876fef +com.adobe.InDesign.Links 5.0.4.682 (???) <5BF41706-8660-4576-A934-2096524D2170> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x238a9000 - 0x2397fffb +com.adobe.InDesign.Image 5.0.4.682 (???) <15D37B1F-4D81-4C04-97AF-E9879E65B5D6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x239c4000 - 0x23a30fff +com.adobe.InDesign.DataMerge 5.0.4.682 (???) <EB322839-ED37-4A26-940F-6B6751560452> /Applications/Adobe InDesign CS3/Plug-ins/PMPack/DataMerge.InDesignPlugin/DataMerge
    0x23a5a000 - 0x23a90fff +com.adobe.InDesign.TOC 5.0.4.682 (???) <8A7681FF-6382-4798-A3AE-D47F7283889D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0x23a9d000 - 0x23abeffb +com.adobe.InDesign.CellStyles.rpln 5.0.0.458 (???) <0BE3E0A6-0ED8-489C-B886-C4C9F8AFD184> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0x23acb000 - 0x23b01ff0 +com.adobe.InDesign.Spline 5.0.0.458 (???) <375E9524-DCC7-4261-8602-796322796346> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x23b1a000 - 0x23b43fff +com.adobe.InDesign.Path Type 5.0.0.458 (???) <AD456B86-9F34-4347-BE93-F6071C1CD914> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x23b54000 - 0x23babffe +com.adobe.InDesign.Knowledge Base 5.0.0.458 (???) <A9DD1BD0-11E0-4BE0-BF4E-A7CFD6EDE2C8> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Knowledge Base.InDesignPlugin/Knowledge Base
    0x23bc0000 - 0x23bd1fff +com.adobe.InDesign.Layout Adjustment 5.0.0.458 (???) <5AFF3870-C739-4809-AC10-698FA2F8A477> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Layout Adjustment.InDesignPlugin/Layout Adjustment
    0x23bda000 - 0x23beffff +com.adobe.InDesign.Layout 5.0.4.682 (???) <76EBF691-957F-4F01-86C6-61C6DCC37FAD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x23bf9000 - 0x23c85fef +com.adobe.InDesign.Spread 5.0.4.682 (???) <8F2DEAAC-A318-4C4D-929F-41B2383FE0AA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x23ca2000 - 0x23ca8fe7 +com.adobe.InDesign.Generic Style Editor 5.0.0.458 (???) <9F984289-52ED-4391-B49D-AA1A14FD69E4> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Generic Style Editor.InDesignPlugin/Generic Style Editor
    0x23cb1000 - 0x23d27fe2 +com.adobe.AdobeSangamML AdobeSangamML 4.2 (4.2.0.22) <691FF418-D0ED-4C02-AFB7-7DE876558E75> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x23d63000 - 0x23d71fc5 +com.adobe.epic adobe_personalization 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_personalization.framework/adobe_personalization
    0x23d78000 - 0x23d85ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/asneu.framework/asneu
    0x23da9000 - 0x23db2feb +com.adobe.InDesign.Text Editor Model 5.0.0.458 (???) <58F9DD41-B1CA-4370-BF3C-AA70E0C38A43> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x23db9000 - 0x23de7fff +com.adobe.InDesign.Snippet 5.0.4.682 (???) <A1B87032-37C2-4CDB-86C9-439CB74E8456> /Applications/Adobe InDesign CS3/Plug-ins/XMedia/Snippet.InDesignPlugin/Snippet
    0x23df5000 - 0x23e0fff3 +com.adobe.InDesign.Galley Preferences 5.0.0.458 (???) <04484DC8-FF4B-40CB-8841-B42A76CF3BF5> /Applications/Adobe InDesign CS3/Plug-ins/UI/Galley Preferences.InDesignPlugin/Galley Preferences
    0x23e1f000 - 0x23e2cff2 +com.adobe.InDesign.Scotch Rules 5.0.0.458 (???) <07E253C0-4878-4CFD-8C7E-E57435DBAAFB> /Applications/Adobe InDesign CS3/Plug-ins/Page Item/Scotch Rules.InDesignPlugin/Scotch Rules
    0x23e33000 - 0x23e44ff3 +com.adobe.InDesign.Image Import UI 5.0.0.458 (???) <A06818D0-6F36-49A8-A92F-FDCD3321C466> /Applications/Adobe InDesign CS3/Plug-ins/Page Item/Image Import UI.InDesignPlugin/Image Import UI
    0x23e4f000 - 0x23e53fff +com.adobe.InDesign.InCopyExportUI 5.0.0.458 (???) <77C291BC-EF06-43EB-827C-50769B3C3890> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyExportUI.InDesignPlugin/InCopyExportUI
    0x23e5f000 - 0x23e7bfef +com.adobe.InDesign.LILO 5.0.4.682 (???) <78F2D2A3-E21E-45A2-8674-5669CABBE6E0> /Applications/Adobe InDesign CS3/Plug-ins/Dictionaries/LILO/LILO.InDesignPlugin/LILO
    0x23e88000 - 0x23f13fdf +com.adobe.linguistic.LinguisticManager 3.1.3 (3.1.3.5196) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x23f33000 - 0x23f7afe3 +com.adobe.InDesign.Scripting 5.0.0.458 (???) <1C747E70-9A78-45B1-8584-D10BFD3D697D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x23f8b000 - 0x24029fef +com.adobe.InDesign.PrintUI 5.0.0.458 (???) <B9E289D4-F24D-4215-8F37-EED83FCC42A9> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/PrintUI.InDesignPlugin/PrintUI
    0x2405f000 - 0x240a6fef +com.adobe.InDesign.Color Picker Panel 5.0.0.458 (???) <9E669EF1-81DB-4240-B92C-764C2FBA1A58> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Color Picker Panel.InDesignPlugin/Color Picker Panel
    0x240bf000 - 0x2411cff7 +com.adobe.InDesign.Swatches Panel 5.0.0.458 (???) <56EBE10D-2DC0-4FA7-B070-286D676158B0> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Swatches Panel.InDesignPlugin/Swatches Panel
    0x24139000 - 0x24146fff +com.adobe.InDesign.Text Style Panel 5.0.0.458 (???) <F6F81FD7-63CA-4FB2-90B4-EC9E5BEE2177> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Style Panel.InDesignPlugin/Text Style Panel
    0x2414e000 - 0x24157fef +com.adobe.InDesign.PS Import UI 5.0.0.458 (???) <16038163-C648-4332-8CC6-02C31913BAAD> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/PS Import UI.InDesignPlugin/PS Import UI
    0x2429c000 - 0x242aefff +com.adobe.InDesign.Swatch Library Panel 5.0.0.458 (???) <EEE63A20-73E7-430E-BF01-86BE03DA7B6B> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Swatch Library Panel.InDesignPlugin/Swatch Library Panel
    0x242b6000 - 0x242b9fff +TINthread.dylib ??? (???) /Library/Application Support/Adobe/SING/TINthread.dylib
    0x242c0000 - 0x24324fff +com.adobe.Reader for Excel Reader for Excel 4.2 (4.2.0.22) <310C8E2F-2D48-4F97-98CE-E9FB28145370> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Readers/Reader for Excel.smrd/Contents/MacOS/Reader for Excel
    0x2434a000 - 0x2435afe7 +com.adobe.epic adobe_registration 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_registration.framework/adobe_registration
    0x243fe000 - 0x24456ff2 +com.adobe.ESD.AdobeUpdaterLibFramework AdobeUpdater 5.1.0.1082 (5.1.0.1082) <CA913CDD-FA7B-4435-8BEB-052BB879AED6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeUpdater.framework/AdobeUpdater
    0x2446e000 - 0x2449cffb +com.adobe.InDesign.Photoshop Import Filter 5.0.4.682 (???) <E96030C1-3305-4E49-9A09-34B8A7B25EC8> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x244b0000 - 0x244c1fc7 +com.adobe.InDesign.InCopy Bridge UI 5.0.0.458 (???) <2F896ACD-EEA3-4CB2-95C5-AF85352EF339> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopy Bridge UI.InDesignPlugin/InCopy Bridge UI
    0x2470f000 - 0x2476effb +com.adobe.InDesign.Transparency UI 5.0.0.458 (???) <4AE9180A-FF7A-4B57-9201-A456B7EF89B2> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Transparency UI.InDesignPlugin/Transparency UI
    0x2478e000 - 0x247c7fff +com.adobe.InDesign.Style Panel 5.0.0.458 (???) <CBFB03D6-5E53-46FA-BB0D-9E7AA49727A1> /Applications/Adobe InDesign CS3/Plug-ins/Text/Style Panel.InDesignPlugin/Style Panel
    0x247e1000 - 0x247f0fff +com.adobe.InDesign.Bookmark Panel 5.0.0.458 (???) <7C19089F-6F87-44A8-AAAC-48BFE95E8340> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Bookmark Panel.InDesignPlugin/Bookmark Panel
    0x24a00000 - 0x24b31feb +com.mediaspansoftware.IQue.DragInUI 5.3.5 .0 (???) <CD2AAFBF-9B99-4E74-913C-D44303C20B33> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/DragInUI.InDesignPlugin/DragInUI
    0x24c7c000 - 0x24cbdff3 +com.adobe.InDesign.Graphic Panels 5.0.0.458 (???) <ADC596C1-A326-4D9F-A330-B17892050B98> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Graphic Panels.InDesignPlugin/Graphic Panels
    0x24cd5000 - 0x24ce1fef +com.adobe.InDesign.OutputMiscUI 5.0.0.458 (???) <BB613486-4008-40E8-99C3-5BDB31A02392> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/OutputMiscUI.InDesignPlugin/OutputMiscUI
    0x24ced000 - 0x24cf5fff +com.adobe.InDesi

    Thanks Peter,
    One last question.  Will reinstall on top of itself overite any preferences or third party plugins?
    Thanks again for your help.  This issue has been very random and has not led me to an actual issue to fix.  We can have a could days good, and then we have a night or two where it crashes all night for different reasons with no consistancy or patterns to follow.

  • How to access indesign cs3 document through VC++

    Hello
    i am new to VC++, i need to communiacte Indesign CS3 through VC++, for this what can i do? inorder to access indesign docuemnts,
    i also need to access a Third party API for CS3 through VC++, for the two puproses, i dont have any idea, so
    kindly help me
    with regards,
    ram

    Hi ram<br /><br />As Olav has pointed out, you need to decide whether to use COM or SDK.<br /><br />SDK is hard core - and I really mean HARD CORE. I consider myself to be a reasonably good VC++ programmer, but when I tried to develop an InDesign plug-in using SDK and VC++ I was completely lost.<br /><br />However it is possible to use VC++ to control InDesign via the COM object.<br /><br />Here is what you should do:<br /><br />1) Make a new VC++ project (MFC, MFC Application)<br />2) In Wizard dialog select Dialog Based and leave everything else unchanged (simply press Next)<br />3) You now have a simple empty dialog with 2 buttons<br />4) Double-click the OK button<br />5) Insert the following code (before OnOK()):<br /><br />// COM support required for this<br />//  Call CoInitialize() to initialize the COM library on the current thread<br />if(::CoInitialize(NULL) != S_OK) return;<br /><br />// Create instance of InDesign Application<br />InDesign::_ApplicationPtr app;<br />// Use the appropriate version here<br />//  This string will be used to search the registry for the application<br />//  associated with it and the same is invoked. <br />//  If you have different builds of the same version and you want to work<br />//  with a specific build, call CreateProcess() for that build and then<br />//  call CreateInstance() so that the currently running instance is returned.<br />app.CreateInstance(L"InDesign.Application.CS3");<br /><br />// Open existing document<br />InDesign::DocumentPtr doc = app->Open("C:\\InDesign\\myDocument.indd", true);<br />InDesign::PagePtr page = doc->Pages->FirstItem();<br />InDesign::TextFramePtr textFrame = doc->TextFrames->FirstItem();<br />textFrame->Contents = "Hello world";<br /><br />6) Go to the start of the file<br />7) Insert the following code before // CAboutDlg dialog used for App About<br /><br />// Required for calling COM initialization methods<br />#include <objbase.h><br /><br />// Import InDesign's Type Library<br />#import "C:\Documents and Settings\All Users\Application Data\Adobe\InDesign\Version 5.0\Scripting Support\5.0\Resources for Visual Basic.tlb"<br /><br />8} Build and run the project (F5). When you press OK, InDesign should launch, open your document, find the first page, find the first TextFrame and replace the text (contents) with "Hello world"<br /><br />How to get in contact with your third-party API is a completely different ball game (not in the scope of this forum), but at least you now have a VC++ project with header files etc.<br /><br />If your third-party API is indeed an InDesign plug-in, I totally agree with Olav that you have to direct your questions to the SDK forum.<br /><br />Best regards,<br />Bo

  • InDesign CS3 crashes on certain commands

    I have Indesign Cs3. It was doing strange things so refreshed my preferences which solved the issue.
    Since then, I cannot create a pdf from a new document, it crashes. But I can from a document created prior to the preferences refresh.
    It also crashes when I do the find and change command?
    If anyone has any ideas it would be much appreciated. Thanks

    Thanks Peter but still having the same issue.
    Crash report below, if you or anyone can let me know if there is anything I can do from this?
    Thanks
    Identifier: 
    com.adobe.InDesign
    Version:    
    5.0.3.662 (5030)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [136]
    User ID:    
    502
    Date/Time:  
    2013-06-07 11:15:04.591 +0100
    OS Version: 
    Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:     
    73619 sec
    Crashes Since Last Report:      
    25
    Per-App Interval Since Last Report:  10541 sec
    Per-App Crashes Since Last Report:   25
    Anonymous UUID:                 
    7D109B11-263A-3C52-46C4-0D054699313E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    __TEXT            
    0000000000001000-0000000000004000 [   12K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign.Find and Change Panel
    0x0fe0d54f GetPlugIn + 367961
    1   com.adobe.InDesign.Find and Change Panel
    0x0fe0d5d2 GetPlugIn + 368092
    2   com.adobe.InDesign.Find and Change Panel
    0x0fe24141 0xfd85000 + 651585
    3   com.adobe.InDesign.Find and Change Panel
    0x0fe0ddf8 GetPlugIn + 370178
    4   com.adobe.InDesign.Find and Change Panel
    0x0fddec33 GetPlugIn + 177213
    5   WidgetBinLib.dylib       
    0x0232421b CDialogController::InitializeDialog(IActiveContext*) + 61
    6   com.adobe.InDesign.Widgets
    0x14acdd4e 0x14ac8000 + 23886
    7   com.adobe.InDesign.Widgets
    0x14acc43a 0x14ac8000 + 17466
    8   com.adobe.InDesign.Find and Change Panel
    0x0fd8ba66 0xfd85000 + 27238
    9   WidgetBinLib.dylib       
    0x0239e23c CActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 34
    10  com.adobe.InDesign.Actions
    0x106cb867 GetPlugIn + 5787
    11  com.adobe.InDesign.Actions
    0x106c095b 0x106be000 + 10587
    12  WidgetBinLib.dylib       
    0x0239c1bf MDefaultEH::KeyboardShortcut(IEvent*) + 473
    13  WidgetBinLib.dylib       
    0x0239ba46 CDefaultEH::KeyDown(IEvent*) + 150
    14  WidgetBinLib.dylib       
    0x0239bfca MDefaultEH::KeyDown(IEvent*) + 162
    15  PublicLib.dylib          
    0x00f25ad5 CEventDispatcher::DispatchToEventHandlers(IEvent*) + 157
    16  PublicLib.dylib          
    0x00f25724 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    17  com.adobe.InDesign.Application UI
    0x10915fe5 GetPlugIn + 196289
    18  com.adobe.InDesign.Application UI
    0x109144ab GetPlugIn + 189319
    19  com.apple.HIToolbox      
    0x905519bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    20  com.apple.HIToolbox      
    0x903d9394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    21  com.apple.HIToolbox      
    0x903d8780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    22  com.apple.HIToolbox      
    0x903ec655 SendEventToEventTarget + 88
    23  com.apple.HIToolbox      
    0x9040c6c2 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2392
    24  com.apple.HIToolbox      
    0x903d983f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    25  com.apple.HIToolbox      
    0x903d8780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    26  com.apple.HIToolbox      
    0x903ec655 SendEventToEventTarget + 88
    27  com.apple.HIToolbox      
    0x903cde77 SendTSMEvent + 75
    28  com.apple.HIToolbox      
    0x903cd90b SendUnicodeTextAEToUnicodeDoc + 745
    29  com.apple.HIToolbox      
    0x903cd504 TSMKeyEvent + 980
    30  com.apple.HIToolbox      
    0x9041cff5 TSMProcessRawKeyEvent + 3102
    31  com.apple.HIToolbox      
    0x9045dd15 HandleCompatibilityKeyEvent + 323
    32  com.apple.HIToolbox      
    0x903d58ba HIApplication::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 7318
    33  com.apple.HIToolbox      
    0x905519bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    34  com.apple.HIToolbox      
    0x903d9394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    35  com.apple.HIToolbox      
    0x903d8780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    36  com.apple.HIToolbox      
    0x903d85ca SendEventToEventTargetWithOptions + 94
    37  com.apple.HIToolbox      
    0x9040c19c ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1074
    38  com.apple.HIToolbox      
    0x903d983f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    39  com.apple.HIToolbox      
    0x903d8780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    40  com.apple.HIToolbox      
    0x903ec655 SendEventToEventTarget + 88
    41  com.adobe.InDesign.AppFramework
    0x107272af 0x10725000 + 8879
    42  com.adobe.InDesign.AppFramework
    0x10744750 GetPlugIn + 10840
    43  com.adobe.InDesign       
    0x0000277b main + 115
    44  com.adobe.InDesign       
    0x0000209e start + 258
    45  com.adobe.InDesign       
    0x00001fc5 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9a7489ae kevent + 10
    1   libdispatch.dylib        
    0x9686bc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib        
    0x9686b7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f12e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x962f1572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore
    0x91b836ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore
    0x91acfb8b MPWaitOnQueue + 261
    5   PMRuntime.dylib          
    0x000129b3 GetAvailContiguous() + 165
    6   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    7   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    8   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib   
    0x9a7457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9a744cb0 mach_msg + 68
    2   com.apple.CoreServices.CarbonCore
    0x91b8035b TS_exception_listener_thread + 89
    3   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    4   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f1280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x96377095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x91b83492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x91b8368e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x91acfb8b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0004a743 0x1a000 + 198467
    7   AdobeACE                 
    0x00049f71 0x1a000 + 196465
    8   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    10  libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f1280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x96377095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x91b83492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x91b8368e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x91acfb8b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0004a743 0x1a000 + 198467
    7   AdobeACE                 
    0x00049f71 0x1a000 + 196465
    8   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    10  libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f1280 _pthread_cond_wait + 833
    2   libsystem_c.dylib        
    0x96377095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x91b83492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x91b8368e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore
    0x91acfb8b MPWaitOnQueue + 261
    6   AdobeACE                 
    0x0004a743 0x1a000 + 198467
    7   AdobeACE                 
    0x00049f71 0x1a000 + 196465
    8   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    10  libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f12e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x962f1572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation     
    0x96c7a9b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation     
    0x96c7a7dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation     
    0x96c7fd10 -[NSConditionLock lockWhenCondition:] + 69
    6   PublicLib.dylib          
    0x0113f4e9 devtech_private::ZString::BackDoorGetUnicode(unsigned short*, unsigned long, bool) const + 397
    7   PublicLib.dylib          
    0x01133f5d devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 2503
    8   PublicLib.dylib          
    0x0113d100 devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 39786
    9   com.apple.Foundation     
    0x96c4c7c8 -[NSThread main] + 45
    10  com.apple.Foundation     
    0x96c4c74b __NSThread__main__ + 1396
    11  libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    12  libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x9a7478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x962f12e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib        
    0x9637eaf0 pthread_cond_wait + 48
    3   TINthread.dylib          
    0x152eb7a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib          
    0x152eb83f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    6   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x9a7458e6 mach_wait_until + 10
    1   libsystem_c.dylib        
    0x9637dc10 nanosleep + 375
    2   com.adobe.InDesign.Support for JavaScript
    0x1416fbff TerminateConnection + 238555
    3   com.adobe.InDesign.Support for JavaScript
    0x1416163d TerminateConnection + 179737
    4   com.adobe.InDesign.Support for JavaScript
    0x1416fce9 TerminateConnection + 238789
    5   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    6   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x9a745826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x91b56810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x22cad06b ThreadFunction(void*) + 77
    3   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    5   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x9a745826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x91b56810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x22cad06b ThreadFunction(void*) + 77
    3   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    5   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x9a745826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x91b56810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support   
    0x22cad06b ThreadFunction(void*) + 77
    3   com.apple.CoreServices.CarbonCore
    0x91b56a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib        
    0x962ec5b7 _pthread_start + 344
    5   libsystem_c.dylib        
    0x962d6d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x9a7480ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x962ef0ac _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x962eee79 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x962d6d2a start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib   
    0x9a7480ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x962ef0ac _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x962eee79 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x962d6d2a start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib   
    0x9a7480ee __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x962ef0ac _pthread_workq_return + 45
    2   libsystem_c.dylib        
    0x962eee79 _pthread_wqthread + 448
    3   libsystem_c.dylib        
    0x962d6d2a start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000014  ebx: 0x0fe0d90f  ecx: 0x000001c4  edx: 0x00000000
      edi: 0x00000000  esi: 0x02e9d070  ebp: 0xbfffd4d8  esp: 0xbfffd440
       ss: 0x00000023  efl: 0x00010286  eip: 0x0fe0d54f   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
    0x1000 -
    0x3fff +com.adobe.InDesign (5.0.3.662 - 5030) <934558B7-7DB8-45BB-9493-E5EA9E80FAEE> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    0x8000 -
    0x8fff +InDesignModel (0) <40D79185-3619-4F05-82AE-68B9A4386725> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
    0xc000 -
    0xcfff +InDesignModelAndUI (0) <B42DD96C-21E7-4933-8656-24339222F36B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x10000 -
    0x14fef +PMRuntime.dylib (1) <8456288B-55CD-4156-9E22-0526003C0A83> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PMRuntime.dylib
       0x1a000 -   0x11afe7 +AdobeACE (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x139000 -   0x5b7fff +AdobeAGM (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x70d000 -   0x74cfff +AdobeARE (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x756000 -   0x76ffff +AdobeBIB (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x779000 -   0x79aff7 +AdobeBIBUtils (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x7a7000 -   0xa0cfc7 +AdobeCoolType (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xa89000 -   0xda5fef +AdobeMPS (1) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
      0xe1c000 -   0xe89fef +ObjectModelLib.dylib (1) <05CB4C4E-A973-45B8-84FA-287F24A2C4DA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/ObjectModelLib.dylib
      0xeab000 -   0xedbfcf +DataBaseLib.dylib (1) <E9E5BDCB-F6EB-4ACA-878A-87EF825ECB5B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/DataBaseLib.dylib
      0xeea000 -  0x137aff8 +PublicLib.dylib (1) <C5C5E7DF-4322-4C2D-BAF6-D8E00AA1C7E4> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PublicLib.dylib
    0x1595000 -  0x15b9fea +AdobeAFL (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x15d5000 -  0x1684fd7 +AdobeSVGExport (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x16b7000 -  0x16bdfdf +com.adobe.AdobeCrashReporter (2.5 - 2.5.03072007) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x16c3000 -  0x1f30fff +libicudata.dylib.34.0 (34) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUData.framework/Versions/3.4/libicudata.dylib.34.0
    0x1f33000 -  0x1ff39fb +libicui18n.dylib.34.0 (34) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.4/libicui18n.dyl ib.34.0
    0x207b000 -  0x2143387 +libicuuc.dylib.34.0 (34) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.4/libicuuc.dylib.34.0
    0x2193000 -  0x220aff7 +libboost_regex-mt-1_33.dylib (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/libboost_regex-mt-1_33.dylib
    0x2264000 -  0x22abfc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x22b1000 -  0x22edff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2307000 -  0x245fffd +WidgetBinLib.dylib (1) <5CE6C3B2-C5A5-4894-B72A-EB711B9AD299> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/WidgetBinLib.dylib
    0x256d000 -  0x26d8ff7 +AdobeOwl (1) <C917D2C5-55F5-4B51-ABCA-5AC6BBE781D8> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x27a8000 -  0x27a9ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x27e5000 -  0x27f3fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x2ff6000 -  0x2ffafff +com.adobe.InDesign.Data Services UI (5.0.0.458 - 0) <9A295EDB-5CEB-4081-9ADF-223F526A6034> /Applications/Adobe InDesign CS3/*/Data Services UI
    0x7596000 -  0x75c3ff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <5F0E55AF-BDA6-36B3-86F2-8A84A8F5D089> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x77f1000 -  0x77f7ffd +com.adobe.InDesign.Data Services (5.0.0.458 - 0) <74B57DC9-3E39-44BF-B892-4A0262B836F1> /Applications/Adobe InDesign CS3/*/Data Services
    0xcd48000 -  0xcd5affd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcd5e000 -  0xcd61fff +com.adobe.InDesign.PNG Import Filter UI (5.0.0.458 - 0) <219F77F4-FB2C-4967-9D25-60C4198DB153> /Applications/Adobe InDesign CS3/*/PNG Import Filter UI
    0xcdb9000 -  0xcdbffc3 +CSLinguist.dylib (1) /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/CSLinguist.dylib
    0xcdc5000 -  0xcdd0fe3 +com.adobe.InDesign.DTTransform (5.0.0.458 - 0) <35B9AEBF-242C-43AF-9935-348B718CC5A7> /Applications/Adobe InDesign CS3/*/DTTransform
    0xcdd8000 -  0xcdd9fff +com.adobe.InDesign.Help (5.0.0.458 - 0) <59C676A7-D46D-4BF8-A44B-5649E240AA35> /Applications/Adobe InDesign CS3/*/Help
    0xcdf7000 -  0xcdf8ff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xcfc4000 -  0xcfe5ff7 +com.adobe.InDesign.Dictionary Editor Dialog (5.0.3.662 - 0) <16755191-AA6C-41EC-918C-008CA14DB9A7> /Applications/Adobe InDesign CS3/*/Dictionary Editor Dialog
    0xcffa000 -  0xcffcfff +com.adobe.InDesign.SimpleTextImportFilter (5.0.0.458 - 0) <AFC35B5D-6977-498F-A6C0-7378C24ADC69> /Applications/Adobe InDesign CS3/*/SimpleTextImportFilter
    0xe3ee000 -  0xe3f5ffc +com.adobe.InDesign.SaveBack (5.0.0.458 - 0) <D60DB5DD-9133-410D-AEED-96E225D0E4FE> /Applications/Adobe InDesign CS3/*/SaveBack
    0xe700000 -  0xe72afef +TextPanelLib.dylib (1) <47B64D3E-4DAF-4EEA-A02F-A7A52601B6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/TextPanelLib.dylib
    0xe74d000 -  0xe769fe7 +com.adobe.InDesign.LILO (5.0.3.662 - 0) <36BA6BB5-EA76-4E84-AF8D-848801EDE21C> /Applications/Adobe InDesign CS3/*/LILO
    0xe776000 -  0xe801fdf +com.adobe.linguistic.LinguisticManager (3.1.3 - 3.1.3.5196) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0xe821000 -  0xe839fcb +com.adobe.InDesign.Media Import Filter (5.0.0.458 - 0) <A9690264-1641-415C-BBA2-C375E797A7C2> /Applications/Adobe InDesign CS3/*/Media Import Filter
    0xe842000 -  0xe859fff +com.adobe.InDesign.Sangam Preferences UI (5.0.0.458 - 0) <D884A939-E2F9-4D90-82DA-0119ADEC4802> /Applications/Adobe InDesign CS3/*/Sangam Preferences UI
    0xe866000 -  0xe8cafe4 +com.adobe.AdobeSangam (AdobeSangam 4.2 - 4.2.0.22) <8E741406-E3AC-48E9-AB85-7A17F88160BB> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xe93c000 -  0xe98cfef +com.adobe.InDesign.SangamExport (5.0.0.458 - 0) <B232AC96-4293-430C-995A-D6D38F837D6C> /Applications/Adobe InDesign CS3/*/SangamExport
    0xe9ae000 -  0xea9bffb +com.adobe.InDesign.SangamServicer-Mapper (5.0.0.458 - 0) <9FBB1DFE-14A7-434E-94A5-CA2E7EB0309D> /Applications/Adobe InDesign CS3/*/SangamServicer-Mapper
    0xeae3000 -  0xeb4efc7 +com.adobe.InDesign.Tagged Text Attributes (5.0.0.458 - 0) <7891C8E0-A157-4C1F-B34E-A9A71E74DA36> /Applications/Adobe InDesign CS3/*/Tagged Text Attributes
    0xeb75000 -  0xeb80fff +com.adobe.InDesign.Tagged Text Filters UI (5.0.0.458 - 0) <07BBA8CB-F137-4516-B875-6541797DACA4> /Applications/Adobe InDesign CS3/*/Tagged Text Filters UI
    0xeb87000 -  0xec0afe7 +com.adobe.InDesign.Tagged Text Filters (5.0.3.662 - 0) <51B1F580-0FC8-431B-9B04-D81C437F7259> /Applications/Adobe InDesign CS3/*/Tagged Text Filters
    0xec18000 -  0xec1ffe7 +com.adobe.InDesign.Clipping Path Dialog (5.0.0.458 - 0) <6EC2FCEB-F6E9-41AE-8CBD-DD882CF36A83> /Applications/Adobe InDesign CS3/*/Clipping Path Dialog
    0xec28000 -  0xec4afff +com.adobe.InDesign.Color Management UI (5.0.0.458 - 0) <52D35082-41CB-4186-927F-12A69C7E90A5> /Applications/Adobe InDesign CS3/*/Color Management UI
    0xec55000 -  0xec9cfef +com.adobe.InDesign.Color Picker Panel (5.0.0.458 - 0) <9E669EF1-81DB-4240-B92C-764C2FBA1A58> /Applications/Adobe InDesign CS3/*/Color Picker Panel
    0xecb5000 -  0xecbcfef +com.adobe.InDesign.EPS UI (5.0.0.458 - 0) <DFE7643E-A510-47AB-810D-E8E094B45DF2> /Applications/Adobe InDesign CS3/*/EPS UI
    0xecc2000 -  0xecc8fe7 +com.adobe.InDesign.Generic Style Editor (5.0.0.458 - 0) <9F984289-52ED-4391-B49D-AA1A14FD69E4> /Applications/Adobe InDesign CS3/*/Generic Style Editor
    0xecd1000 -  0xecf1ff3 +com.adobe.InDesign.Gradient Panel (5.0.0.458 - 0) <8C4509AB-8290-4124-B33B-7664AADDA2DC> /Applications/Adobe InDesign CS3/*/Gradient Panel
    0xed00000 -  0xed41ff3 +com.adobe.InDesign.Graphic Panels (5.0.0.458 - 0) <ADC596C1-A326-4D9F-A330-B17892050B98> /Applications/Adobe InDesign CS3/*/Graphic Panels
    0xed59000 -  0xed5dfef +com.adobe.InDesign.JPEG Export UI (5.0.0.458 - 0) <BE6487F3-62A9-4889-BC0C-D9EC282365B5> /Applications/Adobe InDesign CS3/*/JPEG Export UI
    0xed63000 -  0xed7cfff +com.adobe.InDesign.JPEG Export (5.0.3.662 - 0) <BADB524B-D0B7-43F0-86A0-243195CA4065> /Applications/Adobe InDesign CS3/*/JPEG Export
    0xed8d000 -  0xedbcffb +com.adobe.InDesign.Output Preview (5.0.3.662 - 0) <D4AC4E3F-6DD5-45F1-B036-5B187957E6D1> /Applications/Adobe InDesign CS3/*/Output Preview
    0xedcd000 -  0xedd9fef +com.adobe.InDesign.OutputMiscUI (5.0.0.458 - 0) <BB613486-4008-40E8-99C3-5BDB31A02392> /Applications/Adobe InDesign CS3/*/OutputMiscUI
    0xede5000 -  0xee31feb +com.adobe.InDesign.PDF UI (5.0.0.458 - 0) <0AE9202C-D879-4AEB-9F76-415A21421BF4> /Applications/Adobe InDesign CS3/*/PDF UI
    0xee49000 -  0xee9effd +AdobeXMP (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xeeac000 -  0xeeb9fff +com.adobe.InDesign.Printer Styles (5.0.0.458 - 0) <66BF4E9B-9AAA-4E59-BAC2-222F78A7A9AC> /Applications/Adobe InDesign CS3/*/Printer Styles
    0xeec2000 -  0xef60fef +com.adobe.InDesign.PrintUI (5.0.0.458 - 0) <B9E289D4-F24D-4215-8F37-EED83FCC42A9> /Applications/Adobe InDesign CS3/*/PrintUI
    0xef96000 -  0xef9ffef +com.adobe.InDesign.PS Import UI (5.0.0.458 - 0) <16038163-C648-4332-8CC6-02C31913BAAD> /Applications/Adobe InDesign CS3/*/PS Import UI
    0xefa8000 -  0xefaeff7 +com.adobe.InDesign.SVG Export UI (5.0.0.458 - 0) <01BBCFBC-A0E4-4593-8D17-D337DF0022CF> /Applications/Adobe InDesign CS3/*/SVG Export UI
    0xefb4000 -  0xf039fff +com.adobe.InDesign.SVG Export (5.0.0.458 - 0) <F1A1DFCA-22A2-4EBC-9BB9-05014D447CD0> /Applications/Adobe InDesign CS3/*/SVG Export
    0xf066000 -  0xf078fff +com.adobe.InDesign.Swatch Library Panel (5.0.0.458 - 0) <EEE63A20-73E7-430E-BF01-86BE03DA7B6B> /Applications/Adobe InDesign CS3/*/Swatch Library Panel
    0xf080000 -  0xf0ddff7 +com.adobe.InDesign.Swatches Panel (5.0.0.458 - 0) <56EBE10D-2DC0-4FA7-B070-286D676158B0> /Applications/Adobe InDesign CS3/*/Swatches Panel
    0xf0fa000 -  0xf159ffb +com.adobe.InDesign.Transparency UI (5.0.0.458 - 0) <4AE9180A-FF7A-4B57-9201-A456B7EF89B2> /Applications/Adobe InDesign CS3/*/Transparency UI
    0xf179000 -  0xf1adff3 +com.adobe.InDesign.Assignment UI (5.0.0.458 - 0) <F6A8746C-9B69-4976-8E68-DB324E27E387> /Applications/Adobe InDesign CS3/*/Assignment UI
    0xf1c2000 -  0xf1d3fc7 +com.adobe.InDesign.InCopy Bridge UI (5.0.0.458 - 0) <2F896ACD-EEA3-4CB2-95C5-AF85352EF339> /Applications/Adobe InDesign CS3/*/InCopy Bridge UI
    0xf1da000 -  0xf1feff7 +com.adobe.InDesign.InCopy Bridge (5.0.3.662 - 0) <118ACCF3-8E0E-414F-9CB3-711B598E9342> /Applications/Adobe InDesign CS3/*/InCopy Bridge
    0xf20a000 -  0xf20efeb +com.adobe.InDesign.InCopyExport (5.0.0.458 - 0) <0F2363BB-C116-4132-B79D-71FC78AA140C> /Applications/Adobe InDesign CS3/*/InCopyExport
    0xf214000 -  0xf218fff +com.adobe.InDesign.InCopyExportUI (5.0.0.458 - 0) <77C291BC-EF06-43EB-827C-50769B3C3890> /Applications/Adobe InDesign CS3/*/InCopyExportUI
    0xf21e000 -  0xf22300e +com.adobe.InDesign.InCopyImport (5.0.0.458 - 0) <DB270045-C915-4D59-96DE-22BDAE988898> /Applications/Adobe InDesign CS3/*/InCopyImport
    0xf228000 -  0xf22cfff +com.adobe.InDesign.InCopyWorkflow UI (5.0.0.458 - 0) <6955319C-2E61-413B-A4BE-6F0D2583D10B> /Applications/Adobe InDesign CS3/*/InCopyWorkflow UI
    0xf232000 -  0xf264feb +com.adobe.InDesign.Note (5.0.0.458 - 0) <A274D200-D554-4003-84BF-365B89216A93> /Applications/Adobe InDesign CS3/*/Note
    0xf278000 -  0xf27fff6 +com.adobe.InDesign.NotePref (5.0.0.458 - 0) <93AF7AF8-5C16-4C42-98D0-A4F7CC1CA713> /Applications/Adobe InDesign CS3/*/NotePref
    0xf28a000 -  0xf28cfff +com.adobe.InDesign.Username UI (5.0.0.458 - 0) <7946FF7E-3349-498D-93F5-1F0D51D25707> /Applications/Adobe InDesign CS3/*/Username UI
    0xf292000 -  0xf2befe3 +com.adobe.InDesign.BehaviorUI (5.0.0.458 - 0) <48EE4200-9EE9-4CCA-9803-C7656C9C4C89> /Applications/Adobe InDesign CS3/*/BehaviorUI
    0xf2d3000 -  0xf2f6fef +com.adobe.InDesign.FormFieldUI (5.0.0.458 - 0) <9A08E8F7-0E6A-42C4-AD70-0450F43DDB1A> /Applications/Adobe InDesign CS3/*/FormFieldUI
    0xf30a000 -  0xf31fff3 +com.adobe.InDesign.MediaUI (5.0.0.458 - 0) <BCBB8E8F-066F-4145-9E05-1D7319C69C6C> /Applications/Adobe InDesign CS3/*/MediaUI
    0xf32b000 -  0xf33406f +com.adobe.InDesign.Alignment Panel (5.0.0.458 - 0) <4DCFC50C-0539-45A8-B31A-110E269B1E56> /Applications/Adobe InDesign CS3/*/Alignment Panel
    0xf33a000 -  0xf360ff7 +com.adobe.InDesign.Asset Library Panel (5.0.0.458 - 0) <CBE05090-A4BD-47A4-BC63-A5E8DF5EA954> /Applications/Adobe InDesign CS3/*/Asset Library Panel
    0xf376000 -  0xf3b4feb +com.adobe.InDesign.Asset PubLibrary (5.0.0.458 - 0) <5AC83352-A68B-4D23-BA8B-2758AD4994B6> /Applications/Adobe InDesign CS3/*/Asset PubLibrary
    0xf3c8000 -  0xf3f2fe3 +com.adobe.InDesign.Book Panel (5.0.0.458 - 0) <5A3B41C3-C92C-4BC0-9374-29D727C5DB0A> /Applications/Adobe InDesign CS3/*/Book Panel
    0xf406000 -  0xf415fff +com.adobe.InDesign.Bookmark Panel (5.0.0.458 - 0) <7C19089F-6F87-44A8-AAAC-48BFE95E8340> /Applications/Adobe InDesign CS3/*/Bookmark Panel
    0xf422000 -  0xf443ffb +com.adobe.InDesign.Control Panel (5.0.0.458 - 0) <E7BFB649-A78D-4662-A286-C0781B7F52C3> /Applications/Adobe InDesign CS3/*/Control Panel
    0xf453000 -  0xf458fff +com.adobe.InDesign.Create Guides Dialog (5.0.0.458 - 0) <729142B6-15CB-4EEA-8733-F6FA07B99EF2> /Applications/Adobe InDesign CS3/*/Create Guides Dialog
    0xf45e000 -  0xf484fff +com.adobe.InDesign.Eyedropper Tool (5.0.0.458 - 0) <2535B820-564C-4C39-B27A-88E1535953B2> /Applications/Adobe InDesign CS3/*/Eyedropper Tool
    0xf492000 -  0xf4c9fcf +com.adobe.InDesign.Hyperlinks Panel (5.0.0.458 - 0) <3EE1A146-D8FE-4559-B808-D0089BF10448> /Applications/Adobe InDesign CS3/*/Hyperlinks Panel
    0xf4dc000 -  0xf519fe7 +com.adobe.InDesign.Index Panel (5.0.0.458 - 0) <A4E8B0AD-35F2-44FE-83F8-EB92F029B2A1> /Applications/Adobe InDesign CS3/*/Index Panel
    0xf52c000 -  0xf561feb +com.adobe.InDesign.Info Panel (5.0.0.458 - 0) <ECDFE5E2-C8DA-4467-A887-1A6E86405CCB> /Applications/Adobe InDesign CS3/*/Info Panel
    0xf572000 -  0xf5c9ffe +com.adobe.InDesign.Knowledge Base (5.0.0.458 - 0) <A9DD1BD0-11E0-4BE0-BF4E-A7CFD6EDE2C8> /Applications/Adobe InDesign CS3/*/Knowledge Base
    0xf5de000 -  0xf5fdfff +com.adobe.InDesign.Layers Panel (5.0.0.458 - 0) <BBF94334-3847-4986-BA31-77CAC4098878> /Applications/Adobe InDesign CS3/*/Layers Panel
    0xf60d000 -  0xf60ffe7 +com.adobe.InDesign.Layout Adjustment Panel (5.0.0.458 - 0) <0051EC6E-8721-4CCE-9EE7-183BE332A566> /Applications/Adobe InDesign CS3/*/Layout Adjustment Panel
    0xf615000 -  0xf626fff +com.adobe.InDesign.Layout Adjustment (5.0.0.458 - 0) <5AFF3870-C739-4809-AC10-698FA2F8A477> /Applications/Adobe InDesign CS3/*/Layout Adjustment
    0xf62f000 -  0xf677fff +com.adobe.InDesign.Links Panel (5.0.0.458 - 0) <AA77F9D7-4D11-43FD-B74D-2464EDC391E5> /Applications/Adobe InDesign CS3/*/Links Panel
    0xf69a000 -  0xf6affff +com.adobe.InDesign.Navigator Panel (5.0.0.458 - 0) <DC1A41DE-1496-459A-AEC7-E5B2015DC5BB> /Applications/Adobe InDesign CS3/*/Navigator Panel
    0xf6bd000 -  0xf71cff7 +com.adobe.InDesign.ObjectStylesUI (5.0.0.458 - 0) <60B2DF59-3AE3-4621-93A2-FEA00D4FB356> /Applications/Adobe InDesign CS3/*/ObjectStylesUI
    0xf739000 -  0xf74cfeb +com.adobe.InDesign.Page Setup Dialog (5.0.0.458 - 0) <B7C99FC8-A354-459F-BD69-9DA89C5668CD> /Applications/Adobe InDesign CS3/*/Page Setup Dialog
    0xf753000 -  0xf7affef +com.adobe.InDesign.Pages Panel (5.0.0.458 - 0) <CC82F2DE-CE0B-4B33-B19F-270899D413AD> /Applications/Adobe InDesign CS3/*/Pages Panel
    0xf7c9000 -  0xf7d1fff +com.adobe.InDesign.Sections UI (5.0.0.458 - 0) <00E5FB32-30B7-489A-AE52-D5E07512ABD9> /Applications/Adobe InDesign CS3/*/Sections UI
    0xf7d7000 -  0xf7dbfff +com.adobe.InDesign.StepRepeat (5.0.3.662 - 0) <28C98507-6B14-4600-86D5-523DEFF404C2> /Applications/Adobe InDesign CS3/*/StepRepeat
    0xf7e2000 -  0xf80bff7 +com.adobe.InDesign.Text Wrap Panel (5.0.3.662 - 0) <4FB1A1FF-9FD3-43DA-B22B-A3C3CDDE48CE> /Applications/Adobe InDesign CS3/*/Text Wrap Panel
    0xf81b000 -  0xf83ffff +com.adobe.InDesign.TOC UI Dialog (5.0.0.458 - 0) <B8E6A83A-FF73-453B-82FB-222EBEEB830F> /Applications/Adobe InDesign CS3/*/TOC UI Dialog
    0xf84e000 -  0xf86afff +com.adobe.InDesign.Transform Panel (5.0.0.458 - 0) <DDEF092A-D5F5-4060-A589-B03C9BBDF052> /Applications/Adobe InDesign CS3/*/Transform Panel
    0xf876000 -  0xf887ff3 +com.adobe.InDesign.Image Import UI (5.0.0.458 - 0) <A06818D0-6F36-49A8-A92F-FDCD3321C466> /Applications/Adobe InDesign CS3/*/Image Import UI
    0xf892000 -  0xf89fff2 +com.adobe.InDesign.Scotch Rules (5.0.0.458 - 0) <07E253C0-4878-4CFD-8C7E-E57435DBAAFB> /Applications/Adobe InDesign CS3/*/Scotch Rules
    0xf8a6000 -  0xf8d7ffb +com.adobe.InDesign.BNUI (5.0.0.458 - 0) <E1728ECE-0E11-463E-98AA-82F47FEB528F> /Applications/Adobe InDesign CS3/*/BNUI
    0xf8ec000 -  0xf8f3fff +com.adobe.InDesign.CropTool (5.0.0.458 - 0) <E7CA52B1-4EE9-4158-A275-1319ADEFF1FD> /Applications/Adobe InDesign CS3/*/CropTool
    0xf8fb000 -  0xf967fff +com.adobe.InDesign.DataMerge (5.0.3.662 - 0) <1EEB0DCE-4CB0-4F88-ABA3-49B271CAFEE1> /Applications/Adobe InDesign CS3/*/DataMerge
    0xf991000 -  0xf9aeff7 +com.adobe.InDesign.DataMergeUI (5.0.0.458 - 0) <D5A1FEE2-E803-4A65-853E-62CA36E172A5> /Applications/Adobe InDesign CS3/*/DataMergeUI
    0xf9bf000 -  0xf9cd05f +com.adobe.InDesign.PMToolBar (5.0.0.458 - 0) <01EFA9E7-5891-4CAE-A0E1-E1BCC7270045> /Applications/Adobe InDesign CS3/*/PMToolBar
    0xf9d8000 -  0xf9e5ff2 +com.adobe.InDesign.PMWelcomeScreen (5.0.0.458 - 0) <D235E4C3-BBCF-40A3-88B2-3E91C664269D> /Applications/Adobe InDesign CS3/*/PMWelcomeScreen
    0xf9f2000 -  0xf9f6fd8  com.apple.carbonframeworktemplate (1.1 - 1.1.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xf9fb000 -  0xfa2cfef +com.adobe.InDesign.Package and Preflight UI (5.0.0.458 - 0) <9C7AC64E-8372-4590-952B-F72B5AD479AD> /Applications/Adobe InDesign CS3/*/Package and Preflight UI
    0xfa3f000 -  0xfa8ffef +com.adobe.InDesign.Package and Preflight (5.0.3.662 - 0) <F7EA9D0C-78BD-4C6E-8FB9-C756C6F051F3> /Applications/Adobe InDesign CS3/*/Package and Preflight
    0xfa98000 -  0xfabbff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0xfac3000 -  0xfb89fef +com.adobe.InDesign.JBX (5.0.0.458 - 0) <16ABA433-3F98-465D-B35B-AA6AAF5B48A4> /Applications/Adobe InDesign CS3/*/JBX
    0xfbcd000 -  0xfbd0fff +com.adobe.InDesign.Script Label Panel (5.0.0.458 - 0) <0A69FDDC-C3A6-4356-BC47-0A255E91675B> /Applications/Adobe InDesign CS3/*/Script Label Panel
    0xfbd7000 -  0xfbdeff3 +com.adobe.InDesign.Scripts Panel (5.0.0.458 - 0) <E40BF92F-6275-4C9F-BF25-2016C5021CFD> /Applications/Adobe InDesign CS3/*/Scripts Panel
    0xfbe6000 -  0xfc73fe7 +com.adobe.InDesign.Tables UI (5.0.0.458 - 0) <20BE7B63-0947-45E7-BD3F-8E332E701D5F> /Applications/Adobe InDesign CS3/*/Tables UI
    0xfc96000 -  0xfcf7ffb +com.adobe.InDesign.TableStylesUI (5.0.0.458 - 0) <0E2577DB-0D37-450A-B63E-67BD3B36BD26> /Applications/Adobe InDesign CS3/*/TableStylesUI
    0xfd16000 -  0xfd5304b +com.adobe.InDesign.Character Panel (5.0.3.662 - 0) <87BC3F60-7F4B-4457-99AB-646FAA427EDE> /Applications/Adobe InDesign CS3/*/Character Panel
    0xfd6d000 -  0xfd7dfff +com.adobe.InDesign.Create Outlines (5.0.0.458 - 0) <C7D6CA71-EF03-4A40-8E3A-C3123E8335B7> /Applications/Adobe InDesign CS3/*/Create Outlines
    0xfd85000 -  0xfe31fef +com.adobe.InDesign.Find and Change Panel (5.0.3.662 - 0) <1D76D5B0-373B-492E-8FA6-DB13D6EA7DDF> /Applications/Adobe InDesign CS3/*/Find and Change Panel
    0xfe5d000 -  0xfe7cfe7 +com.adobe.InDesign.Find Change Format Panel (5.0.0.458 - 0) <7671FB52-74A6-4DFF-B1BE-B54E1A8FB313> /Applications/Adobe InDesign CS3/*/Find Change Format Panel
    0xfe87000 -  0xfe9e01f +com.adobe.InDesign.Font Usage Dialog (5.0.0.458 - 0) <C10CFFAE-C33D-4F8A-A174-9334C975953A> /Applications/Adobe InDesign CS3/*/Font Usage Dialog
    0xfea9000 -  0xff08ffb +com.adobe.InDesign.Glyphs Panel (5.0.0.458 - 0) <7E2FECBE-E228-4F60-B315-0A07EAB77612> /Applications/Adobe InDesign CS3/*/Glyphs Panel
    0xff1e000 -  0xff23fef +com.adobe.InDesign.Hyphenation Panel (5.0.0.458 - 0) <A18BA408-B78C-41C7-966E-F000F8F6F914> /Applications/Adobe InDesign CS3/*/Hyphenation Panel
    0xff2c000 -  0xff36fff +com.adobe.InDesign.Indents and Tabs (5.0.0.458 - 0) <A2E4E50D-050C-4273-8EAB-57672EAD1644> /Applications/Adobe InDesign CS3/*/Indents and Tabs
    0xff3f000 -  0xff44fff +com.adobe.InDesign.Justification Panel (5.0.0.458 - 0) <8A6E8BE4-2F92-4D6D-B4B1-6C51C751E859> /Applications/Adobe InDesign CS3/*/Justification Panel
    0xff4a000 -  0xff4eff7 +com.adobe.InDesign.Keeps Panel (5.0.0.458 - 0) <CDB33F72-0447-42FE-81EC-D0799FB2CD6E> /Applications/Adobe InDesign CS3/*/Keeps Panel
    0xff53000 -  0xff6cff3 +com.adobe.InDesign.Optical Kerning (5.0.0.458 - 0) <B0780089-D891-4294-9881-8237BB949911> /Applications/Adobe InDesign CS3/*/Optical Kerning
    0xff75000 -  0xff8dfef +com.adobe.InDesign.Paragraph Panel (5.0.0.458 - 0) <EFD65207-5E95-456F-8E6F-3D70B5367C4E> /Applications/Adobe InDesign CS3/*/Paragraph Panel
    0xff99000 -  0xffa2fff +com.adobe.InDesign.Paragraph Rules Panel (5.0.0.458 - 0) <C3BD8CD8-9B50-4241-9499-56BEE7C8C8A5> /Applications/Adobe InDesign CS3/*/Paragraph Rules Panel
    0xffa9000 -  0xffb7fff +com.adobe.InDesign.Path Type UI (5.0.0.458 - 0) <B464FA77-E6AF-476E-8AE1-7E98B158DF14> /Applications/Adobe InDesign CS3/*/Path Type UI
    0xffc1000 -  0xffc9ffc +PathTypeLib.dylib (1) <18C15E31-C72D-4EEA-8452-2444772CFC43> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PathTypeLib.dylib
    0xffd0000 -  0xffdcfe7 +com.adobe.InDesign.RunIn Styles Panel (5.0.0.458 - 0) <DBEE6188-6AF7-4366-A800-77D5CC719BEE> /Applications/Adobe InDesign CS3/*/RunIn Styles Panel
    0xffe6000 -  0xfff6fff +com.adobe.InDesign.SING (5.0.0.458 - 0) <101E0AF3-FCAF-4902-8E7E-331A176E61DD> /Applications/Adobe InDesign CS3/*/SING
    0xffff000 - 0x10026fe3 +com.adobe.InDesign.Spelling Panel (5.0.0.458 - 0) <56460421-FF84-45E6-92AA-43626E38B270> /Applications/Adobe InDesign CS3/*/Spelling Panel
    0x10038000 - 0x10041fef +com.adobe.InDesign.Story Panel (5.0.0.458 - 0) <8BE56D0B-F057-455C-BC0C-A596BE9D2DA6> /Applications/Adobe InDesign CS3/*/Story Panel
    0x10049000 - 0x10082fff +com.adobe.InDesign.Style Panel (5.0.0.458 - 0) <CBFB03D6-5E53-46FA-BB0D-9E7AA49727A1> /Applications/Adobe InDesign CS3/*/Style Panel
    0x1009c000 - 0x100a2feb +com.adobe.InDesign.Text Color Panel (5.0.0.458 - 0) <072591AA-A2E0-44CA-8982-056229E9598A> /Applications/Adobe InDesign CS3/*/Text Color Panel
    0x100a7000 - 0x100bbff3 +com.adobe.InDesign.Text Frame Options (5.0.0.458 - 0) <EA8842D0-DABF-4980-83C4-4507A204C3D8> /Applications/Adobe InDesign CS3/*/Text Frame Options
    0x100c6000 - 0x100f6fff +com.adobe.InDesign.Text Panel (5.0.0.458 - 0) <4DDA3134-B6AC-45D0-B61E-DE2C1773E545> /Applications/Adobe InDesign CS3/*/Text Panel
    0x10108000 - 0x1011904b +com.adobe.InDesign.Text Preferences (5.0.0.458 - 0) <EB96C5F6-B8BE-4FB3-B237-D6164EE82930> /Applications/Adobe InDesign CS3/*/Text Preferences
    0x10123000 - 0x10138fff +com.adobe.InDesign.Text Ruler (5.0.0.458 - 0) <76836CAF-DF72-48FD-BC22-AB712DEDBB18> /Applications/Adobe InDesign CS3/*/Text Ruler
    0x10142000 - 0x1014ffff +com.adobe.InDesign.Text Style Panel (5.0.0.458 - 0) <F6F81FD7-63CA-4FB2-90B4-EC9E5BEE2177> /Applications/Adobe InDesign CS3/*/Text Style Panel
    0x10157000 - 0x102d4ffb +com.adobe.InDesign.Text Walker (5.0.0.458 - 0) <04A3777D-DC3E-4DB8-9B73-7848892730A1> /Applications/Adobe InDesign CS3/*/Text Walker
    0x1036b000 - 0x10385ff3 +com.adobe.InDesign.Galley Preferences (5.0.0.458 - 0) <04484DC8-FF4B-40CB-8841-B42A76CF3BF5> /Applications/Adobe InDesign CS3/*/Galley Preferences
    0x10395000 - 0x1039afef +com.adobe.InDesign.General Preferences Panel (5.0.0.458 - 0) <97415234-1B28-4D38-8A96-E19DDDF95DE6> /Applications/Adobe InDesign CS3/*/General Preferences Panel
    0x103a0000 - 0x103adffb +com.adobe.InDesign.Performance UI (5.0.0.458 - 0) <4F3DE808-3ADE-4B7D-B292-DCD3DF5D7103> /Applications/Adobe InDesign CS3/*/Performance UI
    0x103b9000 - 0x103cafff +com.adobe.InDesign.Shortcut Editor Dialog (5.0.0.458 - 0) <FD95270C-FF81-4FF6-BE64-10ADAE2ED53F> /Applications/Adobe InDesign CS3/*/Shortcut Editor Dialog
    0x103d4000 - 0x103dfff7 +com.adobe.InDesign.Tool Box (5.0.0.458 - 0) <9D3C3D9F-933B-4C8F-B378-A7804711C6A4> /Applications/Adobe InDesign CS3/*/Tool Box
    0x103e9000 - 0x103f0feb +com.adobe.InDesign.Tool Tips (5.0.0.458 - 0) <4B227DB1-BCC1-4A6C-A703-CE507D59F6BF> /Applications/Adobe InDesign CS3/*/Tool Tips
    0x103f9000 - 0x10414fff +com.adobe.InDesign.Plugin Manager (5.0.0.458 - 0) <6D0D804D-2F29-46BC-BF82-ED25ABB6086B> /Applications/Adobe InDesign CS3/*/Plugin Manager
    0x10423000 - 0x10435ffd +com.adobe.InDesign.Metadata UI (5.0.0.458 - 0) <A99A4A16-A956-498D-B742-1E2761E80487> /Applications/Adobe InDesign CS3/*/Metadata UI
    0x10440000 - 0x104f6fcc +FileInfo (0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x10524000 - 0x10529fff +com.adobe.InDesign.Workgroup UI (5.0.3.662 - 0) <7713F6A6-73BD-4950-BE33-A633D29EE0B5> /Applications/Adobe InDesign CS3/*/Workgroup UI
    0x1052e000 - 0x1055cfef +com.adobe.InDesign.Snippet (5.0.0.458 - 0) <F5B61D86-528B-4993-8C23-E9B06DB32979> /Applications/Adobe InDesign CS3/*/Snippet
    0x1056a000 - 0x10658fff +com.adobe.InDesign.XMedia UI (5.0.3.662 - 0) <ED5A265D-DC74-4943-A19C-2AE786C99D06> /Applications/Adobe InDesign CS3/*/XMedia UI
    0x106be000 - 0x10709fdf +com.adobe.InDesign.Actions (5.0.0.458 - 0) <6B80AA4C-EFB8-4E46-BA47-1E14791702F7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0x10725000 - 0x1084afe3 +com.adobe.InDesign.AppFramework (5.0.3.662 - 0) <32293AA8-DA9B-4B05-AF72-B74BEF5BE4ED> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x108b6000 - 0x10a39fef +com.adobe.InDesign.Application UI (5.0.3.662 - 0) <5F2CD8E2-39F2-4302-86AD-13F54ADDD6A5> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x10ac6000 - 0x10b4bfff +AdobeExtendScript (3.7) <EF6B3A34-C43A-45D3-BCD3-D7D450B5C6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x10b87000 - 0x10c03fef +AdobeScCore (3.7) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x10c41000 - 0x10c9dfff +com.adobe.InDesign.Assignments (5.0.0.458 - 0) <D4826E20-6A7D-468C-A000-B1D7AF126C22> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0x10cc4000 - 0x10d0dffb +com.adobe.InDesign.AWS (5.0.0.458 - 0) <3CC41036-743E-4B6D-A6AB-743D69A85613> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x10d2e000 - 0x10d60ff7 +com.adobe.InDesign.AWSUI (5.0.0.458 - 0) <C2460D67-B740-41E6-8C4C-CD97929F158F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0x10d7b000 - 0x10d9fff3 +com.adobe.InDesign.Basic Tools (5.0.0.458 - 0) <8E39B721-DB99-4577-ADB9-BA32A7C11822> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
    0x10db1000 - 0x10ddaff3 +com.adobe.InDesign.Behavior (5.0.0.458 - 0) <895A9202-2E6A-43CC-BAF3-D814F261695C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0x10df0000 - 0x10e50fff +com.adobe.InDesign.BNCore (5.0.0.458 - 0) <F425FD82-7BBA-45E4-90F8-61DB5F5A91A9> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0x10e66000 - 0x10e9dff7 +com.adobe.InDesign.Book (5.0.0.458 - 0) <A67FE031-3654-4DF2-8117-219C9829B264> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x10eab000 - 0x10eccffb +com.adobe.InDesign.CellStyles.rpln (5.0.0.458 - 0) <0BE3E0A6-0ED8-489C-B886-C4C9F8AFD184> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0x10ed9000 - 0x10f32fef +com.adobe.InDesign.CJK Text Attributes (5.0.0.458 - 0) <DCE49BEA-5BE0-4156-BE7F-147494C71A5F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0x10f4b000 - 0x10f9afeb +com.adobe.InDesign.CJKGrid (5.0.3.662 - 0) <E1D6C839-AB72-4A96-8E67-1A62C128BEB7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0x10fae000 - 0x1104fffb +com.adobe.InDesign.Color Management (5.0.0.458 - 0) <D0F8049B-EB18-44BC-AB25-22F1595F3247> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x1107a000 - 0x110b3fef +com.adobe.InDesign.CompFontMgr (5.0.3.662 - 0) <C547BB1D-628B-4BFF-A315-995A7AF84AD6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0x110c3000 - 0x110e3ffb +com.adobe.InDesign.Dialog Layout (5.0.0.458 - 0) <4B8B24B4-5CD3-44C7-9131-EBDF292A07BC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0x110f4000 - 0x11108fef +com.adobe.InDesign.Document Actions (5.0.0.458 - 0) <495400EB-B390-4A66-9B6D-81C0A841058F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0x11110000 - 0x11219fdf +com.adobe.InDesign.Document Framework (5.0.3.662 - 0) <C7393400-C07D-4FF5-AC6D-0D8360101392> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x1123e000 - 0x11243fef +com.adobe.InDesign.Document UI (5.0.3.662 - 0) <F0D6F2FA-B15E-4538-AF6C-258FD532D703> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0x11249000 - 0x112e7fcf +com.adobe.InDesign.EPS Page Item (5.0.0.458 - 0) <B94445DF-2DCE-42AE-9D5B-CD37E0FB5D3C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x11309000 - 0x113adfeb +com.adobe.InDesign.Font Manager (5.0.3.662 - 0) <1149F2CB-682E-4B96-ADD1-78D2B43953AF> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x113c2000 - 0x11421fff +com.adobe.InDesign.FormField (5.0.0.458 - 0) <423AA6D9-1ACF-4819-8806-BA5B7343B7F3> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0x1144a000 - 0x1155bff7 +com.adobe.InDesign.Galley (5.0.3.662 - 0) <6F2E05D4-DBF9-4798-87ED-500E65DD46A3> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0x115a7000 - 0x116b7ffb +com.adobe.InDesign.Generic Page Item (5.0.3.662 - 0) <AFBDF0F3-30F0-4AFF-AFB1-2C6F0C050F26> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x116ec000 - 0x116f2ff7 +com.adobe.InDesign.GenericSettings (5.0.0.458 - 0) <0B8E02A0-5809-4DC7-B773-3F6B8B1B2048> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0x116f8000 - 0x116f9fff +com.adobe.InDesign.Global Preferences Panel (5.0.0.458 - 0) <693EF424-C046-4F46-B986-0F363C59468B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x116fd000 - 0x1173efef +com.adobe.InDesign.Gradient Fill (5.0.0.458 - 0) <F4F2DFF0-5C9D-49C4-A651-0F1F02A9428F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0x11751000 - 0x117d5feb +com.adobe.InDesign.Graphics (5.0.3.662 - 0) <008237F3-BEE7-4CF1-B66C-0F847D3359A2> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x117f1000 - 0x117f7fef +com.adobe.InDesign.Group (5.0.0.458 - 0) <E2AF24EB-31F4-404F-8D0A-C65BAAB62D6B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x117fe000 - 0x1180efff +com.adobe.InDesign.Guides (5.0.3.662 - 0) <B57B05D2-F646-4D72-AA27-24673A634EFC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0x11818000 - 0x11873ffb +com.adobe.InDesign.Hyperlinks (5.0.0.458 - 0) <1359AA1D-E4EA-4BF7-8D8F-7BCA8AB2AB61> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Hyp

  • InDesign CS3 Feathering/Text Error

    I am experiencing a strange error when I feather a photo placed in my InDesign CS3 file.
    If I feather it in Photoshop and keep a transparent background (PSD or EPS) and don't flatten the image, or if I feather the image directly in Indesign CS3 using the object effects, it causes the font to appear differently (almost thinner).
    As soon as I delete the image or flatten the transparency in Photoshop, the font goes back to normal.
    Is there a way around this? I'd ultimately like to use the feathering effect directly in InDesign.
    I'd appreciate any advice.
    Thanks!

    The use of transparency affects the screen draw in ID, though I've never seen type get thinner, only heavier. This is a known issue, and there is currently nothing you can do to change it. You may continue to see the difference on-screen or in print on a desktop device, but it generally doesn't make it into print on a press.

  • Bring back Visual Basic 6.0 ! We all need it.

    Please reconsider introducing VB6 to the market. It is needed by many.

    Hi Reed,
    Thanks for your two posts. Let me try to reply.
    Discussion or Argument ?
    You say "these forums are for discussions not arguments", and suggest that I want an "argument" or I am "trolling".
    Yes they are for discussions and no it isn't the case that I want an argument (or that I am trolling). I am trying to have a reasoned discussion following the opening poster's genuine request to "Please reconsider introducing VB6 to the market. It is needed
    by many."
    I don't consider you treated him fairly. You have some sort of administrative status on this forum, implicit in that is that you should treat all posters equally and fairly. Yet your first post was "Bring back Windows 3.11, we need it. ......VB6 should
    be retired and forgotten."  That post alone was unfair to the OP and it set the tone for other posts that followed.
    In other posts you refer to "VB6 zealots" but never criticize those who oppose the return of VB6 even when they accuse posters of being someone else. (I'm not making a plea for more banning and more censorship, I'm asking that everyone be treated
    equally).
    You also say "At the end of the day it is a fool's errand to argue with fools, so there's little sense to continuing the 'discussion'". Hardly fair and equal treatment, and certainly not an encouragement of discussion rather than argument.
    You also state "If this thread were meant to take itself seriously, it would have a title which was not so obviously false, and it would contain some content with a reasonable argument."  Again, the opening post was clearly a genuine call. You may
    not agree with it but that is no reason to call it 'obviously false'.
    Also the opening post doesn't even refer to VB.NET, it certainly doesn't suggest that VB6 should replace VB.NET - it is others who bring VB.NET into the argument. (And yet you move it to 'Off-topic posts' on the grounds it is not VB.Net related).
    Let me state I am putting this forward as my genuine opinion of your actions, I am not attempting to 'troll', 'flame' or to attack you personally.
    Valid arguments for VB6
    You say Cor has clearly demonstrated there are no valid arguments for keeping VB6 around. Not so.
    First of all the OP says "it is needed by many". Why should your and Cor's opinion be any more important than the OP's ?
    Here are some reasons it is needed (I limit myself to just 5 otherwise this post will be huge):
    1) VB6 is still widely used.  According to the TIOBE index it is the #7 most popular programming language - an amazing feat for a language last updated 16 years ago.  Particularly as Microsoft (& others) have spent 12 years trying to kill
    it off. You may not like it, but there it is.
    2) There are still a huge number of legacy VB6 applications in use, especially in corporates and government. Microsoft have (to their credit) recognized this and offer "it just works" support for the VB6 runtime until at least 2023 (soon to be extended).
    But this support is for the runtime, not the IDE.
     Microsoft effectively offer 2 options for these VB6 applications
       a) If no modifications are required, continue running the VB6 application (presumably Cor disagrees with Microsoft).
       b) If modifications are needed, migrate to VB.NET. 
    But in real life the most likely scenario is that the VB6 application will require a minor modification.
    So what do you do ? According to Microsoft you migrate. But if the modification is just to change (for example) some text on a form that would be nonsense.  I saw a suggestion a while ago that it cost $1 for every 3 lines of code migrated.  So
    a medium sized VB6 application could cost say $20,000 to migrate.  Clearly that is not an acceptable cost for the minor modification I suggested. (Don't get hung up on actual cost figures, I am just pointing out there are potentially significant
    costs involved).
    The obvious answer for this scenario is to use VB6 (at a cost of say $20 not $20,000). Yet Microsoft don't offer this, stating that the VB6 IDE is not supported on Windows 7 or 8. 
    Does anyone disagree that doing minor modifications in VB6 is the only acceptable solution in this scenario? Or are some going to suggest it is better to spend $20,000 than $20 ?
    Microsoft have painted themselves into a bit of a corner here, stating that they support unmodified VB6 applications until 2023, but you can't (theoretically) modify them.
    For completeness on this point I'll cover some other typical scenarios too:-
    One is that the VB6 program needs to become a web application - effectively this is then a re-write not a migrate, so you can decide what language is best to use. It may be, for example, that JavaScript/HTML5 is the way to go. (I've followed this route myself
    for some old VB6 apps).
    Another is that the VB6 application needs a mobile version. A few years ago that may have been VB.NET for Windows Mobile. (I've done that myself too, great for Windows CE/Windows Mobile 6.x). But doing this today you are really looking at iPhone,iPad
    and Android - again you can choose the best approach (native or web app ?) and language.
    The final scenario I'll mention is the one Microsoft do cover - migrate your desktop VB6 app to desktop VB.NET.  I can't think of any occasion in the last few years where I have found a genuine need to do this.  I have certainly seen cases where
    IT (or whoever) have decided that VB6 apps must be migrated because VB6 is 'obsolete' (I guess a view not too dissimilar from many in this forum). I've even done a few of these myself (though I had the sense to only do smaller migrations, not wanting
    to tie myself up with large scale migrations). I don't think of any of  these new applications (done by myself or others) were any better than the ones they replaced, but at least the customers were happy (and paid well).
    3) VB6 is the same language as VBA. VBA is a current, Microsoft supported language. It is in Microsoft's flagship product Office 2013. And it is the same language as VB6. You can cut and paste code between VB6 and VBA (and vice-versa). It is the same
    language.
    Both VB6 and VBA use the Visual Basic Runtime Library. In fact it is more than that, VB6 actually uses VBA to define it's language. In effect the VB6 IDE is a host for VBA in the same way that Word or Excel are hosts.
    It is strange that Microsoft support (and sell and extend) the language when it is named VBA but not when it is named VB6.
    Microsoft say VBA will be supported for the foreseeable future stating "This means that if you have an existing VBA project that you are satisfied with, you can be confident your investment is safe". Where is the logic in having this for VBA but not VB6
    They assure you your VBA investment is safe but won't give the same assurance for your VB6 investment.
    (OK, for the more pedantic posters VB6 is the same as VBA6.  VBA7 is the latest release and includes a handful of modifications to support 64 bit Windows. Prior to VBA7 the languages were kept identical, it is these same modifications that many
    of us now would like to have incorporated into an updated VB6).
    4) A suggestion to bring back an improved version of VB6 is the fifth most popular (out of almost 8,000) on the Visual Studio UserVoice site. Vote
    for VB6
    5) Microsoft's program manager for Visual Studio stated (Channel 9) "It isn't cost effective to keep rewriting code to get back to functional equivalence".  Quite so. So why re-write existing VB6 applications ?  (Again, Cor presumably disagrees).
    General Points
    You mention LightSwitch and SmallBasic. A good point.  But I'm sure you know neither support VB6 code so it doesn't address the concerns of the OP.  But it is nice to see that you aren't opposed to all languages that aren't called 'VB.NET'.
    So why the opposition to an updated VB6 ?  If you prefer, it could be named LightSwitch 6.1 rather than VB6.1 ? Or maybe SmallBasic 7.0 ? Or if you see VB6 as a threat to VB.NET you could name it VB Junior. As long as it can open and compile VB6
    code that's fine by me. Incidentally, there is certainly no call for VB6.1 to be part of "the .Net family".
    You say "you want these hard working people to DO MORE WORK so that you can continue to generate income from your ancient endeavors."   I'm not sure I see your point here.  How is asking for Microsoft to bring back VB6 (together with the modifications
    they have already done for VBA7) doing that? I suspect Microsoft could do this for a fraction of the money they have wasted on LightSwitch or SmallBasic. And if it is going to be more work than Microsoft can handle (as if) they should open source
    VB6.
    You mention that your 8 year old website is 'crap'. Well, that's what happens with websites. But the analogy doesn't really hold for a typical VB6 desktop program. A desktop CRUD program written in VB.NET doesn't really look (or behave) any different
    to the same program in VB6.
    You ask what I will be doing in 5 years when nobody uses PCs anymore ?  Well who knows what the future will bring, but it is likely to be VB6 for those (mainly corporate) users still using desktops and laptops or Windows tablets, JavaScript for
    Web apps - including iOS and Android - (I note Microsoft are recommending JavaScript/HTML5), and something (maybe Basic4Android ?)  for native Android apps if Android phones and tablets become more acceptable for corporate users. I'll probably
    also be migrating my VB.NET apps to JavaScript too.
    As things stand, Microsoft have sent a clear message: 'If you are planning to make a substantial investment in developing your software, if your application is mission-critical, if you expect to use it for years to come - don't use Microsoft languages.'
    Have Microsoft learnt from this ? The killing of Silverlight would suggest not.

  • Creating an index in InDesign CS3 - is there any way to limit where and for what it looks?

    I'm creating an index for a 300-page book using InDesign CS3 on both a PC with Windows XP home and a MacPro with OS X Leopard (I take this book back and forth between these two computers). I have created this as a book (.indb) file so I can use the Index panel with the book option checked to include all of the book chapters.
    There are two things I was wondering how to do, if they can be done at all.
    1 - I want the index to look for entries in the main pages only, not in the master pages.
    2 - I'd like to be able to do only attributed text. For example, I'd like the index to find only the word people when it is bold and italic, and not all of the other places it may occur. Can I do this with a style also, paragraph and/or character?
    Thanks so much,
    Marcy

    Read http://help.adobe.com/en_US/InDesign/6.0/WS8721440D-5F68-4fd6-8115-CA3BEDACF001a.html (the online Help on indexes) -- it will probably answer a few questions.
    One I do know immediately is your question on "picking up" stuff from master pages and only with formatting. InDesign does not make an index for you -- you have to (oh! manual labor!) mark the words that should appear in the index yourself. So just don't mark them on master pages, or when not bold and/or italic. You might be wondering about that little button "Mark all instances", well, it does what it say, and in your case you do not want to mark all instances.
    The Capitalization issue is, AFAICR, somewhere in the Help; and so is your singular/plural stuff. The latter one is easy solved: if you mark a word to be indexed, ID asks you in a friendly dialog how it should be included, and that defaults to the current selected phrase, but you are free to edit the text in that dialog. ID does not mark the word or phrase; it inserts an invisible marker inside the to-be-indexed word that contains all information you enter in the Add Index Entry dialog, and it uses that to determine what page number to add. (That invisible marker is visible with "Show Invisible Characters", and can be cut, pasted and deleted at will -- so to remove a water melon, find the marker, and delete it.)

  • B575: Microsoft Visual C++ Runtime Library Error on Startup? Please Help!

    This came out of the blue, I just started up my laptop and out of no where my Windows 7 Ultimate transperancy graphics are gone and I can't connect to the internet! I get this message on startup saying 'Microsoft Visual C++ Runtime Library Error', for controlhandler.cpp and I have no clue what it is! I tried a clean boot and safemode boot, and it is the same thing! Please help
    Solved!
    Go to Solution.

    hi ironmax,
    As a last resort, you can:
    1. Press the One Key Recovery button to restore the unit from factory settings or
    2. Create a recovery disc and use this disc to restore the system from factory
    Note:
    Backup important before doing a factory reset
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Installation of Adobe Indesign CS3 on Windows Vista Home Premium

    Hello,
    I can not install Indesign CS3 on my Notebook.
    The operating system is Windows Vista Home Premium SP1.
    The error message contains: "Internal Error 2739".
    It is coming at the beginning of the installation.
    Can anybody please help me?
    Alois Blaimer

    Yes, for installation issues, please call Adobe Technical Support. There is no charge for assistance with installation issues. This is not an issue that you should can expect support for on this forum.
    - Dov

Maybe you are looking for