Embedding Ovi Shared Files in Flash

How do I embed my shared media in a flash website. The embed html code isn't supporte inside of flash and when I try to load the swf into my flash web site I get an error with the OviShare() fundtion. Is there a way?

You can embed any SWF file in a PDF using the tools in Acrobat Pro. There are security restrictions on local file access and shared storage of data, but in terms of graphical display and interaction with the user they can do whatever you want - it's a Flash programming question rather than a PDF question.

Similar Messages

  • What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?

    What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?
    Thanks
    Mark

    Here are a couple of ways, one using the Netstream class and the other using the FLVPlayback component.
    For the NetStream approach, the following in the timeline code will play/loop the intended mp4 file...
         var video:Video;
         var connect_nc:NetConnection = new NetConnection();
         connect_nc.connect(null);
         var stream_ns:NetStream = new NetStream(connect_nc);
         stream_ns.client = this;
         function netStatusHandler(p_evt:NetStatusEvent):void {  
             if (p_evt.info.code == "NetStream.Play.Stop") {
                 stream_ns.seek(0); // to loop the video
         stream_ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         video = new Video();
         addChild(video);
         video.attachNetStream(stream_ns);
         stream_ns.play("path_to/your.mp4");
    For the FLVPlayback component, add it to the stage, give it an instance name ("fp" used below), assign your mp4 file ("path_to/your.mp4") as the source property in the Properties panel, and select the option to autoplay as well.  Place the following code in the timeline...
         fp.addEventListener(Event.COMPLETE, playAgain);
         function playAgain(evt:Event):void {
             fp.play();
    To put the Flash swf file in an html page, in the Publish Settings set it to publish an swf and an html page.  Publish the file an the html page will be created for you.

  • How to edit a shared file on my Mac?

    Hi,
    Is it possible to edit a shared file on my Mac?
    I know it is possible on the web, using Numbers/Pages/Keynote for iCloud Beta. But I was wondering if it is also possible to download and edit the file.
    I think it is also important that the file automatically updates himself when edited on the Mac, so the other user could see my changes.
    So I don't have to download the file --> edit it --> upload the file.
    Hopefully there is a solution for this problem, otherwise I'm hoping this will come in the near-future!
    Kind regards,
    Berend

    challenged2012 wrote:
    How do I use a flash drive on my mac
    Since most flash drives are formatted for PC's rather than Macs, if you plan to use it only with a Mac, when it's plugged in, you can click on it in Disk Utility and partition it GUID and Mac OS Extended (Journaled). Note that if you've already got files stored on it, partitioning it will erase them.

  • Why are shared files not visible when iPhone4S connected to iTunes?

    What makes this problem mysterious is that I have exactly the same settings on the same or eqivalent Apps on iPad2 and iTunes4S but when my iPhone is connected to my iTunes (running on my PC under Win7) it shows no files on Apps like Pages, iBooks, Keynote, and Print-n-share.  Each of these Apps has files and each shows files when  I connect my iPad2.   I cannot export or import filesto/from itunes and iphone because the list of files inside the Apps is not visible in itunes. 
    PS I CAN, btw, export and import files by using the amazing App and service "DropBox" which is the only route in and out of my iPhone (I am not ready to use iCloud).

    This is not a reply but an addition.  While searching for answers as to why "Shared" files in original Apps in my iPhone4S did not appear on itunes I came across a similar discussion on another Forum in which Jim described in some detail how to get the two devices (my iPhone 4S and my iPad2) to recognize similar embedded files in similar Apps.  https://discussions.apple.com/message/16690584#16690584
    I went through this promising procedure but it did not help.  Since the two devices are independent (I think -- they are on the same accoubt but ar different devices) I should be able to make them work the same way with regard to what is seem in iTune.

  • Referencing external files from flash in Dw

    I am working on a web page that has an embedded .swf, the
    flash movie reads an xml file which describes some photos and then
    displays a slide show with the photos and their captions. It works
    fine when I play .swf in Dw, but when I preview it in Firefox
    within Dw, it doesn't work, i.e. just a blank area. When I open the
    .swf file with firefox in the directory where I first created it,
    it works fine in the browser. However, when I try to open the file
    in the Dw site with Firefox it doesn't open.. The referencing used
    in the Dw copy is "/flash files/XML/slideshow1.xml" and the
    reference to the pictures in the XML file is /flash
    files/mainslideshow/filename.jpg
    I don't understand why it works in Dw but not Firefox. This
    has been "bugging" me for a couple of days now so any help would be
    greatly appreciated. Thanks

    eizzor wrote:
    > bregent thanks for the reply. No all the files are
    within the Dw site. The site structure is:
    > Site
    > Css
    > flash files
    > .fla
    > .swf
    > XML
    > .xml
    > mainslideshow
    > .jpg
    Not that I actually know what is going on here, but I do
    notice that you
    are using spaces in folder names - "flash files".
    Never a good idea.
    Harvey

  • Dynamic runtime shared libraries in Flash

    Runtime shared libraries in Flash only seem to work if there
    is a direct import link into the file that wishes to use the shared
    library item. Why can't the main swf dynamically load a shared.swf
    containing the shared library items into itself and therefore allow
    all child swf's that are loaded after that event to access the
    items? Or why can't you load the shared.swf containing the shared
    library items into the requesting file on the fly and grant access
    to the items from the requesting file that way? Creating direct
    import links to shared libraries in all child flash documents is
    very annoying in larger applications!
    Ideally it should work like this...
    All cross domain security issues have been dealt with.
    I have a main container.swf.
    The main container loads a remote shared library swf that
    contains the shared library items.
    After the load, the main container loads swf files that will
    need to access shared library items.
    One of the loaded child swf's contains a TextField with a style
    sheet attached. We need to have access to a shared font from the
    shared.swf library to enable us to set embedFonts to true and to
    have the TextField render correctly. Unless the import link to the
    shared library was created manually within the child swf containing
    the TextField, the TextField will not render the text with the
    embedFonts set to true.
    This also seems to be the case when dynamically attaching
    shared move clips with linkage id's to the stage. Unless a direct
    import link to the shared library was created within the requesting
    file or should I say the file that is running the script, the
    script fails. It seems that libraries are kept isolated from one
    another, probably to stop linkage id confliction etc. the same way
    as the _global scope isn't shared between swf's originating from
    different domains.
    Using something like, libraryName.linkageID could combat
    this, but I need to know if I'm wasting my time...
    I hope this makes sense. There wasn't a solution last time I
    checked, but it's been awhile and I was hoping someone out there
    has come up with a solution at this stage or even knows the
    official word on the subject.
    Is this possible Adobe?
    Cheers,
    Derek.

    I found the answer. So long as I keep the folder structure in
    my shared library exactly as I have it in my referencing projects,
    I don't need to change anything in the mxml code itself. After
    synchronizing the folder structure, I no longer receive the "1046:
    Type was not found or was not a compile-time constant" error that I
    was getting yesterday.
    France

  • Embedded a korean font in Flash

    Hello !!!
    I would like to embedded a font thanks Flash CS3, in order to
    get a .swf that handle the italic and bold korean font (is
    possible, one that looks like lucida for the latin characters).
    I’ve tried several that seemed to handle the korean but each
    time I end with square characters when I test it :( Furthermore I
    couldn’t find the fonts given in this post (
    http://typophile.com/node/19036).
    I also have corectly "embedded" the special characters on flash..
    still not work !!!
    Does somebody has an idea where I could find a character
    table or directly which font use for korean or where to find .swf ?
    Thanks a lot !!

    I have created an English brochure for a client, and the same brochure was translated into German. Now I am being asked for a Korean version. Can someone provide some guidance on how best to proceed in Adobe Indesign CS5? I gather that I use Apple Gothic or another font... but it doesn't show up as Korean. Also, is Korean a vertically read font?
    Korean is occasionally set vertically, but it's an extremely old-fashioned technique outside of a few limited areas - some ads, the spines of books, et cetera. 
    To be honest, I'd say "package your InDesign file and send it to a firm or freelancer that specializes in English to Korean translation, with experience in the subject matter of your brochure." It sounds like you are asking for automated machine translation within InDesign; ID has no such ability. There are ways to flow automated machine translations into ID documents, but you're most likely to find those tools in the hands of translation agencies anyways.
    No matter where you get your translation done, I'd advise against you trying to typeset the Korean yourself - there are issues with Korean in English-language ID. Without some careful setup, ID will treat Korean characters as if they were Chinese, and will break Korean words in incorrect locations instead of at spaces.

  • CS5.5 file crashes Flash on opening

    Hi,
    I've got an iMac and a MacBook Pro both running 10.6.8 and Flash CS5.5.
    I've built some files on the iMac using Flash CS5.5, but when I try and open them on the MB Pro the file crashes Flash on opening. The problem for me right now is the iMac is at my office and I'm offsite using the MB Pro. I tried re-installing Flash CS5.5 but that didn't fix the problem. Is there anything I can do to try and debug or figure out why this is happening. Other files and new files are fine in CS5.5 on the MB Pro, just this specific file that I need to work on :-) is crashing.
    I'm pasting the Crash Report in here with the hope that someone from Adobe can understand what's going on and tell me the problem / fix for it. It's looking like I'm going to have to leave the site and go back to my office, which is a pain and looks kind of un-professional in my opinion.
    Process:         Adobe Flash CS5.5 [725]
    Path:            /Applications/Adobe Flash CS5.5/Adobe Flash CS5.5.app/Contents/MacOS/Adobe Flash CS5.5
    Identifier:      com.adobe.flash
    Version:         11.5.0.325 (11.5.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [172]
    Date/Time:       2011-07-18 12:48:42.186 -0500
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          220442 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  3209 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      2DEB8EB2-4DFD-4FD1-83B3-85736FAE2059
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    Java information:
    Exception type: Bus Error (0xa) at pc=0000000023340ac8
    Java VM: Java HotSpot(TM) Client VM (20.1-b02-384 mixed mode macosx-x86)
    Current thread (0000000033002000):  JavaThread "main" [_thread_in_native, id=-1608428224, stack(00000000bf800000,00000000c0000000)]
    Stack: [00000000bf800000,00000000c0000000]
    Java Threads: ( => current thread )
      0000000033244400 JavaThread "Thread-3" [_thread_blocked, id=-1338343424, stack(00000000b02a8000,00000000b03a8000)]
      0000000036081800 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1304035328, stack(00000000b2360000,00000000b2460000)]
      0000000036081000 JavaThread "Code Model Worker" daemon [_thread_blocked, id=-1305092096, stack(00000000b225e000,00000000b235e000)]
      0000000036075000 JavaThread "FelixPackageAdmin" daemon [_thread_blocked, id=-1306148864, stack(00000000b215c000,00000000b225c000)]
      0000000036073800 JavaThread "FelixStartLevel" daemon [_thread_blocked, id=-1307205632, stack(00000000b205a000,00000000b215a000)]
      000000003680a400 JavaThread "FelixDispatchQueue" [_thread_blocked, id=-1308262400, stack(00000000b1f58000,00000000b2058000)]
      00000000331d6000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=-1310375936, stack(00000000b1d54000,00000000b1e54000)]
      0000000036801000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=-1311432704, stack(00000000b1c52000,00000000b1d52000)]
      0000000036800000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=-1312489472, stack(00000000b1b50000,00000000b1c50000)]
      0000000036004400 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=-1313546240, stack(00000000b1a4e000,00000000b1b4e000)]
      00000000331ce000 JavaThread "Finalizer" daemon [_thread_blocked, id=-1314603008, stack(00000000b194c000,00000000b1a4c000)]
      00000000331cd000 JavaThread "Reference Handler" daemon [_thread_blocked, id=-1315659776, stack(00000000b184a000,00000000b194a000)]
    =>0000000033002000 JavaThread "main" [_thread_in_native, id=-1608428224, stack(00000000bf800000,00000000c0000000)]
    Other Threads:
      00000000331ca400 VMThread [stack: 00000000b1748000,00000000b1848000] [id=-1316716544]
      00000000331df800 WatcherThread [stack: 00000000b1e56000,00000000b1f56000] [id=-1309319168]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    par new generation   total 14784K, used 0K [0000000040100000, 0000000041100000, 0000000041100000)
      eden space 13184K,   0% used [0000000040100000, 0000000040100000, 0000000040de0000)
      from space 1600K,   0% used [0000000040f70000, 0000000040f70000, 0000000041100000)
      to   space 1600K,   0% used [0000000040de0000, 0000000040de0000, 0000000040f70000)
    concurrent mark-sweep generation total 49152K, used 9268K [0000000041100000, 0000000044100000, 0000000048100000)
    concurrent-mark-sweep perm gen total 22104K, used 13261K [0000000048100000, 0000000049696000, 000000004c100000)
    Code Cache  [0000000033801000, 00000000339da000, 0000000035801000)
    total_blobs=980 nmethods=832 adapters=90 free_code_cache=31644864 largest_free_block=192
    Virtual Machine Arguments:
    JVM Args: -Djava.awt.headless=true -Xmx128m
    Java Command: <unknown>
    Launcher Type: generic
    Physical Memory: Page Size = 4k, Total = 8192M, Free = 17592186043592M
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ...ia.Flash Player.authplaylib 0x23340ac8 ExternalPlayer_Initialize + 1898520
    1   ...ia.Flash Player.authplaylib 0x232a0274 ExternalPlayer_Initialize + 1241028
    2   ...ia.Flash Player.authplaylib 0x232a0e72 ExternalPlayer_Initialize + 1244098
    3   ...ia.Flash Player.authplaylib 0x23320b01 ExternalPlayer_Initialize + 1767505
    4   ...ia.Flash Player.authplaylib 0x23297611 ExternalPlayer_Initialize + 1205089
    5   ...ia.Flash Player.authplaylib 0x23297b19 ExternalPlayer_Initialize + 1206377
    6   ...ia.Flash Player.authplaylib 0x2329b8c9 ExternalPlayer_Initialize + 1222169
    7   ...ia.Flash Player.authplaylib 0x232815c3 ExternalPlayer_Initialize + 1114899
    8   ...ia.Flash Player.authplaylib 0x232190a3 ExternalPlayer_Initialize + 687603
    9   ...ia.Flash Player.authplaylib 0x2321a7b3 ExternalPlayer_Initialize + 693507
    10  ...ia.Flash Player.authplaylib 0x2321a929 ExternalPlayer_Initialize + 693881
    11  ...ia.Flash Player.authplaylib 0x23223ace ExternalPlayer_Initialize + 731166
    12  ...ia.Flash Player.authplaylib 0x22edf83f 0x22cfa000 + 1988671
    13  ...ia.Flash Player.authplaylib 0x230002d7 0x22cfa000 + 3171031
    14  ...ia.Flash Player.authplaylib 0x23000757 0x22cfa000 + 3172183
    15  ...ia.Flash Player.authplaylib 0x2302a1f2 0x22cfa000 + 3342834
    16  ...ia.Flash Player.authplaylib 0x2302b9d6 0x22cfa000 + 3348950
    17  ...ia.Flash Player.authplaylib 0x23030a3f 0x22cfa000 + 3369535
    18  ...ia.Flash Player.authplaylib 0x23080bd8 0x22cfa000 + 3697624
    19  ...ia.Flash Player.authplaylib 0x23081279 0x22cfa000 + 3699321
    20  ...ia.Flash Player.authplaylib 0x231a7924 ExternalPlayer_Initialize + 222836
    21  com.apple.CoreFoundation      0x926a5a6b __CFRunLoopRun + 8059
    22  com.apple.CoreFoundation      0x926a33f4 CFRunLoopRunSpecific + 452
    23  com.apple.CoreFoundation      0x926a3221 CFRunLoopRunInMode + 97
    24  com.apple.HIToolbox           0x970cad60 RunCurrentEventLoopInMode + 392
    25  com.apple.HIToolbox           0x970cab17 ReceiveNextEventCommon + 354
    26  com.apple.HIToolbox           0x9725308e _AcquireNextEvent + 54
    27  com.apple.HIToolbox           0x97248d40 RunApplicationEventLoop + 228
    28  com.adobe.flash               0x0102372a non-virtual thunk to CFileDialogImpl::~CFileDialogImpl() + 4302
    29  com.adobe.flash               0x00ffc12d CTimerImpl::~CTimerImpl() + 279
    30  com.adobe.flash               0x00ffc1d9 CTimerImpl::~CTimerImpl() + 451
    31  com.adobe.flash               0x002657c2 devtech_private::Buffer<unsigned short>::Grow(unsigned long) + 1506
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x9174e382 kevent + 10
    1   libSystem.B.dylib             0x9174ea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x9174df59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x9174dcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x9174d781 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x91727b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x917556f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9179e05f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x11625274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services        0x1161e074 C_EULA_SetState + 2166
    5   com.adobe.amt.services        0x116252da C_AMTUISwitchSuppressUpdates + 16966
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x9175575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x917573f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x99af621e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x99ae1b68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x99add533 MPWaitOnQueue + 250
    6   com.adobe.ACE                 0x060c4309 0x6089000 + 242441
    7   com.adobe.ACE                 0x060c3d01 0x6089000 + 240897
    8   ...ple.CoreServices.CarbonCore 0x99ac154a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib             0x917650d6 recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib             0x91784eab recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib 0x271772d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib 0x27176376 Invoke + 50950
    4   ServiceManager-Launcher.dylib 0x27175227 Invoke + 46519
    5   ServiceManager-Launcher.dylib 0x27175279 Invoke + 46601
    6   ServiceManager-Launcher.dylib 0x27175303 Invoke + 46739
    7   ServiceManager-Launcher.dylib 0x2716f706 Invoke + 23190
    8   ServiceManager-Launcher.dylib 0x2716f8ef Invoke + 23679
    9   ServiceManager-Launcher.dylib 0x271704cf Invoke + 26719
    10  ServiceManager-Launcher.dylib 0x271705cd Invoke + 26973
    11  ServiceManager-Launcher.dylib 0x271739b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib 0x27173c61 Invoke + 40945
    13  ServiceManager-Launcher.dylib 0x2717428f Invoke + 42527
    14  ServiceManager-Launcher.dylib 0x2717448c Invoke + 43036
    15  ServiceManager-Launcher.dylib 0x2716611a Login + 1654
    16  ServiceManager-Launcher.dylib 0x271676f7 Login + 7251
    17  ServiceManager-Launcher.dylib 0x271749fb Invoke + 44427
    18  ServiceManager-Launcher.dylib 0x27176f49 Invoke + 53977
    19  libSystem.B.dylib             0x91755259 _pthread_start + 345
    20  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x9174d412 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x9174d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 12:  Java: Exception Handler Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libSystem.B.dylib             0x91793c78 mach_msg_server + 520
    3   libjvm.dylib                  0x2b9100eb jio_snprintf + 43803
    4   libjvm.dylib                  0x2b90ff80 jio_snprintf + 43440
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 13:  Java: Gang worker#0 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 14:  Java: Gang worker#1 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 15:  Java: Gang worker#2 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 16:  Java: Gang worker#3 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 17:  Java: Gang worker#4 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 18:  Java: Gang worker#5 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 19:  Java: Gang worker#6 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 20:  Java: Gang worker#7 (Parallel GC Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b923cbe jio_vsnprintf + 333
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 21:  Java: Gang worker#0 (Parallel CMS Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2bbdda92 JVM_RaiseSignal + 739594
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 22:  Java: Gang worker#1 (Parallel CMS Threads)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2bbdda92 JVM_RaiseSignal + 739594
    8   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    9   libSystem.B.dylib             0x91755259 _pthread_start + 345
    10  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 23:  Java: Concurrent Mark-Sweep GC Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2bb7669b JVM_RaiseSignal + 316691
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b9be0c9 JVM_Close + 13205
    8   libjvm.dylib                  0x2b9be031 JVM_Close + 13053
    9   libjvm.dylib                  0x2b929d73 jio_vsnprintf + 25090
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 24:  Java: VM Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2bb7669b JVM_RaiseSignal + 316691
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b990564 JVM_Lseek + 149378
    8   libjvm.dylib                  0x2b990214 JVM_Lseek + 148530
    9   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    10  libSystem.B.dylib             0x91755259 _pthread_start + 345
    11  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 25:  Java: Reference Handler
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x33801374 0 + 864031604
    12  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    13  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    14  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    15  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    16  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    17  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    18  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    19  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    20  libSystem.B.dylib             0x91755259 _pthread_start + 345
    21  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 26:  Java: Finalizer
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33988040 0 + 865632320
    10  ???                           0x33801374 0 + 864031604
    11  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    12  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    13  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    14  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    15  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    16  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    17  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    18  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    19  libSystem.B.dylib             0x91755259 _pthread_start + 345
    20  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 27:  Java: Surrogate Locker Thread (Concurrent GC)
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90eba4 jio_snprintf + 38356
    7   libjvm.dylib                  0x2b9ad9d7 JVM_IsPrimitiveClass + 5991
    8   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    9   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 28:  Java: Signal Dispatcher
    0   libSystem.B.dylib             0x91727b36 semaphore_wait_trap + 10
    1   libjvm.dylib                  0x2b9ae209 JVM_IsPrimitiveClass + 8089
    2   libjvm.dylib                  0x2b9adbf4 JVM_IsPrimitiveClass + 6532
    3   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    4   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 29:  Java: C1 CompilerThread0
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90eba4 jio_snprintf + 38356
    7   libjvm.dylib                  0x2b9b4d30 JVM_Write + 288
    8   libjvm.dylib                  0x2b9af368 JVM_IsPrimitiveClass + 12536
    9   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    10  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    11  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    12  libSystem.B.dylib             0x91755259 _pthread_start + 345
    13  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 30:  Java: Low Memory Detector
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb76681 JVM_RaiseSignal + 316665
    5   libjvm.dylib                  0x2bb76750 JVM_RaiseSignal + 316872
    6   libjvm.dylib                  0x2b90ec5d jio_snprintf + 38541
    7   libjvm.dylib                  0x2b9b0cf6 JVM_IsPrimitiveClass + 19078
    8   libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    9   libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    10  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    11  libSystem.B.dylib             0x91755259 _pthread_start + 345
    12  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 31:  Java: VM Periodic Task Thread
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb8293c JVM_RaiseSignal + 366516
    4   libjvm.dylib                  0x2b9b2eae JVM_IsPrimitiveClass + 27710
    5   libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    6   libSystem.B.dylib             0x91755259 _pthread_start + 345
    7   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 32:  Java: FelixDispatchQueue
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x33803e31 0 + 864042545
    12  ???                           0x33803e31 0 + 864042545
    13  ???                           0x3380430d 0 + 864043789
    14  ???                           0x33801374 0 + 864031604
    15  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    16  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    17  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    18  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    19  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    20  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    21  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    22  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    23  libSystem.B.dylib             0x91755259 _pthread_start + 345
    24  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 33:  Java: FelixStartLevel
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 34:  Java: FelixPackageAdmin
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2b90f0e6 jio_snprintf + 39702
    4   libjvm.dylib                  0x2bb7e82c JVM_RaiseSignal + 349860
    5   libjvm.dylib                  0x2bbbdb5f JVM_RaiseSignal + 608727
    6   libjvm.dylib                  0x2b99d50a JVM_MonitorWait + 196
    7   libjvmlinkage.dylib           0x26240e75 JVM_MonitorWait + 69
    8   ???                           0x3380b9d9 0 + 864074201
    9   ???                           0x33803e31 0 + 864042545
    10  ???                           0x33803e31 0 + 864042545
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 35:  Java: Code Model Worker
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2bb8280f JVM_RaiseSignal + 366215
    4   libjvm.dylib                  0x2ba148d0 JVM_SocketAvailable + 246
    5   ???                           0x3380b9d9 0 + 864074201
    6   ???                           0x33803e31 0 + 864042545
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33804473 0 + 864044147
    10  ???                           0x33803f97 0 + 864042903
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 36:  Java: Code Model Worker
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb824c9 JVM_RaiseSignal + 365377
    3   libjvm.dylib                  0x2bb8280f JVM_RaiseSignal + 366215
    4   libjvm.dylib                  0x2ba148d0 JVM_SocketAvailable + 246
    5   ???                           0x3380b9d9 0 + 864074201
    6   ???                           0x33803e31 0 + 864042545
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33804473 0 + 864044147
    10  ???                           0x33803f97 0 + 864042903
    11  ???                           0x3380430d 0 + 864043789
    12  ???                           0x33801374 0 + 864031604
    13  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    14  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    15  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    16  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    17  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    18  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    19  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    20  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    21  libSystem.B.dylib             0x91755259 _pthread_start + 345
    22  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 37:  Java: Thread-3
    0   libSystem.B.dylib             0x91727afa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91728267 mach_msg + 68
    2   libjvm.dylib                  0x2bb82599 JVM_RaiseSignal + 365585
    3   libjvm.dylib                  0x2bb82a6b JVM_RaiseSignal + 366819
    4   libjvm.dylib                  0x2b9e8315 JVM_Sleep + 246
    5   libjvmlinkage.dylib           0x26241a68 JVM_Sleep + 72
    6   ???                           0x3380b9d9 0 + 864074201
    7   ???                           0x33803e31 0 + 864042545
    8   ???                           0x3380430d 0 + 864043789
    9   ???                           0x33801374 0 + 864031604
    10  libjvm.dylib                  0x2b9917aa JVM_Lseek + 154056
    11  libjvm.dylib                  0x2b991544 JVM_Lseek + 153442
    12  libjvm.dylib                  0x2b99d341 JVM_StartThread + 2726
    13  libjvm.dylib                  0x2b99d246 JVM_StartThread + 2475
    14  libjvm.dylib                  0x2b99d1d4 JVM_StartThread + 2361
    15  libjvm.dylib                  0x2b99d048 JVM_StartThread + 1965
    16  libjvm.dylib                  0x2b99cea7 JVM_StartThread + 1548
    17  libjvm.dylib                  0x2b90ed2d jio_snprintf + 38749
    18  libSystem.B.dylib             0x91755259 _pthread_start + 345
    19  libSystem.B.dylib             0x917550de thread_start + 34
    Thread 38:
    0   libSystem.B.dylib             0x9174d412 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x9174d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x9174d5c6 start_wqthread + 30
    Thread 39:
    0   libSystem.B.dylib             0x91755aa2 __semwait_signal + 10
    1   libSystem.B.dylib             0x917819c5 nanosleep$UNIX2003 + 188
    2   com.adobe.flash.flbridge      0x2acb985b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.flash.flbridge      0x2acb3de3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.flash.flbridge      0x2acb9968 ScObjects::Thread::go(void*) + 168
    5   libSystem.B.dylib             0x91755259 _pthread_start + 345
    6   libSystem.B.dylib             0x917550de thread_start + 34
    Thread 40:
    0   libSystem.B.dylib             0x91727b42 semaphore_wait_signal_trap + 10
    1   libSyst

    Thanks! I sent some files.
    I'm thinking it's related to a font embedded and used dynamically from the Library. I rebuilt one of the .flas a layer at a time and I'm sure it's the embeded font (in the library). There are 2 test .flas 1 with the  embedded font and 1 without.
    Oddly enough, 1 of the times I was testing a layer at a time the file opened without crashing and then the other 2 real .flas also opened without crashing, but when I quit Flash and tried to open them a again I got the same crash issue and the files wouldn't open.
    I haven't tried yet, but I'm going to see if it crashes using a different font. The font is one of Adobe's and used as branded element in the design so I can't really change it for production use, but it would be worth it to test.
    Thanks,
    Dave

  • Runtime shared library in Flash CS5

    I'm trying to use OSMF as a runtime shared library in Flash CS5, but Flash keeps on crashing all the time I'm trying to change that swc from Merged into code to runtime shared library. Whatever URL / policy file Im using, Flash always crashes at compilation, and then after that there's no way to reopen the FLA without Flash crashing. Very annoying. I'm glad it's just a test project and not production files... Anyone already experienced the same kind of bug?
    UPDATE: just tested it on Win XP SP2, same behavior, same nasty result

    Funny, I have the same problem with a shared library (documentation on this site makes no sense to me, that is). And the Adobe Help desk refers me to this forum!
    What I know is that an item in a shared library cannot have names with spaces, so should be like "btn-up" and not "btn up".
    Further you should while activating the item in Libraries look for "Properties" (on the right hand side of the pull down of the Library) and define them as "Export for sharing" (my version is in Dutch and for Mac so these labels are named differently and in a different place).
    Then in the movie you want to use them in, you open import (under file) and open the .fla of your first document as external library.
    In the beginning it is as easy as that, but then creating a library in movies that are in use for an extended period of time (using spaces in their names, etc.) is a whole new ball game.
    Lucie

  • Sharing files with Creative cloud for teams

    HI,
    I am looking at getting creative cloud for teams, but I want to keep our existing CS suite users who are already on maintenance plans.
    Can I share files on the creative cloud  between these two types of users?
    Does Adobe Bridge see these files ?
    Is there any way of doing version control ?
    We are also worried about this
    "If a team member leaves the company, what happens to their files stored in Creative Cloud?
    The IP is associated with the individual, not the company. The individual will have a 90-day grace period to delete their files."
    Also we are in Australia and we are concerned about the speed. Can anyone advise what the speed is like ?
    rgds Renovator

    Anyone who signs up for the Creative Cloud can share files. You do not need to be a Creative Cloud member to view a shared file, only to do the sharing.
    Adobe Bridge does not see the files unless you use Creative Cloud Connection to sync the files to your local computer.
    There is no version control yet. It is on our road map.
    Being in Australia should not be an issue, but I will let other customers from Australia comment.

  • How to link pdf file in flash by xml ??

    how to link pdf file in flash by xml ??

    try to give <a href="your address">My Pdf</a>
    and your textfield should be html enabled
    mytextField.html=true
    mytextField.htmlText=your xml text

  • Windows 7 computers asking for network password to access shared files and printers on Windows XP PRO computer.

    I have a network of 10 computers configured as peer-to-peer work group. I have upgraded one of the ten from Windows XP PRO to Windows 7 PRO. The other nine computers are all running XP PRO. AS near as I can tell they are all configured the same. I have the
    same user and same passwords on all computers. One of XP computers is used as a print server. The Windows 7 computer initially was able to access shared files and printers on all XP machines with out requesting a network password.
    Suddenly, the Win 7 computer began requesting a network password to access the shared files and printers on the XP print server. It will not accept any of the user names or passwords (all administrators on both machines with identical names and passwords.)
    The Win 7 computer has no problem accessing the shared files on the other XP machines. It can even access shared printers in a different work group. Apparently something has changed but I'm at my wits end trying to figure what changed on either the Windows
    7 machine or the print server XP machine.
    I would appreciate any help. Thank you

    Hi,
    Based on my research, I would like to suggest the following:
    1.   
    Disable simple file sharing on the Windows XP computer:
    How to disable simple file sharing and how to set
    permissions on a shared folder in Windows XP
    2.   
    On the Windows 7 computer, go to “Control Panel\All Control Panel Items\Network and Sharing Center\Advanced sharing settings” and ensure that the
    following items are turned ON:
    Network Discovery
    File and printer sharing
    And this one is OFF:
    Password protected sharing
    3.   
    Temporarily disable or remove all the security software (firewall, anti-virus, anti-spyware, etc.) on the computers and check if it works.
    In addition,
    I would like to share the following with you for your reference:
    Troubleshoot file and printer
    sharing
    Hope this helps. Thanks.
    Nicholas Li - MSFT

  • Problem seeing shared files on networked windows computer

    Using wireless Linksys network with windows XP desktop for printer and some shared file access. Printer working well. In finder, cannot connect to see shared files.

    Hi RichardDalli,
    From the lof I see that you are getting Error 1935.
    You can try solutions from DOC: http://kb2.adobe.com/cps/403/kb403969.html
    If you still face the same issue you might have to contact Microsoft.
    Regards
    SameeR

  • Shared file from computer with Windows 7 slow to open and save on computer with Windows 8.1

    I have three computers in homegroup. They can see each other and sharing files is not a problem. Main computer, where I have all my data on uses Windows 7 Home premium, and Office 2007. Both other computers use latest version Windows 8.1, Office 2010. I
    use these two computers to access files on main computer (word, excel). I have problems, because when I try to open word and excel files on these two other computers, files open very slow (green bar is showing, although word has no text inside), and also saves
    very slow - empty word file takes 1 minute for saving.
    One of computers with 8.1 had 8 before updating and I managed to solve this problem with running this protocol (smb.bat) - this solved the problem, although I do not really understand why:
    sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc config mrxsmb20 start= disabled
    So it seems it is really something to do with the version of windows since the same computer had windows 8 and this protocol and worked well, but when updated to 8.1 it works slowly (I tried this protocol, but it is not working)
    Please see if there is any solution (updated protocol?) because I really cannot wait for word file to open 1 minute.
    Thank you for help!

    Hi,
    First, You can leave the homegroup and join again to see the result.
    To leave a homegroup:
    1.Open HomeGroup by typing homegroup in the search box, and then clicking HomeGroup.
    2.Click Leave the homegroup.
    3.Click Leave the homegroup, and then click Finish.
    You can also join the homegroup in the way accordingly.
    Besides, this happens after a upgrade to Windows 8.1, this also might be caused by service conflict, I suggest to perform a clean boot to solve this:
    1.Swipe in from the right edge of the screen, and then tap Search. Or, if you are using a mouse, point to the lower-right corner of the screen, and then click Search.
    2.Type msconfig in the search box, and then tap or click msconfig.
    3.On the Services tab of the System Configuration dialog box, tap or click to select the Hide all Microsoft services check box, and then tap or click Disable all.
    4.On the Startup tab of the System Configuration dialog box, tap or click Open Task Manager.
    5.On the Startup tab in Task Manager, for each startup item, select the item and then click Disable.
    Details as the article below:
    http://support.microsoft.com/kb/929135
    Regards
    Wade Liu
    TechNet Community Support

  • How can I mask on flv file in flash cs4?

    Hi,
    I am new to Flash CS4. I saw one video on how to use flv file in flash and mask it. It is working fine when I am using the following option while importing a video file to flash:
    Load external video with playback component
    But when I tried with the following option it doesn't show the background, it shows only movie which is playing nicely. But not the background which has a bill board.
    Embed FLV in SWF and play in timeline
    It seems the mask is not working with this option.
    How to solve this problem? Please help.
    Actually it should be like the above.
    But when I am using the option Embed FLV in SWF and play in timeline while importing the flv video, getting the result like below: It is not showing the Bill board as above.
    See the layers created:

    Hi,
    I Tried with CS4 by creating mask layer and importing video , layers created were same as you have created and it is working for me .
    Here is the screen shot of the .fla file.
    Screenshot of .fla file

Maybe you are looking for