DW CS5 -wrong path shown in code after using'Insert/Image'.

Normal site management as follows:
Site Name is set up, eg. - abcd.
Local Folder is set as root - c:/abcd
Logo image is in c:/abcd/images
Using ‘Insert/ Image’ Dreamweaver enters the correct image in the correct div, but the source code reads:
<div id="logo"><img src="../../../../abcd/images/logo.jpg" width="248" height="78" alt="abcd" /></div>
instead of:     <div id="logo"><img src="/images/logo.jpg" alt="abcd" /></div>
So the path for the image seems to be defaulting incorrectly and I can see the url in the ‘select image source’ window is automatically showing a longer path: ../../../../abcd/images/
Ideas tried so far: 
Replaced the url manually to the local path (works fine), but it defaults again next time to the longer path.
Tried recreating the site cache and FAQ corrupt cache fix.
Removed the site and set it all up again.
Manually change the path in the code and DW no longer finds the image.
I’m a newbie who has only created a handful of sites so any ideas are very much appreciated – thanks, Shelly J

Hi Murray,
Thanks very much for the reply - as a first time forum user it is great to see there are friendly people out there.
Site name abcd and Local Site Folder showed  C:\abcd\  as per normal (not using root relative) and in advanced settings links are relative to document, not site root, but you gave me a great lead and the problem seems to be resolved now, thanks. With my workflow I manually transfer the completed files to another drive (rather than the DW remote function) where a developer then adds value and ftp's them up and it seems that there was some glitch between the server and my PC. I had already tried resetting my PC earlier, but he has reset his end now and my DW is no longer confused. So thanks again. (perhaps simply hardware but I suspect the 'include' that was added to my last site's code - who knows ha ha..) Cheers, Shelly.   

Similar Messages

  • Does anyone have the code to use an image button as the reset button?

    Does anyone have the code to use an image button as the reset button? I'm finally at the end of the form and got the submit button to work as an image button, but cannot do the same with the reset button.  Any help is greatly appreciated!

    I agree. 
    http://www.456bereastreet.com/archive/200909/almost_never_add_a_reset_button_to_a_form/
    Nancy O.

  • How to modify the code to use the image on stage instead of in library?

    Hi, The following code I found on website is for working with the image which is in library. But how to modify it to work with the image on stage. Because I don't want to use it from the library. The second question ------ Is it the AS2 code or AS3. If it is AS2 code then please let me know how to modify it to work with AS3. animator = CreateEmptyMovieClip('animator',1);
    bg_1 = animator.attachMovie('bg_mc','bg_1',1);
    bg_2 = animator.attachMovie('bg_mc','bg_2',2);
    bg_1._x = bg_1._width/2:
    bg_2._x = bg_2._width/2:
    speed = 1;
    cloudWidth = 380;
    animator.onEnterFrame = function(){
    bg_1._x -= speed:
    bg_2._x -= speed:
    if(bg_1._x <= -bg_1._width) bg_1._x = cloudWidth;
    if(bg_2._x <= -bg_2._width) bg_2._x = cloudWidth;
    } Thanks.

    There is no need for attach the clip if it is not in the library and it is the AS2 code below is the relevant code in AS3 when it is in stage:
    i) Convert your first image into a movieclip with the instance name "bg_1"
    ii) Convert your second image into a movieclip with the instance name "bg_2"
    iii) Actions:
        var speed:Number = 1;
        var cloudWidth:Number = 380;
        bg_1.x = bg_1.width/2:
        bg_2.x = bg_2.width/2:
        this.addEventListener(Event.ENTER_FRAME,fn);
        function fn(e:Event):void{
            bg_1.x -= speed:
            bg_2.x -= speed:
            if(bg_1.x <= -bg_1.width) bg_1.x = cloudWidth;
            if(bg_2.x <= -bg_2.width) bg_2.x = cloudWidth;

  • How can I execute program after using F4_Filename function?

    Hi all,
    I'm a new user on the forum. I've been working with ABAP and SAP for a few weeks. I wrote a program for importing data from excel file to SAP using BDC. During searching this forum I found information about F4_Filename function which allows users to browse the disc for a file. I'd like to add this function to my program. I have a parameter for a file name but this is an ordinary static string field. When I added the code which I found in the message on this forum the rest of program doesn't execute.
    This is simple program for example:
    REPORT  Z_TEST8_AB.
    DATA f_name TYPE STRING.
    PARAMETERS p_file like rlgrap-filename DEFAULT 'c:\test.xls'.
    f_name = p_file.
    write:/ f_name.
    This program works correctly. There is a field for parameter. I can change the default name for a file.
    After all, I can run the program (F8) and rest of the code is executed. The field for parameter dissapears from the screen and the file name is displayed. ( command write)
    Now I added a function F4_Filename
    REPORT  Z_TEST8_AB.
    DATA f_name TYPE STRING.
    PARAMETERS p_file like rlgrap-filename DEFAULT 'c:\test.xls'.
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
           exporting
                program_name  = syst-repid
                dynpro_number = syst-dynnr
                field_name    = 'p_file'
           importing
                file_name     = p_file.
    f_name = p_file.
    write:/ f_name.
    I can browse a computer for a file now but after selecting the file I can't run the rest of the code. When I click on the icon or press key F8 the field for parameter doesn't dissapier and the command write is not executed.
    What do I do wrong?
    Could anyone suggest me a solution? How can I executed the code after using this function?
    Thanks in advance.
    Regards,
    Arek.

    Hi arkadiusz,
    1. simple
    2.
    <b>start-of-selection.</b>
    f_name = p_file.
    write:/ f_name.
    regards,
    amit m.

  • UpdateAllContainers() not working after i insert inlinegraphicelement

    Hi
    Please find the attached flex project. Its a basic editor. After i insert image to my editor it does not show this but a space is covered by image. after i edit by delete or update my text image shows up. Please help what is missing
    Thanks & Regards,
    Imran

    Perhaps you are missing the event that updates when the graphic has been loaded?
    Here is some example code that works:
    package
        import flash.display.Sprite;
        import flash.events.Event;
        import flashx.textLayout.container.*;
        import flashx.textLayout.elements.*;
        import flashx.textLayout.events.StatusChangeEvent;
        /** Hell world text example with an inline graphic */
        public class InlineGraphic extends Sprite
            private var _textFlow:TextFlow;
            public function InlineGraphic()
                _textFlow = new TextFlow();
                _textFlow.fontSize = 48;
                var p:ParagraphElement = new ParagraphElement();
                _textFlow.addChild(p);
                var span:SpanElement = new SpanElement();
                span.text = "Hello ";
                p.addChild(span);
                // InlineGraphicElement has "auto" width/height so the size can't be calculated till the graphic is loaded
                var inlineGraphic:InlineGraphicElement = new InlineGraphicElement();
                inlineGraphic.source = "http://www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg";
                p.addChild(inlineGraphic);
                var span2:SpanElement = new SpanElement();
                span2.text = " World";
                p.addChild(span2);
                // event sent when graphic is done loading
                _textFlow.addEventListener(StatusChangeEvent.INLINE_GRAPHIC_STATUS_CHANGE,graphicStatusCh angeEvent);
                _textFlow.flowComposer.addController(new ContainerController(this,400,200));
                // this call compose but the graphic hasn't been loaded from the source URL yet.
                // The actualWidth and actualHeight are zero. 
                _textFlow.flowComposer.updateAllControllers();
            private function graphicStatusChangeEvent(e:StatusChangeEvent):void
                // if the graphic has loaded update the display
                // actualWidth and actualHeight are computed from the graphic's height
                if (e.status == InlineGraphicElementStatus.READY || e.status == InlineGraphicElementStatus.SIZE_PENDING)
                    _textFlow.flowComposer.updateAllControllers();

  • I need to reinstall CS5 on a machine that has had to be reformatted, i need a Support Code after obtaining the Challenge Code. Please help

    I need to reinstall CS5 on a machine that has had to be reformatted, i need a Support Code after obtaining the Challenge Code. My email address is <removed - kglad>
    Please help

    <moved from Adobe Creative Cloud to Downloading, Installing, Setting Up>
    use your serial number to activate.  if you cannot connect to adobe's server's to activate, Sign in, activation, or connection errors | CS5.5 and later

  • Cs5.5 master collection wont install After Effects or Premier

    Just upgraded from CS4 to CS5.5 and installation errors on After effects and Premier. I'm running windows 7 64 bit pro service pack 1,Duel x5650 xeons,  24 gigs of memory, 250 gb ssd. Before installing CS5 I uninstalled cs4. After the first installation error I unistalled cs5, ran the AdobeCreativeSuiteCleanerTool.exe, and removed all the adobe folders from my program files and program files(x86) folders. I've spent the last 4 hours searching for a solution, no luck yet though. I don't have any user account controls set. I think it's a font permision problem but don't know. I called adobe tech support, but no luck. Any help would be apprecieated. the following is the error code. 
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 37 error(s), 29 warning(s)
    WARNING: DW031: Payload:{2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 3.0.0.0 has been updated and has been selected for repair. The patch {42774483-D33C-46F7-8B20-FD0B1A3DAC25} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 has been updated and has been selected for repair. The patch {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 3.0.0.0 has been updated and has been selected for repair. The patch {42774483-D33C-46F7-8B20-FD0B1A3DAC25} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 has been updated and has been selected for repair. The patch {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 will be uninstalled now.
    ----------- Payload: {7F9C94CD-0BAC-4F8F-8990-6A5886F4D550} Required Common Fonts Installation x64 1.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\KozGoPro-Heavy.otf'(Seq 16)
    ERROR: DF012: Unable to find file(Seq 16)
    ERROR: Error code: 2(Seq 16)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\KozGoPro-Heavy.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 16)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 16)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.4E99CCP-1022rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Master Collection CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {E39A5ABD-516B-46F9-A042-694BBA6A4E08} Recommended Common Fonts Installation 1.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\ChaparralPro-Bold.otf'(Seq 20)
    ERROR: DF012: Unable to find file(Seq 20)
    ERROR: Error code: 2(Seq 20)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\ChaparralPro-Bold.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 20)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 20)
    ----------- Payload: {CBDD7465-CE11-4A58-9497-C370B65923F1} Required Common Fonts Installation 1.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\KozGoPro-Heavy.otf'(Seq 15)
    ERROR: DF012: Unable to find file(Seq 15)
    ERROR: Error code: 2(Seq 15)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\KozGoPro-Heavy.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 15)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 15)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\kellyc\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\kellyc\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ----------- Payload: {11C0657F-2BD4-4CBC-87F3-9455DC91886E} Recommended Common Fonts Installation x64 1.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\ChaparralPro-Bold.otf'(Seq 21)
    ERROR: DF012: Unable to find file(Seq 21)
    ERROR: Error code: 2(Seq 21)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\ChaparralPro-Bold.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 21)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 21)
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {067E43CD-3E9C-44BA-89FA-EDE7461BC22B} AIR for Apple iOS support (FB) 2.6.0.0 -----------
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {7745F18B-FD8A-4011-BE16-588900C503D0} Adobe Flash Fonts1 1.0.0.0 -----------
    ERROR: DF023: Unable to delete backup file at "C:\adobeTemp\backup\adobetmp521125891" Error 5 Access is denied.(Seq 2)
    ERROR: DW063: Error committing command ARKDeleteFileCommand(Seq 2)
    ----------- Payload: {7CF76BDA-73EA-4C46-A59D-FC3142D83E65} Adobe OnLocation CS5.1 Third Party Content Wrapper 5.1.0.0 -----------
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {301D39AF-43B1-445B-88CF-D78584200322} Adobe WinSoft Linguistics Plugin CS5.5 1.2.0.0 -----------
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {47CE893F-A0FF-4094-AA16-5209AEA7C7E0} Firefox Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeContribute6.1-FFPlugin\OEM(Seq 32)
    ----------- Payload: {208DE3D5-541C-41B0-8595-7A608A6E4306} IE Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeContribute6.1-IEPlugin\OEM(Seq 26)
    ----------- Payload: {DD309051-FACF-4A5E-87F1-C57154BB3DE8} Adobe Contribute CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeContribute6.1-mul\OEM(Seq 8283)
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {1C9D6B02-8B92-4E40-8B22-37D8C95430F0} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeFireworks11.1.0en_USLanguagePack\OEM(Seq 74)
    ----------- Payload: {DDBDE7B0-6FC4-40B1-B673-66EEE8CB60CF} Adobe Illustrator CS5.1_AdobeIllustrator15_1en_USLanguagePack 15.1.0.0 -----------
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {F9F276DA-9EC6-492C-AF58-F27C5EC19D66} Adobe Photoshop CS5.1 English Language Pack_x64_AdobePhotoshop12-en_US_x64 12.1.0.0 -----------
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ----------- Payload: {4A4F91EA-5951-4C5C-B911-027D802817EB} Office Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\CS5\payloads\AdobeContribute6.1-OfficePlugin\OEM(Seq 34)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Premiere Pro CS5.5 Support: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation x64: Install failed
    ERROR: DW050:  - AdobeMotionPicture CS5.5: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Support: Install failed
    ERROR: DW050:  - Required Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Adobe Story: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Presets: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5_AdobeAfterEffects10.5en_USLanguagePack: Install failed
    ERROR: DW050:  - Required Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeColorVideoProfilesAE CS5.5: Install failed
    ERROR: DW050:  - AmericanEnglishSpeechAnalysisModels: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Recommended Common Fonts Installation: Install failed
    ERROR: DW050:  - Adobe After Effects CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Pro CS5.5_AdobePremierePro5.5en_USLanguagePack: Install failed

    Thanks. I tried the all the steps in the link you provided. Plus a few others from adobe support, I spent about 4 ½ hours on the phone with them over the past 2 days. I reinstalled all the Microsoft payloads, updated my video drivers, admin privileges, closed all my services and startups, uninstalled adobe air, flash player, deleted a few fonts from my system, although that was a pain because I had to go into safe mode to delete them, and I lost track off the rest. I haven’t had any troubles installing any other software, including CS4.
    Here is the new error when I try to install either after effects or Premier
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 6 error(s), 4 warning(s)
    WARNING: DW031: Payload:{61A3D10A-AA4D-4E4C-B9DB-6A08D318EA41} Photoshop Camera Raw (64 bit) 6.0.0.0 has been updated and has been selected for repair. The patch {32841ECE-EC28-42CD-A4DD-6CE832A7EA8D} Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{2EBE92C3-F9D8-48B5-A32B-04FA5D1709FA} Adobe XMP Panels CS5 3.0.0.0 has been updated and has been selected for repair. The patch {42774483-D33C-46F7-8B20-FD0B1A3DAC25} Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll 3.1.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {A189C479-C7CD-4E08-8CCF-D999B68C0C71} Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All 6.3.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{37AB3C65-E02C-4DCF-B0E0-4C2E253D8FA3} Photoshop Camera Raw 6.0.0.0 has been updated and has been selected for repair. The patch {FD58D99B-9927-4226-8E00-959A4F76BD89} Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All 6.3.0.0 will be uninstalled now.
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Photoshop CS5.1 Core depends on Required Common Fonts Installation to be installed.
    ERROR: DW020:  - Adobe Illustrator CS5.1 depends on Required Common Fonts Installation to be installed.
    ERROR: DW020:  - Adobe InDesign CS5.5 Application Base Files depends on Required Common Fonts Installation to be installed.
    ERROR: DW020:  - Adobe Fireworks CS5.1 depends on Required Common Fonts Installation to be installed.
    ERROR: DW020:  - Adobe Encore CS5.1 depends on Required Common Fonts Installation to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

  • Wrong path on JNLP chain

    Hi
    Sorry to post it here, but I was unable to find where We can post JavaFX Issues.
    This is a minor issue, but need to be adressed.
    I always set my java Console to shown, to test my applets, etc.
    While testing some JavaFX, I could note that JavaFX has a wrong path, or a wrong path chaining:
    network: Connecting http://javafx.com/launch/lib/lib/basickit.jar with cookie "JSESSIONID=c3c4962140d944b30859de123fae; s_cc=true; s_sq=%5B%5BB%5D%5D"
    java.io.FileNotFoundException: http://javafx.com/launch/lib/lib/basickit.jar
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.downloadJAR(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack.access$000(Unknown Source)
         at sun.plugin.PluginURLJarFileCallBack$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin.PluginURLJarFileCallBack.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.retrieve(Unknown Source)
         at sun.net.www.protocol.jar.URLJarFile.getJarFile(Unknown Source)
         at sun.net.www.protocol.jar.JarFileFactory.get(Unknown Source)
         at sun.net.www.protocol.jar.JarURLConnection.connect(Unknown Source)
    (...)Note the correnct URL is
    http://javafx.com/launch/lib/basickit.jar an not
    http://javafx.com/launch/lib/lib/basickit.jar , without the extra /lib
    A few lines later there is a correct call to basickit.jar :
    network: Connecting http://javafx.com/launch/lib/basickit.jar.pack.gz with cookie "JSESSIONID=c3c4962140d944b30859de123fae; s_cc=true; s_sq=%5B%5BB%5D%5D"
    network: ResponseCode for http://javafx.com/launch/lib/basickit.jar.pack.gz : 304
    network: Encoding for http://javafx.com/launch/lib/basickit.jar.pack.gz : null
    network: Disconnect connection to http://javafx.com/launch/lib/basickit.jar.pack.gzI hope it help to find out a fix.
    A.

    Which applet were you running?It happens on several demos at JavaFX.com .
    Perhaps in all of then.

  • "Adobe Illustrator cs5 quit unexpectedly" error message. After I upgratded my imac to Mavericks I can't open Illustrater CS5. Help pls.

    "Adobe Illustrator cs5 quit unexpectedly" error message.
    After I upgrated my imac from Snow Leopard to Mavericks I can't open Illustrator CS5. (No problem with PS)
    Every opening attemp crashes. May this be possible because of third party plug-ins. (eg. Esko Artwork)
    Help pls.
    Thank you.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
    SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
    DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    ☞ If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    ☞ Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • My Adobe InDesign keeps Crushing when I try to either package my document  or even try to export to pdf. This is the crush report: Process:         Adobe InDesign CS5 [2750] Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents

    Process:         Adobe InDesign CS5 [2750]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.0.355 (7000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [114]
    Date/Time:       2012-10-20 18:55:00.942 +0300
    OS Version:      Mac OS X 10.7.4 (11E2617)
    Report Version:  9
    Interval Since Last Report:          95465 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  55570 sec
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      498C85C8-4C43-4643-87AB-DF190AB2F2BE
    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 CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Application Specific Information:
    objc[2750]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0xacd47630 _XHNDL_trapback_instruction + 0
    1   ???                                     0xffffffff 0 + 4294967295
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x99f8390a kevent + 10
    1   libdispatch.dylib                       0x96b3fe10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96b3e85f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x984e03a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    5   PMRuntime.dylib                         0x00014130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    7   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    8   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x99f80c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x99f801f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x9856d0ec TS_exception_listener_thread + 90
    3   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    4   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0ad8b126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services                  0x0ad83db0 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x0ad8b18c C_AMTUISwitchSuppressUpdates + 16870
    6   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    7   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   TINthread.dylib                         0x0d0f47a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x0d0f483f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework          0x0b983ffa GetPlugIn + 1045098
    4   com.adobe.InDesign.AppFramework          0x0b97ff43 GetPlugIn + 1028531
    5   com.adobe.InDesign.AppFramework          0x0b98014c GetPlugIn + 1029052
    6   com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    7   boost_threads                           0x01704fcd thread_proxy + 141
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework          0x0b983ffa GetPlugIn + 1045098
    4   com.adobe.InDesign.AppFramework          0x0b97ff43 GetPlugIn + 1028531
    5   com.adobe.InDesign.AppFramework          0x0b98014c GetPlugIn + 1029052
    6   com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    7   boost_threads                           0x01704fcd thread_proxy + 141
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x99f82bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x92bc27b9 nanosleep$UNIX2003 + 187
    2   com.adobe.InDesign.Support for JavaScript          0x105bbfab GetPlugIn + 344123
    3   com.adobe.InDesign.Support for JavaScript          0x1059f9c3 GetPlugIn + 227923
    4   com.adobe.InDesign.Support for JavaScript          0x105bc0b8 GetPlugIn + 344392
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x99f82a9a __recvfrom + 10
    1   libsystem_c.dylib                       0x92bc24a2 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x18de26cf Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x18de176e Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x18de061f Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x18de0671 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x18de06fb Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x18ddaafe Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x18ddace7 Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x18ddb8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x18ddb9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x18ddedb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x18ddf059 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x18ddf687 Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x18ddf884 Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x18dd1826 Login + 1654
    16  ServiceManager-Launcher.dylib           0x18dd2c71 Login + 6849
    17  ServiceManager-Launcher.dylib           0x18ddfdf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x18de2341 Invoke + 53977
    19  libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    20  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x246a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl                     0x248180d8 APXGetHostAPI + 4096584
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x246a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl                     0x246bd6de APXGetHostAPI + 2676814
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 26:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 30:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 31:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 32:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99f82b42 __select + 10
    1   com.apple.CoreFoundation                0x97ab5e15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    3   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 33:
    0   libsystem_c.dylib                       0x92c0ec1e pthread_threadid_np + 38
    1   libsystem_c.dylib                       0x92c0c857 __mtx_droplock + 102
    2   libsystem_c.dylib                       0x92c0cc4c pthread_mutex_unlock + 320
    3   AdobeBIB                                0x00813c7c BIBInitialize2 + 40588
    4   AdobeBIB                                0x00806fe6 0x803000 + 16358
    5   AdobeBIB                                0x00806ec4 0x803000 + 16068
    6   AdobeBIBUtils                           0x0082d212 0x828000 + 21010
    7   AdobeBIBUtils                           0x0083501c 0x828000 + 53276
    8   AdobeBIBUtils                           0x0083258a 0x828000 + 42378
    9   AdobeBIBUtils                           0x008354df 0x828000 + 54495
    10  AdobeBIBUtils                           0x00833fe7 0x828000 + 49127
    11  AdobePDFSettings                        0x11432acf JoboptionsParserUtils::GetValue(char**) + 1179
    12  AdobePDFSettings                        0x11432f50 JoboptionsParserUtils::GetValue(char**) + 2332
    13  AdobePDFSettings                        0x11433158 JoboptionsParserUtils::GetValue(char**) + 2852
    14  AdobePDFSettings                        0x11432f50 JoboptionsParserUtils::GetValue(char**) + 2332
    15  AdobePDFSettings                        0x1142a543 PDFSettingsParser::Joboptions_To_CPOSDict(BIB_T_NMT::CBIBPositionableStream const&) + 1143
    16  AdobePDFSettings                        0x1142aac3 PDFSettingsParser::PDFSettingsParser(BIB_T_NMT::CBIBPositionableStream const&) + 67
    17  AdobePDFSettings                        0x1141fbf7 PDFSettingsImpl::PDFSettingsStream::ConvertJobOptionsToCPOSDict(BIB_T_NMT::CBIB PositionableStream const&, char const*) + 35
    18  AdobePDFSettings                        0x114224c1 _PDFSettingsNewFromStreamProc_NewFromStream + 157
    19  com.adobe.InDesign.PDF                  0x110f4929 GetPlugIn + 44953
    20  com.adobe.InDesign.PDF                  0x110f6a24 GetPlugIn + 53396
    21  com.adobe.InDesign.PDF                  0x110e9e6c GetPlugIn + 1244
    22  ObjectModelLib.dylib                    0x01063ccd 0x1038000 + 179405
    23  ObjectModelLib.dylib                    0x01070ec8 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 23784
    24  DataBaseLib.dylib                       0x010ce158 0x10c9000 + 20824
    25  com.adobe.InDesign.PDF                  0x111d580f GetPlugIn + 966271
    26  com.adobe.InDesign.PDF                  0x111ce09e GetPlugIn + 935694
    27  com.adobe.InDesign.PDF                  0x111cef9a GetPlugIn + 939530
    28  PublicLib.dylib                         0x011644d2 Command::DoImmediate(short) + 34
    29  com.adobe.InDesign.Utilities            0x0cb10aa3 0xcb0f000 + 6819
    30  com.adobe.InDesign.Utilities            0x0cb10ccc 0xcb0f000 + 7372
    31  com.adobe.InDesign.AppFramework          0x0b87a6e8 0xb860000 + 108264
    32  com.adobe.InDesign.AppFramework          0x0b86cfc1 0xb860000 + 53185
    33  PublicLib.dylib                         0x011655aa CmdUtils::ProcessScheduledCmds(ICommand::Priority) + 74
    34  ObjectModelLib.dylib                    0x01091255 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 155765
    35  PublicLib.dylib                         0x0143e571 ExecutionContextUtils::InitExecutionContext(boost::intrusive_ptr<IDatabaseSnaps hot>) + 353
    36  com.adobe.InDesign.AppFramework          0x0b980135 GetPlugIn + 1029029
    37  com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    38  boost_threads                           0x01704fcd thread_proxy + 141
    39  libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    40  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   TINthread.dylib                         0x0d0f47a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x0d0f483f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000005  ecx: 0x00000000  edx: 0x26707000
      edi: 0x00000000  esi: 0x00000100  ebp: 0xbfffbed8  esp: 0xbfffbab0
       ss: 0x00000023  efl: 0x00010246  eip: 0xacd47630   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 2
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign (7.0.0.355 - 7000) <95D99393-D179-BC50-386C-509F6FD0809A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        0xa000 -     0xafff +InDesignModel (??? - ???) <D054C2C9-F070-A1E1-2D78-BACDC9DCC960> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xe000 -     0xefff +InDesignModelAndUI (??? - ???) <770DFBFF-7C31-ECD4-88FE-BCFED53CFC33> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAnd UI
       0x12000 -    0x19ff3 +PMRuntime.dylib (??? - ???) <EC9AB7BF-B671-AE6F-5C9E-7A49F9C265BE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMRuntime.dylib
       0x20000 -   0x134fff +AdobeACE (??? - ???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x157000 -   0x67dfff +AdobeAGM (??? - ???) <6F8EB120-6F01-38AE-8363-BC941B8AE12E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7be000 -   0x7fafff +AdobeARE (??? - ???) <EF398654-5384-F84A-8B62-DA1F64E2FAD1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x803000 -   0x81efff +AdobeBIB (??? - ???) <CDFB3340-3A46-292A-121E-2820EC62D78E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x828000 -   0x849ff7 +AdobeBIBUtils (??? - ???) <482199DF-1251-ED75-4958-563C6E49CD6F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x855000 -   0xb47ff7 +AdobeCoolType (??? - ???) <2BF62C8A-D715-FDE8-650C-1984CFFCE33C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xbcf000 -   0xfa7ff7 +AdobeMPS (??? - ???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x1038000 -  0x10a6ff7 +ObjectModelLib.dylib (??? - ???) <B71699FF-823E-D40E-A62F-2E9FD2FE9B56> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ObjectModelLib.dylib
    0x10c9000 -  0x1123fe7 +DataBaseLib.dylib (??? - ???) <3FC5D05A-298D-654B-F235-C0579E0A347F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/DataBaseLib.dylib
    0x113c000 -  0x1553fff +PublicLib.dylib (??? - ???) <D0EB805F-5E47-2677-CA21-5C51D510234F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PublicLib.dylib
    0x16da000 -  0x16f1ff6 +AdobeAFL (??? - ???) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1702000 -  0x170aff3 +boost_threads (??? - ???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x1714000 -  0x1719ffd +ASLSupportLib.dylib (??? - ???) <D4BEF46E-063B-696F-FE83-DD943ABA838A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ASLSupportLib.dylib
    0x171e000 -  0x171fff2 +libtbbmalloc.dylib (??? - ???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1723000 -  0x1731fe7 +libtbb.dylib (??? - ???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbb.dylib
    0x1739000 -  0x1871fe7 +WRServices (??? - ???) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x18b3000 -  0x18b7ffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
    0x18be000 -  0x226efff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36. 0
    0x2271000 -  0x233eff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libi cui18n.dylib.36.0
    0x23a1000 -  0x247bfef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36 .0
    0x24bb000 -  0x252bfeb +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2536000 -  0x259cffb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x25b2000 -  0x264bfef +boost_regex (??? - ???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2690000 -  0x26cdfff  com.apple.vmutils (4.2.1 - 107) <C491B259-8C5C-3199-83A0-97422C59C4E2> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x26e7000 -  0x2794ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x27d9000 -  0x27dbffb +boost_system (??? - ???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x27e0000 -  0x297cfff +WidgetBinLib.dylib (??? - ???) <A653F189-2C78-4606-1921-350F81951C7C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2a5a000 -  0x2bf9fe7 +com.adobe.owl (AdobeOwl version 3.0.84 - 3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2c62000 -  0x2cdffff +AdobeOwlCanvas (??? - ???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2cfb000 -  0x2cfeff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x697d000 -  0x6985fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x9abd000 -  0x9abeff3 +com.adobe.InDesign.Metadata Database Filter (7.0.0.355 - ???) <8153D24F-2DB5-B2AB-9717-70E7532E8B02> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x9ac2000 -  0x9addffb +com.adobe.InDesign.IME (7.0.0.355 - ???) <3510053A-A752-0311-B35B-14EBEAC6D18D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x9aed000 -  0x9aeeff1 +com.adobe.InDesign.Global Preferences Panel (7.0.0.355 - ???) <DF2380A0-A851-5529-7A36-1A3973B89200> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x9af2000 -  0x9afaffc +com.adobe.InDesign.Workgroup Client UI (7.0.0.355 - ???) <282ADA7E-C3D6-ADF8-6FB8-466B5F074934> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0xad66000 -  0xadcdfea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xb1ec000 -  0xb225ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 1.0.0.64 - 1.0.0.64) <C64CCBDC-B8E9-45E8-53E7-8577CFE9F2F0> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNo tifications
    0xb3e5000 -  0xb3f9fff +AdobeSFL (??? - ???) <83D25893-376A-89D9-BA9B-078913B8D34F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0xb860000 -  0xb9effe3 +com.adobe.InDesign.AppFramework (7.0.0.355 - ???) <B180AD73-E11C-ADA9-619A-C963D23DFF5A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0xc277000 -  0xc3f2ff7 +com.adobe.InDesign.Layout UI (7.0.0.355 - ???) <37BB6E3D-6E3C-05D7-1EDB-F8D5D8171EA4> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0xc478000 -  0xc4b2ff7 +com.adobe.InDesign.Import Export UI (7.0.0.355 - ???) <9B259867-0C2E-6976-E3A3-431F92EC255A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0xc4d3000 -  0xc5a5ff7 +com.adobe.InDesign.Hyperlinks (7.0.0.355 - ???) <E1361CF8-1690-FD55-6D73-3CCA8296195F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0xc5ee000 -  0xc658ff7 +com.adobe.InDesign.Master Page (7.0.0.355 - ???) <326A0DCE-DEF8-19EB-D6D2-8B1B27E8D52C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0xc67e000 -  0xc80ffeb +com.adobe.InDesign.Text Walker (7.0.0.355 - ???) <6FF2466F-5761-CB4D-1CBA-B79F8AFFEED7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0xc8af000 -  0xc8f2ff7 +com.adobe.InDesign.Linguistics (7.0.0.355 - ???) <BF4F5396-52F8-68EA-AEFE-5A04BDB96DA6> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0xc912000 -  0xc960fff +com.adobe.InDesign.Text Panel (7.0.0.355 - ???) <B7A2C124-8C5A-F83F-10C1-1D092A258703> /Applications/Adobe InDesign CS5/*/Text Panel
    0xc980000 -  0xc9afff0 +TextPanelLib.dylib (??? - ???) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/TextPanelLib.dylib
    0xc9cb000 -  0xca0bffc +com.adobe.InDesign.Spelling Panel (7.0.0.355 - ???) <96DE3DF1-C22F-AF2F-4278-FDAAE598E3D6> /Applications/Adobe InDesign CS5/*/Spelling Panel
    0xca2b000 -  0xcad3fff +com.adobe.InDesign.Text Editor (7.0.0.355 - ???) <93D5B8A9-827E-4E67-BD48-5F00BA9D4760> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0xcb0f000 -  0xcb33fef +com.adobe.InDesign.Utilities (7.0.0.355 - ???) <AD54DEC4-0286-5511-D508-43356FD1E899> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0xcb4b000 -  0xcd2cfff +com.adobe.InDesign.Package and Preflight (7.0.0.355 - ???) <A0C40C94-3677-DE71-82E5-458C6CAFDB58> /Applications/Adobe InDesign CS5/*/Package and Preflight
    0xcdba000 -  0xce12ff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xce21000 -  0xce47ff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0xce4f000 -  0xcf25fef +com.adobe.InDesign.Color Management (7.0.0.355 - ???) <8BF046A2-C7F5-6DEB-8150-1646329874A8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0xd0af000 -  0xd0ddff2 +com.adobe.Reader for DOCX (Reader for DOCX 5.5.0.7351 - 5.5.0.7351) <DB73F46F-0AF2-85C4-7890-0607F6949AF8> /Applications/Adobe InDesign CS5/*/Reader for DOCX
    0xd0ed000 -  0xd0eeff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xd0f3000 -  0xd0f6fff +TINthread.dylib (??? - ???) /Library/Application Support/Adobe/*/TINthread.dylib
    0xd200000 -  0xd461feb +com.adobe.InDesign.Application UI (7.0.0.355 - ???) <E800160A-CD7D-ECCA-F435-E140ECDE929F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0xd562000 -  0xd5fafff +com.adobe.AdobeExtendScript (ExtendScript 4.1.15 - 4.1.15.6523) <6C362E34-C8F3-D0EE-E331-027382A19A68> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
    0xd638000 -  0xd6c5ff7 +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.7519) <AF48351A-8019-EC04-BF85-CE117D1146E3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0xd6f7000 -  0xd74affb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0xd787000 -  0xd914ffb +com.adobe.InDesign.Document Framework (7.0.0.355 - ???) <15B95422-2F2D-6CC7-5EB3-27A447C47036> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0xda0a000 -  0xdb1aff3 +com.adobe.InDesign.SangamServicer-Mapper (7.0.0.355 - ???) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InDesign CS5/*/SangamServicer-Mapper
    0xdb65000 -  0xdbceffb +AdobeSangam (3.0.0 - compatibility 3.0.0) <4FF2270C-9417-1059-527B-68C99BF43EA9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xdc18000 -  0xdce5fe7 +AdobeAXEDOMCore (??? - ???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
    0xdd12000 -  0xddcbfff +AdobeAXSLE (??? - ???) <A8C8ECD6-9098-8EA6-EA22-3BCCCB81A29B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0xddf5000 -  0xde78ff2 +AdobeSangamML (??? - ???) <B0029614-553A-BEAB-21E1-0664E5481F68> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0xdea9000 -  0xdf0eff3 +com.adobe.Reader for Excel (Reader for Excel 5.5.0.7351 - 5.5.0.7351) <13A79647-FDEE-DA76-4D9D-AD328F170941> /Applications/Adobe InDesign CS5/*/Reader for Excel
    0xdf27000 -  0xdfaffff +com.adobe.Reader For PageMaker (Reader For PageMaker 5.5.0.7351 - 5.5.0.7351) <CB3DC121-77F5-1289-537F-D979E601407F> /Applications/Adobe InDesign CS5/*/Reader for PageMaker
    0xdfd1000 -  0xdff5ffb +PMFileReader.dylib (??? - ???) <5C6DA068-A794-2099-9E3B-7F51E5FC478E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMFileReader.dylib
    0xdffa000 -  0xe0fafff +com.adobe.Reader for Quark (Reader for Quark 5.5.0.7351 - 5.5.0.7351) <A525EFDE-6074-8CA1-6145-76B57CB0F448> /Applications/Adobe InDesign CS5/*/Reader for Quark
    0xe11f000 -  0xe185ff4 +com.adobe.Reader for RTF (Reader for RTF 5.5.0.7351 - 5.5.0.7351) <735AD3FF-36DE-C1B9-7EEA-ECCF3E929D1A> /Applications/Adobe InDesign CS5/*/Reader for RTF
    0xe1a3000 -  0xe217ff4 +com.adobe.Reader for Word (Reader for Word 5.5.0.7351 - 5.5.0.7351) <6E36D3D4-6EB7-8C51-9021-3C9301A089E4> /Applications/Adobe InDesign CS5/*/Reader for Word
    0xe234000 -  0xe2a9fe2 +com.adobe.Reader for XLSX (Reader for XLSX 5.5.0.7351 - 5.5.0.7351) <4020D646-03F7-B2A1-D3D3-4EFB98472E1B> /Applications/Adobe InDesign CS5/*/Reader for XLSX
    0xe2d0000 -  0xe2d8ff7 +com.adobe.ZTextReader (ZTextReader 5.5.0.7351 - 5.5.0.7351) <851A0B77-2110-B419-A8EB-B051C6CB7653> /Applications/Adobe InDesign CS5/*/ZTextReader
    0xe35d000 -  0xe3c1ff7 +com.adobe.InDesign.XMLParser (7.0.0.355 - ???) <16D1BE18-BDC0-598D-3DD6-933CE96E818D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0xe3e7000 -  0xe5aefef +com.adobe.InDesign.XML (7.0.0.355 - ???) <9B37046A-48B2-C794-E572-E7DFADAF8A30> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0xe647000 -  0xe66bfff +com.adobe.InDesign.WorldReady (7.0.0.355 - ???) <0B2B29B2-1DF5-BA1C-3F0D-01E8B3988813> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0xe67d000 -  0xe6b1ffb +com.adobe.InDesign.Workgroup (7.0.0.355 - ???) <724EA9BC-EFD4-9710-E20E-4B1C74304C7D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0xe6c6000 -  0xe6e1fff +com.adobe.InDesign.Workgroup Client (7.0.0.355 - ???) <193F094B-02D9-988A-47E6-C7E502E9F716> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0xe6f0000 -  0xe804feb +com.adobe.InDesign.Widgets (7.0.0.355 - ???) <AE4D2421-4E04-1153-615A-78CEEC745C3E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0xe887000 -  0xe995fef +com.adobe.InDesign.Transparency (7.0.0.355 - ???) <7817B498-6756-5590-87B8-307C1B4422E8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0xe9e0000 -  0xf723fff +com.adobe.psl (AdobePSL 12.0.0.7524 - 12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfa62000 -  0xfab4ff1 +com.adobe.InDesign.TOC (7.0.0.355 - ???) <9EDF02F0-E9A9-58F8-5E3E-7C9C1ADA9849> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0xfad2000 -  0xffc7fe7 +com.adobe.InDesign.Text (7.0.0.355 - ???) <6F8AF442-9D31-5CC3-7740-04539BA37EB8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x10133000 - 0x10198fff +com.adobe.InDesign.Text Wrap (7.0.0.355 - ???) <557851E0-6260-DE31-3AFA-8008B49FBCE2> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x101bc000 - 0x101e6fff +com.adobe.InDesign.Text Wrap Path (7.0.0.355 - ???) <9BFEF65A-3909-03F2-0501-CC32FAAABF5A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0x101f0000 - 0x101fffff +com.adobe.InDesign.Text Editor Model (7.0.0.355 - ???) <8E01C18E-4947-93AB-71CA-E017C80FB09C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x10209000 - 0x10252fff +com.adobe.InDesign.Text Attributes (7.0.0.355 - ???) <07B49878-E35A-C031-205F-A25256640FCA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x10277000 - 0x102befff +com.adobe.InDesign.TableStyles (7.0.0.355 - ???) <59E0C1A1-4044-C145-6414-61CF041E9968> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0x102d5000 - 0x104cefff +com.adobe.InDesign.Table Model (7.0.0.355 - ???) <F13B1585-BAAD-4C84-07BE-6428CEDA35B3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x1055b000 - 0x105e5ff7 +com.adobe.InDesign.Support for JavaScript (7.0.0.355 - ???) <196259C9-B203-DD5B-0733-8D146FC78723> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0x1061e000 - 0x10662fff +com.adobe.InDesign.Support for AppleScript (7.0.0.355 - ???) <DEC65072-2AB5-9901-9CBC-6FED676B2B04> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0x1067b000 - 0x1074afe7 +com.adobe.InDesign.Graphics (7.0.0.355 - ???) <97D16769-E6A4-AA23-7907-BD845CB4D9AD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x10793000 - 0x107e2ffb +com.adobe.InDesign.Stroke and Fill (7.0.0.355 - ???) <42B4A176-B4DA-C638-A59F-94F3A3FFB416> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x107fe000 - 0x108e1ffb +com.adobe.InDesign.Spread (7.0.0.355 - ???) <9BF0ADE3-0354-1790-AA19-DD6E7E495384> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x1092d000 - 0x10972ff0 +com.adobe.InDesign.Spread UI (7.0.0.355 - ???) <6B9E2DAE-304A-1E95-E46E-D37CC49BEEA1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x1098c000 - 0x109c8fff +com.adobe.InDesign.Spline (7.0.0.355 - ???) <55F1F2F2-0BB7-96C1-726C-6D3E47351086> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x109e4000 - 0x10a1dfff +com.adobe.InDesign.Spline UI (7.0.0.355 - ???) <B40249D1-919F-FFC8-8E6F-344A29CF063B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x10a3b000 - 0x10a49fff +com.adobe.InDesign.Spelling Service (7.0.0.355 - ???) <DBB0C9F7-934B-15B5-5CF5-FBEEE83ACC99> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x10a55000 - 0x10a62fff +com.adobe.InDesign.Sound (7.0.0.355 - ???) <15A968FB-7F7D-1022-9E99-70A3818AC346> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x10a6d000 - 0x10a87ff2 +com.adobe.InDesign.Sections (7.0.0.355 - ???) <5AFD740D-904C-2F9B-DE71-375B2B948BCF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x10a96000 - 0x10b2fff7 +com.adobe.InDesign.Scripting (7.0.0.355 - ???) <6E2BCE6C-230C-1724-CC70-12522818EBC3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x10b60000 - 0x10b7afff +com.adobe.InDesign.Rulers (7.0.0.355 - ???) <2546DE05-52F1-033E-90D0-03ED797D585C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x10b89000 - 0x10cd4fff +com.adobe.InDesign.Print (7.0.0.355 - ???) <F6B4CCEF-06B9-5E17-9102-2B29A6713D6A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x10d33000 - 0x10d65ff7 +com.adobe.InDesign.PNG Import Filter (7.0.0.355 - ???) <2C6DDB20-C560-14DD-84DC-A2AB8B6C0793> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x10d6e000 - 0x10da1ff7 +com.adobe.InDesign.Photoshop Import Filter (7.0.0.355 - ???) <E31C18E9-8962-5D0C-7289-E5E02EA16AC9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x10db7000 - 0x10e0aff3 +com.adobe.InDesign.Book (7.0.0.355 - ???) <CF89E43A-02A5-8A0A-2AF8-B85117122C18> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x10e2d000 - 0x10f22fe7 +com.adobe.InDesign.Image (7.0.0.355 - ???) <6261B004-671B-9411-3EF0-CC84D91752BA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x10f70000 - 0x10f79ffb +com.adobe.InDesign.Group (7.0.0.355 - ???) <DCC2D180-2385-BED5-873A-FE87139634AF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x10f82000 - 0x11066fef +com.adobe.InDesign.EPS Page Item (7.0.0.355 - ???) <1C272994-750B-D8D1-02B6-6BD2534FD04F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x110ac000 - 0x1127efff +com.adobe.InDesign.PDF (7.0.0.355 - ???) <B19F021E-5955-B381-2EB4-DB064290CDF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x11306000 - 0x113e9fef +AdobePDFPort (??? - ???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x1141e000 - 0x11439ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetti ngs
    0x11453000 - 0x11601fff +com.adobe.InDesign.Generic Page Item (7.0.0.355 - ???) <84651032-F791-88BD-C15F-407A4032542D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x1168d000 - 0x116c6ffb +com.adobe.InDesign.Path Type (7.0.0.355 - ???) <7867A3AB-4925-CBF7-1877-7924AD7A732D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x116e1000 - 0x116e9ff3 +PathTypeLib.dylib (??? - ???) <F753ACE3-9AB5-

    Also try the adobe forums (and better to skip the crash report unless someone asks for it)
    http://forums.adobe.com/index.jspa

  • What is wrong in this java code?

    Can someone please tell me what is wrong in this java code?
    /* The program is intended to start animating text at the click of a button, pause it at another click and resume at the next click. It should continue like this */
    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TextAnime implements Runnable
    JFrame frame;
    boolean flag;
    Thread animeThread;
    JLabel label;
    String[] textArray;
    public TextAnime()
    flag = false;
    animeThread = new Thread(this);
    frame = new JFrame("Animate Text");
    GridBagLayout gbl = new GridBagLayout();
    GridBagConstraints gbc = new GridBagConstraints();
    frame.setLayout(gbl);
    JButton button = new JButton("Start");
    label = new JLabel("Stopped");
    textArray = new String[5];
    String textArray1[] = {"Programmer", "SportsMan", "Genius", "Friend", "Knowledgable"};
    for(int ctr = 0; ctr<5 ; ctr++)
    textArray[ctr] = textArray1[ctr];
    gbc.weightx = 1;
    gbc.gridx = 0;
    gbl.setConstraints(button,gbc);
    frame.getContentPane().add(button);
    ButList bl = new ButList();
    button.addActionListener(bl);
    gbc.gridx = 1;
    gbl.setConstraints(label,gbc);
    frame.getContentPane().add(label);
    frame.setSize(200,150);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
    frame.setVisible(true);
    public class ButList implements ActionListener
    public void actionPerformed(ActionEvent evt)
    if(flag == false)
    flag = true;
    animeStart();
    else
    flag = false;
    //animeStop();
    public synchronized void animeStart()
    animeThread.start();
    Thread newThread;
    newThread = Thread.currentThread();
    newThread.notify();
    public void animeStop()
    animeThread.interrupt();
    public void run()
    int i = 0;
    try
    while(i == i)
    if(i==5)
    i=0;
    label.setText(textArray);
    animeThread.sleep(1000);
    i++;
    if (flag == false)
    animeThread.wait();
    catch(InterruptedException ie)
    label.setText("Stopped");
    public static void main(String args[])
    TextAnime ta = new TextAnime();
    Please tell me if this can be written in a more simpler manner. Also please correct this code. I am tired after trying many times.

    When I fix your error, compile and run it, I get this exception:
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalMonitorStateException
         at java.lang.Object.notify(Native Method)
         at cruft.TextAnime.animeStart(TextAnime.java:81)
         at cruft.TextAnime$ButList.actionPerformed(TextAnime.java:63)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    %

  • JSF - Why getting wrong path Handling URLs in Facelets Templates

    Hi, I am trying to do a web application using JSF, Facelets in Netbeans 6.7. but I am having a problem:
    Why I am getting wrong path ?
    It is very simple, straight forward web application.
    When run, it shows the template-client.xhtml perfectly . The navigation menu is shows ok, but they don't work. However, if I enter in the browser address http://localhost:8080/test3/portal/products.jsf it goes perfect to the right page and the navigation between About, Products and Home works perfect. But once I click on Home, the menu start to give me errors. Looks like the path is wrong again.
    folders structure:
    test3My code:
    faces-config.xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config version="1.2"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
        <application>
            <view-handler>
                com.sun.facelets.FaceletViewHandler
            </view-handler>   
        </application>
    </faces-config>web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <context-param>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>com.sun.faces.validateXml</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
            <param-value>.xhtml</param-value>
        </context-param>
        <context-param>
            <param-name>facelets.DEVELOPMENT</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>facelets.SKIP_COMMENTS</param-name>
            <param-value>true</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.jsf</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>forward.jsp</welcome-file>
            </welcome-file-list>
        </web-app>forward.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <jsp:forward page="template-client.jsf"/>template-client.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html">
        <body>
            This text above will not be displayed.
            <ui:composition template="/template.xhtml">
                This text will not be displayed.
                <ui:define name="title">
                    Facelets
                </ui:define>
                This text will also not be displayed.
                <ui:define name="body">
                    Hello from the Facelets client template!
                </ui:define>
                This text will not be displayed.
            </ui:composition>
            This text below will also not be displayed.
        </body>
    </html>template.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:ice="http://www.icesoft.com/icefaces/component">
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
            <title>Facelets - Template Example</title>
            <link href="#{facesContext.externalContext.requestContextPath}/css/default.css" rel="stylesheet" type="text/css" />
        </head>
        <body>
            <div id="menu">
                <ui:insert name="linemenu">
                    <ul>
                        <li><a href="../forward.jsp">Home</a></li>
                        <li><a href="about.jsf">About Us</a></li>
                        <li><a href="products.jsf">Products</a></li>
                    </ul>
                </ui:insert>
            </div>
            <div>
            <h1>
                <ui:insert name="title">Default Title</ui:insert>
            </h1>
            <p>
                <ui:insert name="body">Default Body</ui:insert>
            </p>
            </div>
        </body>
    </html>about.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets">
        <body>
            <ui:composition template="./../template.xhtml">
                <ui:define name="title">
                    title ABOUT
                </ui:define>
                <ui:define name="body">
                    body ABOUT
                </ui:define>
            </ui:composition>
        </body>
    </html>products.xhtml:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets">
        <body>
            <ui:composition template="./../template.xhtml">
                <ui:define name="title">
                    title PRODUCTS
                </ui:define>
                <ui:define name="body">
                    body PRODUCTS
                </ui:define>
            </ui:composition>
        </body>
    </html>

    My folders:
    Test3
         Web Pages
              /WEB-INF
              /css
                  -default.css
              /layouts
              /portal
                  -about.xhtml
                  -products.xhtml
              -forward.jsp
              -template.xhtml
              -template-client.xhtmlPlease, I need help with this. It may is very easy to find out, I maybe skiping something
    Thank for your help anyone!!!

  • Profile pictures wrong Path

    I have setup the thumbnail pictures for users in Sharepoint 2013. I can browse the library throughy this  link
    http://myserver/sites/mysite/_layouts/15/start.aspx#/User%20Photos/Forms/Thumbnails.aspx?RootFolder=%2Fsites%2Fmysite%2FUser%20Photos%2FProfile%20Pictures&FolderCTID=0x0120008BF2C6579F4E1947B6C670F4524E2C06&View=%7BDF932ADB%2D33D5%2D4024%2DA88C%2DA4B0253DBE98%7D
    but when I open a user page, the picture is not loading. I see from the debugger that is calling the following url which is missing a "/" right after the sites/mysite
    http://myserver/sites/mysiteUser%20Photos/Profile%20Pictures/j_doe_LThumb.jpg?t=63560464578
    How can I fix this??
    CKotsis

    Hi CKotsis,
    According to your description, my understanding is that the profile picture showed a wrong path.
    Please try to run a full user profile sync, compare the result.
    Please modify and run the following PowerShell commands to check if it works:
    $site = get-spsite "https://sharepoint" 
    $context= [Microsoft.office.server.servercontext]::GetContext($site)  
    $userProfileManager = new-object Microsoft.office.server.userprofiles.userprofilemanager($context)  
    $profiles = $userProfileManager.GetEnumerator()
        foreach ($profile in $profiles)
         $Matchurl = "mysitesUser Photos"
          if($profile["pictureurl"].value -match $matchurl)
                     Write-host $profile["AccountName"].value "contains incorrect url"
                     $CurrentURL = $profile["Pictureurl"].value
                     $CurrentURL = $CurrentURL.tostring()
                     $GoodUrl = "mysites/User Photos"
                     $CorrectUrl = $CurrentURL.replace($matchurl,$goodurl)
                     $profile["pictureurl"].value = $correcturl
                     $profile.commit()
                     Write-host $profile["AccountName"].value "PictureURL has been corrected"
    Here is a similar post for your reference:
    https://social.technet.microsoft.com/Forums/office/en-US/1fa50226-a495-4d3c-8fd3-da9fdede6a52/wrong-profile-picture-url?forum=sharepointadminprevious
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Wrong translation of escape codes?

    We use the Oracle XSLT processor on Oracle 8i. Problem is, the source document contains escape codes for foreign characters, an example is &#243;
    However, no matter what escape codes we use, the target document, after xsl translation, always translates this into two bytes: BF BF.
    What are we doing wrong? Our source document AND our xsl sheet contain the ISO-8859-1 encodings, and using a download version of the oracle 9i xsl parser in Cooktop produces the correct result (in our example, the escape code is translated into the byte F3).
    Could it be something in the session NLS settings?

    By the way, we store the result document in a CLOB. Maybe this could be the problem?

  • Teststand 3.0 Deployment looking for a file(glang.chm) in a wrong path

    Hi, Please help
    i just try deploy an installer using TestStand 3.0. it can successfully process the workspace file,  But, when the TestStand deployment tool try to build the installer, it keep looking for one of project file(glang.chm) in a wrong path, the error message is following, see the attachment for the screen shot  
    Error Code:7
    Could not process LabVIEW VIs. Fix any broken VIs before rebuilding. LabVIEW error:
    C:\MVS 2\data\data\data\glang.chm - source does not exist
    +++++++++++++++++++++++++++++++++++++++++++++++++
    i understand that it is looking for glang.chm in "C:\MVS 2\data\data\data\", but in my project, glang.chm actually is under "C:\MVS 2\data\". In order to make it works, i need to create the path "C:\MVS 2\data\data\data\" and copy glang.chm into the path.
    My question is: How to change the setting in TestStand deployment tool, so that it would look for glang.chm in corrected path"C:\MVS 2\data\", not in "C:\MVS 2\data\data\data\" ?
    Attachments:
    error message(screen shot).jpg ‏184 KB

    Well, David's solution works as expected. It copies the the pristine .lnk file from the startup menu to the desktop.
    This .lnk file will start only the operator interface testexec.exe without loading any sequence.
    Now I did try a modification. I did create a .lnk file, which loads the sequence file automagically by providing the right commandline arguments to testexec.exe. This .lnk file works on the development system either I start it from desktop or from some normal directory with the explorer.
    And now I try to add that .lnk file to the deployed files like all other deployed files by adding it to some project in the workspace, which is configured to be used in the deployment wizard. That doesn't work.
    If there is a 2kb "MySequence.lnk" in t
    he development tree,you will also find a "MySequence.lnk" in the Image tree at the expected position. But this is 1396 kb big, which is just the size of testexec.exe ( Labwindows/CVI version) where the .lnk file did point to. And the properties (commandline) of that .lnk file became empty.
    Other "normal" files in the same directory, which are also included in the deployment, are copied without any coruption into the Image tree into the same directory as the corupted .lnk file.
    The installer will install the corupted .lnk file to the desired position without problems. And copying it with post.bat to the desktop is also no problem.

Maybe you are looking for

  • UUT Result log in SQL database?

    Hello All I am facing a requirement where i want to log results of sequence execution[only the complete seq result and NOT step results] to SQL database BUT as and when the UUT_ID varies the entry should be made into a new column with the same name a

  • Opening attachments with a dot in the name in the Mail app

    I'm having an issue opening attachments in Mail when the file includes a dot in the name. For example, a file called name.v2.pdf does not seem to be recognized as a PDF file. It's not even recognized as anything, the file is shown in the mail but cli

  • Shortcut to find a property from property pallate in oracle 10G forms

    Hi, I want to know the the shortcut to find a property from property pallete in oracle 10G form builder. Because i cannot use mouse due to blindness. Please tell shortcut to locate a property from property pallete. Qasim Javaid Malik

  • How do you scroll down in new itunes?

    how do i scroll down i tunes. just tried to download a song n it asked me to retick terms n conditions but i cant get to end of page to do it.;

  • Mac running slowly with Lion.

    My Mac has been running slowly with Lion. Its a 2008 20inch iMac. Its been a fabulous machine and I love it but since running Lion is has been slow and unresponsive, and I really want this sorted. I have read a few places about doing clean installs,