Miaw in dir mx 2004

in director mx 04 i want to display a miaw and make this
window close itself once the video in the miaw is finished playing.
Can i do this by adding some script to the mouseup i made that
opens the miaw? (see code example) all i need is to get it to close
itself, i dont want the user to have to click another button to
close and remove and miaw from memory manually...

Yes, this can be done, but not (easily) by adding code to the
handler
that opens the window. Instead, place the following scripts
in the MIAW
file (home.dir).
Before that though, a couple of points about the code you
posted: once
you've set a window's rect and opened it, you don't need to
make it
visible. And you should drop the extension from the filename
- it's not
required, and if you protect or compress the file to dxr or
dcr your
code will break. And you should provide a path to the file
too:
on mouseUp me
w = window().new ("miaw")
w.fileName = "@/home"
w.rect = rect(500, 0, 1000, 768)
w.open()
end
In home.dir, add the following, as a #score script, to the
sprite that
plays the video. I'll assume it's a QuickTime file it plays -
if not, be
specific:
property spriteNum
property my
property myDuration
on beginSprite me
my = sprite(spriteNum)
myDuration = my.member.duration
end
on exitFrame me
if (my.movieTime >= myDuration) then
_player.activeWindow.close()
end
Now add the following handler in a #movie script:
on closeWindow
script("window.closer.class").new(_player.activeWindow)
end
And finally create a #parent script, name it
"window.closer.class"
(without quotes) and add the following to it:
-- window.closer.class
property pWindow
on new me, aWindow
pWindow = aWindow
pWindow.forget()
t = _player.windowList[1].movie.timeOut().new(string(me),
-1,
#mClose, me)
end
on mClose me, aTimer
pWindow = VOID
aTimer.forget()
end

Similar Messages

  • Can't print member in Mac projector made with MX 2004 Win

    I have been using a homemade educational app for years made in D8 for Windows, but need to make it available for the Mac now.  I also own 8.5 and MX 2004, but never needed any of the features until now. MX 2004 can create a Mac projector, but I have been having one problem after another with this conversion. I had been using POM lite in D8 WIndows, but it will not work in the MX 2004 Mac projector. After spending hours looking for the free POM lite for Mac, it seems that it now costs $150? For such a basic feature that should be native in Director, I need a solution to print members that does not require an extra. Can some please help me?
    There is apparently a way to do it using a Flash object  http://dasdeck.de/staff/valentin/lingo/flash_print/, but after spending several days trying to port the applicable code to my app, I could not get it to work. I do not work in Flash although I have tried, so it was a miracle that I got the flash_print as far as I did. If anyone has a working example using just the print member portion or could tell me why I was able to get it to work in author mode but was getting a Director Player Error in the test projector on Windows:
    Director Player Error
    Handler not found in object
    #getNextHighestDepth
    Script Error. Continue?
    I would greatly appreciate it.
    Actually, I am about to cry so at this point so any working solution other than printFrom (because some of my text members are more than one page and are in scroll bars) or paying for an xtra would be greatly appreciated - thank you!

    OK, I removed the Flash Agent and Flash Options and the include in projector box is now showing checked.  Yes, I am authoring this in Dir MX 2004.  I am using the Flash Asset xtra that came in Schmidt's demo.  It is newer and the size is different from what I had installed. The Flash Asset in my Dir 2004 installation which is version 10.1 (I seem to have the 10.1 update, but not 10.1.1) is dated 9/9/04 and is 804 KB. The one in the flash_print demo is dated 2/7/06 and is 1560 KB.  When I run one of the .dir files from my app with the 9/9/04 Flash Asset I get an error when I click Print. I can't remember the exact error message, but it sounded like something was missed.  So, I thought maybe I needed the newer Flash Asset.  After, replacing the original Flash Asset with the newer one the error went away and the Print dialog box pops up.  When I create the projector - you both are right something is not there.  Could it be the .1 update that's needed?  Is the Flash Asset in Schmidt's demo Xtras folder not the right one for MX 2004? Could something else be missing?
    Btw, here is the code for my print button:
    -- CREATE INSTANCE     -- I created a parent script with the name PRINT_CLASS .  I also inserted a Flash object named swf on the stage.
      printDoc = script("PRINT_CLASS").new(sprite("swf"))   
      -- ACTIVATE AUTO-PAGEBREAK
      printDoc.mSetAutoPageBreak(true) 
      -- PAGE 1
      printDoc.mAddPage() 
    -- ADD LONG TEXT THAT CAUSES AUTOMATIC PAGE-BREAKS
      tLongText = ""
      repeat with i = 1 to 1
        put member("ARListPrint").text after tLongText
      end repeat
      tFormat = ["leftMargin": 10]
      tSettings = ["wordWrap":1, "autoSize":"left"]
      y = printDoc.mAddText(tLongText, 28, 28, 500, 0, tSettings, tFormat) 
      -- DEACTIVATE AUTO-PAGEBREAK (for now not compatible with HTML mode!)
      printDoc.mSetAutoPageBreak(false) 
      -- ADD HTML TEXT
      tHtml = member("html").text
      tFormat = ["leftMargin": 10]
      tSettings = ["html": 1, "wordWrap":1, "autoSize":"left"]
      printDoc.mAddText(tHtml, 28, y, 500, 500, tSettings, tFormat) 
    -- PREVIEW -> save all pages as bitmaps in castLib "preview"
      --  repeat with i = 1 to printDoc.pPageCnt
      --    img = printDoc.mGetPreview(i, true)
      --    m = new(#bitmap, member(i, "preview"))
      --    m.name="Page" && i
      --    m.image = img
      --  end repeat 
      -- PRINT!
      printDoc.mPrint() 
      -- CLEAN UP
      printDoc.mDestroy()
      printDoc = 0

  • How to download Mac .app projector made w/ Win Dir 11.5?

    I recently upgraded to Dir 11.5 and see that it creates Mac projectors differently than Dir MX 2004. Before it created a nice .hqx file that I could upload to a web site for my students.  Now 11.5 creates an .app folder that shows up as a single file on a Mac desktop or on a USB flash stick. Unfortunately, when I upload the bundle to the web it now shows up as a folder when the Mac browses the web folder /setup/mac/examviewer.app/  When I crtl click (rightclick), I'm given the option to download the folder to the desktop, but it comes down as .html and the Mac will not allow me to get rid of the html extension and make the content an .app.  Without using a Mac, how do I make an executable file on the Windows development computer that can be properly downloaded to a Mac as an executable .app?
    Prof S

    Thank you Mike for directly answering my question. I asked how to do it on a Mac and did not realize that a Mac could open them natively and how easy it was for a Mac user to do it. The dmg was recommended to me before and through my research and experimentation, even if I could remember how to do it on a Mac I wouldn't. Here's why: a) I have asked students are you familar with a dmg archive and most say no. This is a minor issue because if they well I would just explain what they are. However, b) it was a pain to dig out the utility that creates the dmg on a Mac and if you aren't a regular Mac user doing this all the time, you won't remember how to do it - at least I don't want to spend the time to try it again. c) if you are doing this on Windows, a dmg is not even an option. But now for the most important reasons d) a dmg is usually much larger than the files you want to archive and it takes time to figure how to select a custom size dmg that will be large enough to take your files and there is undisclosed overhead. For example, if you have 7 MB of files and don't want to use the default dmg sizes which are like 10 MB 100MB etc and create an 8 MB dmg you will find when you start dragging the files into it that it's too big and you have to start all over again.  Then you start experimenting with sizes and wasting more time since you don't know how much overhead is added - I think it must be around 5 MB.  I don't remember exactly, but if I am archiving files I think I would much rather have them compressed, which is exactly what zip does.  First shot, I added the .app folder to the zip and it was done and nicely compressed to about 70%.  When I later downloaded it from my web site on a Mac to the desktop - I just doubled clicked it and it popped out all ready ready to go. If I tried the dmg approach, I would have no idea what the size requirement would be since it is hidden in a bunch of bundle folders. Anyhow, estimating the size would take time and it would end up being much larger than the original files after the overhead is added. My conclusion as a professor who does research is that the zip advantages far outweigh the dmg.

  • Text in Table format

    Hi, I am unable to paste my text in Table format from MS Word
    like I use to in Dir MX 2004...
    Do I need a plug-in now or do I need to do it the long way
    round, 1st make the text into HTML then do some scripting in Flash,
    export it and import it into Director?
    Please help?
    http://justkuankuan.bravehost.com/Table.zip

    Things I have tried...
    Copy the text in MS Expressions/Dreamwaver and importing the
    html in Dir, result: text not align.
    Exporting text in rtf, html from MS Word, result: error 85,
    or -1.
    Please Help?

  • Disabling the systemTrayIcon property in displayTemplate dont work

    I've tried to update an older application, builded with
    Director 8.5 and using a couple of MIAWs, to Director MX 2004. All
    work fine but the MIAWs, using either the new DisplayTemplate panel
    AND Lingo have a strange behavior: print their icons into the
    system tray, except if the type of the window = #tool. I need to
    have some MIAWs in modal way and to obtain this the only way is
    setting the window type = #dialog. But, in this case, into the
    system tray appear the icon of the MIAW, togheter the icon of the
    projector. I have not found any workaround...
    Below there is an example of lingo used to test the property
    setting:
    global myMiawPath
    on startMovie
    myMiawPath = the moviePath & "Components\about.dxr"
    openAbout
    end
    on openAbout
    window().new ("about")
    window("about").filename = myMiawPath
    window("about").type = #document
    window("about").titlebarOptions.visible = FALSE
    window("about").appearanceOptions.border = #none
    window("about").systemTrayIcon = FALSE -- THIS WOULD BE A
    SOLUTION...
    window("about").open()
    window("about").visible = TRUE
    end
    but don't work: the icon in the system tray is ALWAYS visible
    since the type of window is different from #tool. Anyone have
    encountered the same (very fastidious) problem? And there is any
    solution? Thanks very much.

    Create an ini file beside your projector and include the
    following:
    [Settings]
    SingleTaskbarEntry=1

  • Open window

    Can any enlighten me on a strange situation....
    I have used the command about 10000000 times on every project
    I have ever developed... but today it just doesn't want to work !!
    On mouseUp
    window ("game_1").open ()
    end
    TODAY it comes up with a script error "Object expected"
    If I run it through a MX 2004 project ... script error
    if I run it through a MX projector - fine
    It comes up with the same error during authoring in MX04. Is
    there something in my movie that might be conflicting with this
    simple command.

    You're encountering the change in syntax and execution style
    of some of the commands that was introduced in Dir MX 2004. The
    change affects new projects only. If you bring in an old project
    (pre MX 04) into MX 04, the old syntax will work.
    The new syntax is:
    myWindow = window().new("Window Name")
    For more information, here's
    Tom
    Higgins' full explanation as posted to Lingo-L a while ago.
    - Ben

  • Problems updating movie from Dir8 to MX2004

    I should be grateful for help in updating a large movie
    containing MIAWs from Dir 8 (Windows) to Dir MX2004 (10.1,
    Windows):
    (1) In Dir 8 the following verbose Lingo produces a MIAW with
    no title bar (which is what I want):
    set the filename of window "Control" = "Control.dir"
    set the windowtype of window "Control" = 2
    However in MX "windowtype" is obsolete but I am unable to get
    results from what I hoped would be the equivalent line:
    window("Control").titlebarOptions.visible=FALSE
    Is there some step that I am missing?
    (2) My Director movie contains many Quicktime movies, which
    have controller bars. In Dir 8 they work well, but in MX2004 when I
    click on the start/stop icon at the left of the controller bar the
    whole screen is given over to the Quicktime and the MIAW (which
    carries all my navigation buttons) disappears. How can I get around
    this?
    Help will be much appreciated!
    Scourse

    1) I seem to recall that you had to set the properties of the
    Window BEFORE you open() it. Otherwise, the window gets set to a
    default property state. You may also want to look into
    DisplayTemplates. Here are some links.
    http://livedocs.adobe.com/director/mx2004/release_update_en/21_mia17.htm
    http://livedocs.adobe.com/director/mx2004/release_update_en/09_pr191.htm
    2) Use BuddyAPI to get the window handle and then set it to
    front. I too wish there were a way to handle this out of the
    box.

  • Convert internal audio member from wav to mp3 or swa

    Hi
    i have lots of audio files in wav format. they are already appear as cast members. now i need to convert them to mp3 or swa. the audio have cue points.
    how can i see the type file of the audio member?
    what i should do to convert those members to mp3 oe swa?
    should i export wav and then import it as mp3? if so how wxcatly?
    those members are wav, cuz in external editor i can see its wav.
    the reason i need to compress is that i need to  play it over the internet.
    im using director 11.5 in xp.
    please help
    Shay

    If you are using cue points, then don't use MP3.  MP3s do not have cue points, so they will be removed.  In older versions of Director, there was an option to convert wav files to swa under the Xtras menu.  For some reason, that was removed from Director 11.  So, if it is a requirement that you use swa, then Have a look for an older version of Director (Dir MX 2004 or earlier) which can do the conversion.
    In D11.5, you can use the new audio mixer to convert the files to mp4.  I'm not sure if that will work for you, but it is worth a try.

  • Why i cant't jdoc tutorial.jdo?

    after i compile the the java files in tutorial directory,then
    Enhance the JDO classes like this
    jdoc tutorial.jdo
    but has a error like below",
    E:\test\tutorial>jdoc tutorial.jdo
    Exception in thread "main" java.lang.IllegalArgumentException: The
    specified cla
    ss "tutorial.Animal" could not be loaded.
    javax.jdo.JDOFatalUserException: java
    lang.ClassNotFoundException: tutorial.Animal
    NestedThrowables:
    java.lang.ClassNotFoundException: tutorial.Animal
    at
    com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(Cl
    assArgParser.java:71)
    at
    com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier.main(MetaDa
    taVerifier.java:69)
    at
    com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier.main(MetaDa
    taVerifier.java:51)
    Exception in thread "main" java.lang.IllegalArgumentException: The
    specified cla
    ss "tutorial.Animal" could not be loaded.
    javax.jdo.JDOFatalUserException: java
    lang.ClassNotFoundException: tutorial.Animal
    NestedThrowables:
    java.lang.ClassNotFoundException: tutorial.Animal
    at
    com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(Cl
    assArgParser.java:71)
    at
    com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:175
    at
    com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:135
    at
    com.solarmetric.kodo.enhance.JDOEnhancer.main(JDOEnhancer.java:114)
    E:\test\tutorial\tutorial
    2004-08-26 21:59 <DIR> .
    2004-08-26 21:59 <DIR> ..
    2004-08-29 08:14 1,166 JDOFactory.class
    2004-08-29 08:13 569 Animal.class
    2004-08-26 22:01 6,695 AnimalMaintenance.cla
    2004-08-29 08:14 615 Dog.class
    2004-08-26 22:01 4,607 Rabbit.class
    2004-08-26 22:01 842 Snake.class
    2004-08-26 22:01 1,416 SeedDatabase.class
    7 &#20010;flies 15,910 bt
    2 &#20010;dictionary 164,622,336

    Make sure the class is compiled.Sorry. Also make sure the compiled class file is in your classpath. If the
    class is compiled to <xxx>/tutorial/Animal.class, the <xxx> must be in your
    classpath.
    If you start over and follow the instructions in the README and in the tutorial,
    they include running a script to set up your classpath correctly.

  • Can Flash MX 2004  handle Director files (.dir)

    Hi,
    Can Flash handle Director movies? I am making a presentation
    of my artworks in Flash environment; I have both Flash and Director
    movies. I know that I can import all my swf movies into Director
    MX2004 to create a standalone projector and play both swf and dir
    movies in Director MX 2004. Does the same work if I import dir
    files into Flash MX 2004 Pro?
    Thanks
    Uti

    uxk8396 wrote:
    > What will be the ideal solution in this case. I do not
    have Director MX 2004.
    > I have only Macromedia Studio mX 2004 Pro.
    Hi Uttam,
    If you need Director movies to be integrated with Flash
    movies, there is only one
    way, use Director. If you don't have Director, then you won't
    be able to use the
    Director movies. So, either, recreate the Director movies in
    Flash (if it's
    possible), or better yet, get Director
    regards
    Dean
    Director Lecturer / Consultant
    http://www.fbe.unsw.edu.au/learning/director
    http://www.multimediacreative.com.au

  • MIAW crashes

    In a standalone director program, I have a function that
    opens up a window on mouseup. The window contains a simple .dir
    movie prompts user to enter password.
    Several user reported that the application crashes on
    mouseup(trying to open the window) , and "Macromedia Projector has
    encountered a problem..." message was display. The application
    itselt either quit or froze.
    I have not encountered this problem personally either in
    Director developing environment nor in a projector run environ. (I
    use both PC and Mac, use MX 2004 version) But this seems to happen
    a lot to people who uses it in a projector environ.
    Does anyone know if this is a common/known problem/issue with
    director MIAW? What cause a MIAW to crash normally? The fact that I
    can't reproduce it at all yet this problem happens to more than a
    few of my users is puzzling. Is there something wrong with the code
    perhaps?
    Many thanks in advance.

    > Does anyone know if this is a common problem with
    director MIAW? is there
    > something wrong with the code perhaps?
    There is nothing apparently wrong with the code you posted,
    except
    perhaps in the ForgetAllWindows() handler. Is the
    OpenCheckMailBox()
    handler called from a window that might be forgotten in the
    ForgetAllWindows() handler?
    You should search the NG for issues related to crashes and
    forgetting MIAWs.

  • SAP NetWeaver 2004s Java Trial Version installation problem

    I am trying to install SAP NetWeaver 2004s Java Trial Version in my windows xp machine.
    I have the following error.
    Nothing is written in to my E:\usr\sap folder which I have share as saploc and sapmnt.
    I read the forum threads on this.
    I still do not know how to do this.
    Please help
    vijay
    INFO 2006-12-17 21:23:58
    Execute step getSID of component |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0.
    ERROR 2006-12-17 21:24:01
    FJS-00003  TypeError: dir_profile has no properties (in script NW_Java_OneHost|ind|ind|ind|ind, line 39640: ???)
    ERROR 2006-12-17 21:24:01
    MUT-03025  Caught ESAPinstException in Modulecall: executing JS script failed.
    ERROR 2006-12-17 21:24:01
    FCO-00011  The step getSID with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|getSID was executed with status ERROR .

    Rajat,
    Sorry for the delay. I was on vacation.
    Which environment variable are you referring to?
    JAVA_HOME is set to C:\j2sdk1.4.2_09.
    I am using j2sdk1.4.2_09.
    Only port changes I tried was
    #sapdp01          3201/tcp.
    I tried with and without the # .
    Both had the same results.
    I have given below the last few statememts from the sapinst log file
    Any help to solve my problem will be greatly appreciated.
    Thanks.
    Vijay
    INFO 2007-01-02 16:13:25
    Execution of the command "C:\j2sdk1.4.2_09\bin\java.exe -classpath C:/DOCUME1/VIJAYV1/LOCALS1/Temp/sapinst_exe.5432.1167783061/JAR/ins-j2ee.jar com.sap.ins.j2ee.GetSystemProperty" finished with return code 0. Output: ##Tue Jan 02 16:13:25 PST 2007java.runtime.name=Java(TM) 2 Runtime Environment, Standard Editionsun.boot.library.path=C\:
    j2sdk1.4.2_09
    jre
    binjava.vm.version=1.4.2_09-b05java.vm.vendor=Sun Microsystems Inc.java.vendor.url=http\://java.sun.com/path.separator=;java.vm.name=Java HotSpot(TM) Client VMfile.encoding.pkg=sun.iouser.country=USsun.os.patch.level=Service Pack 2java.vm.specification.name=Java Virtual Machine Specificationuser.dir=C\:
    Program Files
    sapinst_instdir
    NW04S
    SNEAK_PREVIEW
    FULL
    INSTALLjava.runtime.version=1.4.2_09-b05java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironmentjava.endorsed.dirs=C\:
    j2sdk1.4.2_09
    jre
    lib
    endorsedos.arch=x86java.io.tmpdir=C\:
    DOCUME1
    VIJAYV1
    LOCALS1
    Temp
    line.separator=\r\njava.vm.specification.vendor=Sun Microsystems Inc.user.variant=os.name=Windows XPsun.java2d.fontpath=java.library.path=C\:
    j2sdk1.4.2_09
    bin;.;C\:
    WINDOWS
    system32;C\:
    WINDOWS;e\:
    sapdb
    programs
    bin;e\:
    sapdb
    programs
    pgm;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;f\:
    oracle
    product
    10gDSHome
    jdk
    jre
    bin
    classic;f\:
    oracle
    product
    10gDSHome
    jdk
    jre
    bin;f\:
    oracle
    product
    10gDSHome
    jdk
    jre
    bin
    client;f\:
    oracle
    product
    10gDSHome
    jlib;f\:
    oracle
    product
    10gDSHome
    bin;f\:
    oracle
    product
    10gDSHome
    jre
    1.1.8
    bin;f\:
    oracle
    product
    10.1.0
    Db_1
    bin;f\:
    oracle
    product
    10.1.0
    Db_1
    jre
    1.4.2
    bin
    client;f\:
    oracle
    product
    10.1.0
    Db_1
    jre
    1.4.2
    bin;C\:
    WINDOWS
    system32;C\:
    WINDOWS;C\:
    WINDOWS
    System32
    Wbem;C\:
    Program Files
    Microsoft SQL Server
    80
    Tools
    BINN;C\:
    Program Files
    Microsoft SQL Server
    80
    Tools
    Binn
    ;C\:
    WINDOWS
    Microsoft.NET
    Framework
    v1.1.4322;F\:
    maven
    Maven 1.0
    bin;C\:
    Program Files
    QuickTime
    QTSystem
    ;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;C\:
    MCC18
    mpasm;C\:
    MCC18
    bin;java.specification.name=Java Platform API Specificationjava.class.version=48.0java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactoryos.version=5.1user.home=C\:
    Documents and Settings
    vijay vijayakumaruser.timezone=America/Los_Angelesjava.awt.printerjob=sun.awt.windows.WPrinterJobfile.encoding=Cp1252java.specification.version=1.4java.class.path=C\:/DOCUME1/VIJAYV1/LOCALS~1/Temp/sapinst_exe.5432.1167783061/JAR/ins-j2ee.jaruser.name=vijay vijayakumarjava.vm.specification.version=1.0java.home=C\:
    j2sdk1.4.2_09
    jresun.arch.data.model=32user.language=enjava.specification.vendor=Sun Microsystems Inc.awt.toolkit=sun.awt.windows.WToolkitjava.vm.info=mixed modejava.version=1.4.2_09java.ext.dirs=C\:
    j2sdk1.4.2_09
    jre
    lib
    extsun.boot.class.path=C\:
    j2sdk1.4.2_09
    jre
    lib
    rt.jar;C\:
    j2sdk1.4.2_09
    jre
    lib
    i18n.jar;C\:
    j2sdk1.4.2_09
    jre
    lib
    sunrsasign.jar;C\:
    j2sdk1.4.2_09
    jre
    lib
    jsse.jar;C\:
    j2sdk1.4.2_09
    jre
    lib
    jce.jar;C\:
    j2sdk1.4.2_09
    jre
    lib
    charsets.jar;C\:
    j2sdk1.4.2_09
    jre
    classesjava.vendor=Sun Microsystems Inc.file.separator=
    java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgisun.io.unicode.encoding=UnicodeLittlesun.cpu.endian=littlesun.cpu.isalist=pentium i486 i386
    INFO 2007-01-02 16:13:25
    Execute step setNWOption of component |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_getJavaHome|ind|ind|ind|ind|0|0.
    INFO 2007-01-02 16:13:26
    Execute step collect of component |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0.
    ERROR 2007-01-02 16:13:28
    FJS-00003  TypeError: this._name has no properties (in script NW_Java_OneHost|ind|ind|ind|ind, line 8987: ???)
    ERROR 2007-01-02 16:13:29
    FCO-00011  The step collect with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|collect was executed with status ERROR .

  • Why I upgraded to Dir 12?

    To set the Stage.... I had been a long time Director user back with Macromedia and long before Flash but stopped using it about 2007.   So why did I upgrade to Director 12?   The price of the upgrade was cheap ($299) and the number of additions since MX 2004 seemed great...especially the H264 video... but most importantly and intriguing for me was the ability to port to iOS.
    I had tried the free version but it took me a while to figure out provisioning for iOS so... my trial ran out....the decision had to be made.   Buy or not buy.
    For $299 I gambled and bought it...figuring I could figure out this provisioning thing between my day job and my obessive need to play World of War Craft.  
    The good news is ... I have figure out how to use _Touches, the accelerometer and gyro and have made a few prototypes, applications and presentations for use on the iPad and iPhone.  The bad news is... the documentation is lacking as everyone has pointed out and there are some very basic iOS problems in this release:  3D objects still have to be w3d an old format that current 3D platforms don't export anymore, no video support, vector objects created within director don't render in IOS, Enterprise provisioning has issues ( havent gotten this to work yet ), rgb(255,255,255) doesn't key out properly on text, and VoiceSpeak doesnt work - nor do any third party xtras, transitions do not work ( frame or puppet )...and I have only been at this for about a week so i know there i alot more issues I have yet to uncover.  My biggest grief is... no books...only PDFs to search.   I do my biggest research when the computer is not on and thumbing threw the lingo dictionary...just wondering what a particular property or command does....then when the question arrise... I can go...oh ya..read that somewhere...I can do that.....the PDF thing for me stinks...good thing I still had my printed MX Lingo Dictonary.
    But is this all bad news?  I don't think so...at least I hope not.  Adobe hasn't figured out what to do with Director but with Flash loosing ground and relegated now to just creating banner ads, at least in the agency I work for and Edge so far behind where we all wish it was....there is a window of opportunity for Director...but where and in what market?   Adobe thinks its games and all things shockwave.   If you open the IPA you will find the famous .dcr and their website promotes the fact that you can "publish games directly to iOS"...they did not mention anything else you could do with iOS.... I don't think they are thinking they want to put up a significant fight yet to handle the xtra security issues and they aren't really certain what the director community is going to do with the tools they have.
    This is where Director was at version 1.0  - a collection of tools and a few people wanting to push the envelope of interactivity.   Luckily for us,  there are alot more now than just a few people.  But if I were Adobe and I didn't know what to do with the product I would do exactly what they have done.   Provide a few updates and see who is buying, deetermine my market size and see what they do with the tools they provided.  
    Since my main goal was to produce iOS apps,  Director 12 with its problems is definately a step backwards in its functionality due to its current limitations....but what it is providing is the ability to develop quickly and easily for iOS.   I can make prototypes applications faster and cheaper and get them in the hands of clients in days vs. months.   
    Perhaps Adobe doesn't know why I bought Director 12.  Perhaps they don't know why anyone buys Director anymore and believe games are the only reason anyone does it.  My fear is that Director has been on its death bed for several years and unless we ( the community ) can convince Adobe where this product can be used in the mobile space ( games or otherwise ) its future will continue to be uncertain.   I believe they have given us an opportunity - its iOS and we have to once again push the limits of the features they have provided.  
    Well at least thats why I upgraded......why did you?

    Hi Orjan Bark
    We need your help as u r Director Lover.
    We are working on a projetor using Flash (AS 3) and Director 11.5, and stuck at an issue of External Loding of Swf from swf link in director.
    i.e. In dir file there are several swf (with AS3 code). These swf runtime load external swf file(which is in the same folder).Parent swf is usning only library asset from external; files.
    The problem is that it takes too long long long time to load that swf files.
    When we run swf file it works fine without any delay.(without director all goes perfect).
    We had tried to solve this problem using diffternt method of AS3. But it seems that problem occur at director side,( as every time it work fine with out director).
    So do you have any idea, what's wrong with director......
    Thanks in advanced if u can solve this.....

  • .dir (created on Win) with FileXtra4, doesn't work on Mac

    Hello.
    I created (on a Windows PC) a Director Project file for my MSc dissertation, using xtra "Filextra4".
    I included some PDF files and when the user clicks on this file, it should open. This function works fine on Windows, but it does not on Macintosh.
    I have this code:
    property pdf_name
    on beginSprite me
      Initialize me
    end beginSprite
    on Initialize me
    end Initialize
    on mouseUp me
      fxObj = xtra("FileXtra4").new()
      if the platForm contains "win" then
        pdf_path=the moviepath &"material\"& pdf_name
      else
        pdf_path=the moviepath &"material:"& pdf_name
      end if
      fxopen=fxObj.fx_FileOpenDocument(pdf_path)
      fxObj=0
    end
    on getPropertyDescriptionList me
      return \
    #pdf_name: \
      #comment: "Name of the file to open:", \
      #format:  #string, \
      #default: "___.pdf" \
    end getPropertyDescriptionList
    and when I try to open a PDF file on a Mac, this message appears:
    Director Player Error.
    Script Error. Continue?
    When I try to open a PDF file into Director on Mac, this message appears:
    Script error: Object expected
    fxObj = xtra("FileXtra4").new()
    I have also tried all these steps:
    1) I extracted the files "FileXtra4.x32", "FileXtra" and "FileXtra (carbon)" on a folder named "Xtras" which was in the same folder with the .app file.
    2) I put all these files into folder C:\Program Files\Adobe\Adobe Director 11\Configuration\Xtras\FileXtra4, but also into C:\Program Files\Adobe\Adobe Director 11\Configuration\Cross Platform Resources\Macintosh\Xtras
    3) I renamed the "Filextra4" file for Mac into FileXtra4.data, FileXtra4.rsrc and FileXtra4.cpio and put them into C:\Program Files\Adobe\Adobe Director 11\Configuration\Cross Platform Resources\Macintosh\Xtras
    4) I added the line [#namePPC:"FileXtra4",         #nameW32:"FileXtra4.X32"] into XtraInfo.txt
    but none of these steps worked.
    Could you please help me to solve this problem?
    Thank you in advance.

    Which version of Director are you using?  If you are using Director 11 or 11.5, then FileXtra4 will not work on Macs.  And it will not always work on PC.  This xtra was never updated when DIrector's format changed in Dir 11.
    If you are using Directo MX 2004 or earlier, then you should be able to simply download the Mac version of the xtra from the site and unpack it ON A MAC.  Put it in an external xtras folder (where the xtras folder is in the same folder as the projector).  Then burn the files (again, on a Mac).  If you ever put the unpacked Mac xtras onto a PC filesystem, then they will no longer work.

  • Dreamweaver MX 2004 hangs (10.5.8 PowerMac G5)

    After not using Dreamweaver MX 2004 (7.0) since Mar 17, 2011, I tried to launch it today.  The icon bounced once, the beach ball whizzed and and application hangs.
    I deleted dreamweaver prefs: hang
    Checked for and installed Dreamweaver update to 7.0.1.2181: hang
    Repaired permissions
    Restarted computer: hang
    Created a Test OS account: hang
    Only changes to the Mac are the 2 security updates 2011-1 & 2 and Safari 5.05 (which is not in use)
    Other odd behavior: Fans seem to be running more than usual.
    Checked Activity Monitor: AuthenticationSe using 99% CPU
    Before I uninstall/reinstall DW, would appreciate any help or advice.  I cannot update Dreamweaver beyond this version.
    Dreamweaver hang log:
    Date/Time:      2011-04-19 15:37:33 -0700
    OS Version:     10.5.8 (Build 9L31a)
    Architecture:   ppc
    Report Version: 4
    Command:        Dreamweaver
    Path:           /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/Dreamweaver
    Version:        7.0.1.2181 (7.0.1.2181)
    Parent:         launchd [75]
    PID:            334
    Event:          hang
    Time:           4.98s
    Steps:          23
    Process:        Dreamweaver [334]
    Path:           /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/Dreamweaver
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
      000ca000        /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
      000d7000        /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
      000e2000        /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
      007a2000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      131a5000        /Users/emet/Library/Application Enhancers/FruitMenu.ape/Contents/MacOS/FruitMenu
      13327000        /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      13334000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      134c2000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
      134d9000        /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
      134ec000        /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
      13525000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/cfmsupport.dylib
      1352f000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/Resources/Macrovision/runtime6.bundle/Contents/MacOS/runtime6
      13550000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/Resources/Macrovision/runtime1.bundle/Contents/MacOS/runtime1
      18770000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/Resources/MMxpt.framework/MMxpt
      2cc00000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/Frameworks/LicMan.framework/LicMan
      3fa00000        /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/../MacOS/mv.dylib
      70090000        /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
      ba900000        /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
      bab00000        /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
      Thread id:      863fd40
      User stack:
        23 ??? [0x19fc940]
          23 ??? [0x19fcb94]
            23 ??? [0x19f89d8]
              23 ??? [0x19f8818]
                23 ??? [0x10357d0]
                  23 ??? [0x1035cf8]
                    23 ??? [0x1035f98]
                      23 ??? [0x103e74c]
                        23 ??? [0x1af8028]
                          23 ??? [0x1af81dc]
                            23 _zzzz_ep4 + 200 (in mv.dylib) [0x3fa06770]
                              23 dyld_stub_binding_helper + 17528 (in mv.dylib) [0x3fa04e14]
                                23 _D738E8AC_2A01_11D7_9153 + 204 (in runtime1) [0x1355b5bc]
                                  23 _D23805BA_296C_11D7_AD26 + 89812 (in runtime1) [0x1357177c]
                                    23 _D23805BA_296C_11D7_AD26 + 63808 (in runtime1) [0x1356b1e8]
                                      23 _D23805BA_296C_11D7_AD26 + 110848 (in runtime1) [0x135769a8]
                                        23 _MVAuthenticate + 140 (in MMxpt) [0x1879a278]
                                          23 _CdaApiOpenEx + 256 (in MMxpt) [0x1879b630]
                                            23 _CdaApiOpenEx + 188 (in LicMan) [0x2cc30d00]
                                              23 _CdaApiTransactionStartExW + 1228 (in LicMan) [0x2cc31bfc]
                                                23 _EA8A5B48_94F4_11D7_932D_0003936F5F6A + 37128 (in LicMan) [0x2cc30338]
                                                  23 _CdaApiTransactionStartExW + 145876 (in LicMan) [0x2cc55104]
                                                    23 _CdaApiTransactionStartExW + 146116 (in LicMan) [0x2cc551f4]
                                                      23 _CdaApiTransactionStartExW + 161292 (in LicMan) [0x2cc58d3c]
                                                        23 ___sem_wait_nocancel + 12 (in libSystem.B.dylib) [0x907dcf3c]
      Kernel stack:
        23 _absolutetime_to_microtime + 68 [0xb4448]
          23 _version_variant + 7912 [0x3100ac]
            23 __ZN9IODTNVRAM15initOFVariablesEv + 956 [0x2e4dcc]
              23 _thread_daemon_init + 92 [0x39cd8]
                23 _semaphore_signal_all_trap + 72 [0x36b98]
                  23 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      7d76d40
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x7a65a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        ARDAgent [132]
    Path:           /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
      Thread id:      68e2d40
      User stack:
        23 ??? [0x2140]
          23 ??? [0x56360]
            23 ??? [0x2290]
              23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
                23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      69fb000
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
      Thread id:      6b575f0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 ??? [0xa92c]
              23 ___recvfrom_nocancel + 12 (in libSystem.B.dylib) [0x907a762c]
      Kernel stack:
        23 _absolutetime_to_microtime + 68 [0xb4448]
          23 _version_variant + 7912 [0x3100ac]
            23 __ZN12_IOMemoryMap8redirectEP4taskb + 336 [0x2d978c]
              23 __ZN18IOMemoryDescriptor11handleFaultEPvP6vm_mapjmmm + 612 [0x2d947c]
                23 __ZN18IOTimerEventSource10setTimeoutE13mach_timespec + 16 [0x2d483c]
                  23 __ZN18IOMemoryDescriptor9MetaClassC2Ev + 36 [0x2d5db4]
                    23 _mmrw + 528 [0x2aa1fc]
                      23 _consselect + 52 [0x2a9e28]
                        23 _update_priority + 324 [0x300f0]
                          23 _semaphore_signal_all_trap + 72 [0x36b98]
                            23 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      6ad63a8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 _wait4 + 12 (in libSystem.B.dylib) [0x907cbf2c]
    Process:        ATSServer [143]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
      Thread id:      69fbaf8
      User stack:
        23 ??? [0x5964]
          23 ??? [0xcad9c]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6ad7d40
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _TS_exception_listener_thread + 112 (in CarbonCore) [0x91538fe4]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        AirPort Base Station Agent [129]
    Path:           /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
      00041000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      00069000        /Users/emet/Library/Application Enhancers/FruitMenu.ape/Contents/MacOS/FruitMenu
      000f3000        /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
      0034a000        /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
      Thread id:      697d0e8
      User stack:
        23 ??? [0x2730]
          23 ??? [0x2a2c]
            23 _NSApplicationMain + 444 (in AppKit) [0x9482f29c]
              23 -[NSApplication run] + 748 (in AppKit) [0x9485e8a0]
                23 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94864c00]
                  23 __DPSNextEvent + 600 (in AppKit) [0x94865248]
                    23 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92c1777c]
                      23 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92c1793c]
                        23 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92c17b18]
                          23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6b58838
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x455a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6e9bea0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x907aed74]
      Thread id:      6e9baf8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ??? [0x1d3c0]
            23 ??? [0x1a464]
              23 ??? [0x1d7d4]
                23 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x9074b258]
    Process:        AppleVNCServer [137]
    Path:           /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer
      Thread id:      697d490
      User stack:
        23 ??? [0x2080]
          23 ??? [0x23c18]
            23 ??? [0x2618]
              23 ??? [0x547c]
                23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
                  23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                    23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6b56af8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
      Thread id:      6b56750
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 ??? [0x4894]
              23 _select$DARWIN_EXTSN$NOCANCEL + 12 (in libSystem.B.dylib) [0x90794094]
    Process:        DirectoryService [11]
    Path:           /usr/sbin/DirectoryService
      ADDRESS         BINARY
      00001000        /usr/sbin/DirectoryService
      0015a000        /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
      Thread id:      58e7838
      User stack:
        23 start + 68 (in DirectoryService) [0x157f0]
          23 _main + 2540 (in DirectoryService) [0x16210]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      58c8248
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            23 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              23 __ZN20CPluginRunLoopThread10ThreadMainEv + 232 (in DirectoryService) [0x21ae8]
                23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
                  23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                    23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      58f4be0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            23 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              23 __ZN17CMigHandlerThread10ThreadMainEv + 316 (in DirectoryService) [0x21d68]
                23 _mach_msg_server + 504 (in libSystem.B.dylib) [0x907d3f18]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Kernel stack:
        23 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          23 _host_get_clock_service + 8 [0x25610]
            23 _ipc_port_lookup_notify + 68 [0x1ef60]
              23 _semaphore_signal_all_trap + 72 [0x36b98]
                23 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      58e5000
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
      Thread id:      602b5f0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            23 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              23 _syscall + 12 (in libSystem.B.dylib) [0x907a076c]
      Thread id:      7fc23a8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9DSLThread11_RunWrapperEPv + 100 (in DirectoryServiceCore) [0x162fa8]
            23 __ZN9DSCThread3RunEv + 56 (in DirectoryServiceCore) [0x162d50]
              23 __ZN17CMigHandlerThread10ThreadMainEv + 164 (in DirectoryService) [0x21cd0]
                23 _mach_msg_server_once + 304 (in libSystem.B.dylib) [0x907bacc8]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        Dock [141]
    Path:           /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      0012f000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      00400000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      6ad80e8
      User stack:
        23 ??? [0x556c]
          23 ??? [0x94de0]
            23 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x9053aa3c]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      61540e8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x1335a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      69fc248
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          22 ??? [0x152ec]
            22 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
          1 _clock_sleep_trap + 8 (in libSystem.B.dylib) [0x9074b338]
      Kernel stack:
        1 _clock_interval_to_absolutetime_interval + 200 [0xb45cc]
          1 _ipc_kobject_server + 168 [0x29198]
            1 _semaphore_signal_all_trap + 72 [0x36b98]
              1 _AltivecAssist + 708 [0xb1fa4]
      Thread id:      6d1e3a8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
    Process:        Finder [145]
    Path:           /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      00502000        /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
      0051a000        /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
      00544000        /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
      0057e000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      005a4000        /Users/emet/Library/Application Enhancers/FruitMenu.ape/Contents/MacOS/FruitMenu
      12ac4000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      12bc2000        /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
      12c4b000        /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
      13050000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      1588e000        /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/Resources/Di splayBundles/Web.qldisplay/Contents/MacOS/Web
      15a08000        /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      15a15000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      15b4c000        /System/Library/PrivateFrameworks/URLMount.framework/URLMount
      1640e000        /Library/DropboxHelperTools/Dropbox_u501/DropboxPlugin.plugin/Contents/MacOS/Dr opboxPlugin
      1642e000        /usr/lib/libmx.A.dylib
      70090000        /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
      Thread id:      6b56000
      User stack:
        23 ??? [0x9c0c]
          23 ??? [0x102cc8]
            23 ??? [0x24b38]
              23 _RunApplicationEventLoop + 152 (in HIToolbox) [0x92c759d8]
                23 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92c1793c]
                  23 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92c17b18]
                    23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                      23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      697cd40
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 __ZN23TSystemNotificationTask26SystemNotificationTaskProcEPv + 108 (in DesktopServicesPriv) [0x937263f0]
              23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
                23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6ad6af8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 __ZN25TFSEventsNotificationTask28FSEventsNotificationTaskProcEPv + 180 (in DesktopServicesPriv) [0x9372656c]
              23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
                23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6ad75f0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 __ZN13TNodeSyncTask12SyncTaskProcEPv + 92 (in DesktopServicesPriv) [0x93731ac4]
              23 _MPWaitOnQueue + 276 (in CarbonCore) [0x9155d160]
                23 _TSWaitOnConditionTimedRelative + 208 (in CarbonCore) [0x9153b920]
                  23 _TSWaitOnCondition + 136 (in CarbonCore) [0x9155d5a4]
                    23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
      Thread id:      602e3a8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x5825a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      66a80e8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
      Thread id:      697c998
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x907aed74]
      Thread id:      7923248
      User stack:
        23 ??? [0x12f436d8]
          23 _thread_suspend + 88 (in libSystem.B.dylib) [0x907f6ad8]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      7d77be0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 -[NSUIHeartBeat _heartBeatThread:] + 668 (in AppKit) [0x948c09d0]
              23 -[NSConditionLock lockWhenCondition:beforeDate:] + 272 (in Foundation) [0x90549fd0]
                23 -[NSCondition waitUntilDate:] + 388 (in Foundation) [0x9054a1a4]
                  23 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x9074b258]
      Thread id:      7fc4838
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN3***10fastCallocEmm + 0 (in JavaScriptCore) [0x97851d90]
            23 __ZN3***17TCMalloc_PageHeap15scavengerThreadEv + 160 (in JavaScriptCore) [0x97851a70]
              23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
      Thread id:      79235f0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __Z22CFURLCacheWorkerThreadPv + 292 (in CFNetwork) [0x959af394]
            23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
              23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      7fc4490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 284 (in Foundation) [0x90563d54]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6e9dbe0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _PrivateMPEntryPoint + 80 (in CarbonCore) [0x9155b388]
            23 __ZN15TFolderSizeTask18FolderSizeTaskProcEPv + 92 (in DesktopServicesPriv) [0x93733784]
              23 _MPWaitOnQueue + 276 (in CarbonCore) [0x9155d160]
                23 _TSWaitOnConditionTimedRelative + 244 (in CarbonCore) [0x9153b944]
                  23 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x9074b258]
    Process:        KernelEventAgent [38]
    Path:           /usr/sbin/KernelEventAgent
      ADDRESS         BINARY
      00001000        /usr/sbin/KernelEventAgent
      Thread id:      602f5f0
      User stack:
        23 start + 68 (in KernelEventAgent) [0x26a8]
          23 _main + 1008 (in KernelEventAgent) [0x44d8]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      61da838
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x907aed74]
    Process:        RFBRegisterMDNS [35]
    Path:           /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/RFBRegisterMDNS
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/RFBRegisterMDNS
      Thread id:      6030490
      User stack:
        23 ??? [0x2250]
          23 ??? [0x254c]
            23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
    Process:        Spotlight [134]
    Path:           /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight
      00058000        /System/Library/PrivateFrameworks/Calculate.framework/Versions/A/Calculate
      00069000        /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
      0009a000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      000c4000        /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
      000dc000        /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
      00300000        /Users/emet/Library/Application Enhancers/FruitMenu.ape/Contents/MacOS/FruitMenu
      0037b000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      01b86000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      Thread id:      697dbe0
      User stack:
        23 ??? [0x3038]
          23 _NSApplicationMain + 444 (in AppKit) [0x9482f29c]
            23 -[NSApplication run] + 748 (in AppKit) [0x9485e8a0]
              23 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94864c00]
                23 __DPSNextEvent + 600 (in AppKit) [0x94865248]
                  23 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92c1777c]
                    23 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92c1793c]
                      23 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92c17b18]
                        23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                          23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6d20be0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x9e5a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      742b998
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _fe_fragment_thread + 52 (in QuartzCore) [0x953e6114]
            23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
      Thread id:      7d77838
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 ??? [0x32bbc]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      7d77490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 -[NSUIHeartBeat _heartBeatThread:] + 668 (in AppKit) [0x948c09d0]
              23 -[NSConditionLock lockWhenCondition:beforeDate:] + 272 (in Foundation) [0x90549fd0]
                23 -[NSCondition waitUntilDate:] + 388 (in Foundation) [0x9054a1a4]
                  23 _semaphore_timedwait_signal_trap + 8 (in libSystem.B.dylib) [0x9074b258]
    Process:        SystemStarter [31]
    Path:           /sbin/SystemStarter
      ADDRESS         BINARY
      00001000        /sbin/SystemStarter
      Thread id:      58e7490
      User stack:
        23 ??? [0x23c8]
          23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
    Process:        SystemUIServer [144]
    Path:           /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      0006f000        /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
      0007c000        /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
      000cd000        /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
      000f6000        /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
      00101000        /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
      00109000        /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0023e000        /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
      003a3000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      003df000        /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
      003f0000        /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
      00433000        /usr/lib/libcurl.4.dylib
      00480000        /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
      004af000        /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
      004c7000        /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
      00720000        /System/Library/CoreServices/Menu Extras/User.menu/Contents/MacOS/User
      00781000        /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/MacOS/TextInput
      00796000        /System/Library/CoreServices/Menu Extras/Displays.menu/Contents/MacOS/Displays
      007a5000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      007ae000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      007dc000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      119c6000        /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
      11b17000        /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      11b24000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      11b96000        /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
      11c47000        /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
      70090000        /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
      Thread id:      6ad8be0
      User stack:
        23 ??? [0x6054]
          23 ??? [0x66bc]
            23 -[NSApplication run] + 748 (in AppKit) [0x9485e8a0]
              23 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 (in AppKit) [0x94864c00]
                23 __DPSNextEvent + 600 (in AppKit) [0x94865248]
                  23 _BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x92c1777c]
                    23 _ReceiveNextEventCommon + 416 (in HIToolbox) [0x92c1793c]
                      23 _RunCurrentEventLoopInMode + 268 (in HIToolbox) [0x92c17b18]
                        23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                          23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6d1f998
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___ape_agent + 368 (in ApplicationEnhancer) [0x4845a0]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      660b490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __StaticProcessIOObjectsArray + 440 (in ICANotifications) [0xd3ff8]
            23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
      Thread id:      6d1f5f0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___kevent + 12 (in libSystem.B.dylib) [0x9078c910]
      Thread id:      6ad6ea0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 ??? [0x26914]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6b57d40
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN3AVS26DestroyAVCDeviceControllerEPNS_19AVCDeviceControllerE + 396 (in DVCPROHDMuxer) [0x11bad2bc]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      69fb3a8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x91c22de8]
            23 __ZN10HALRunLoop9OwnThreadEPv + 216 (in CoreAudio) [0x91c22fac]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      697c248
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _fe_fragment_thread + 52 (in QuartzCore) [0x953e6114]
            23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
    Process:        UserEventAgent [135]
    Path:           /usr/sbin/UserEventAgent
      ADDRESS         BINARY
      00001000        /usr/sbin/UserEventAgent
      00014000        /System/Library/UserEventPlugins/ACRRDaemon.plugin/Contents/MacOS/ACRRDaemon
      00027000        /System/Library/UserEventPlugins/AirPortUserAgent.plugin/Contents/MacOS/AirPort UserAgent
      00030000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0006c000        /System/Library/UserEventPlugins/alfUIplugin.plugin/Contents/MacOS/alfUIplugin
      00071000        /System/Library/UserEventPlugins/AppleHIDMouseAgent.plugin/Contents/MacOS/Apple HIDMouseAgent
      00077000        /System/Library/UserEventPlugins/BluetoothUserAgent-Plugin.plugin/Contents/MacO S/BluetoothUserAgent-Plugin
      00086000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      0008f000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      000ab000        /System/Library/UserEventPlugins/BTMMPortInUseAgent.plugin/Contents/MacOS/BTMMP ortInUseAgent
      000c6000        /System/Library/UserEventPlugins/iCalAlarmAgent.plugin/Contents/MacOS/iCalAlarm Agent
      000d1000        /System/Library/UserEventPlugins/ParentalControlsUEAPlugin.plugin/Contents/MacO S/ParentalControlsUEAPlugin
      00300000        /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
      003d6000        /System/Library/UserEventPlugins/SCMonitor.plugin/Contents/MacOS/SCMonitor
      0043a000        /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      00447000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      004b9000        /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
      70090000        /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
      Thread id:      68e1000
      User stack:
        23 ??? [0x24f0]
          23 ??? [0x3760]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      68e2248
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___NSThread__main__ + 1008 (in Foundation) [0x9050cd88]
            23 _appusage_server_routine + 8116 (in ACRRDaemon) [0x16d9c]
              23 -[NSRunLoop(NSRunLoop) run] + 76 (in Foundation) [0x90545330]
                23 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x9053aa3c]
                  23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                    23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6d1e750
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN3AVS26DestroyAVCDeviceControllerEPNS_19AVCDeviceControllerE + 396 (in DVCPROHDMuxer) [0x4d02bc]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6d1eaf8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN9CAPThread5EntryEPS_ + 108 (in CoreAudio) [0x91c22de8]
            23 __ZN10HALRunLoop9OwnThreadEPv + 216 (in CoreAudio) [0x91c22fac]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        WindowServer [69]
    Path:           /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
      ADDRESS         BINARY
      00001000        /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
      00017000        /System/Library/Extensions/ATIRadeon9700GA.plugin/Contents/MacOS/ATIRadeon9700G A
      0003b000        /Library/Frameworks/ApplicationEnhancer.framework/ApplicationEnhancer
      00500000        /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      12000000        /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
      138b8000        /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
      Thread id:      657abe0
      User stack:
        23 start + 68 (in WindowServer) [0x1f94]
          23 _main + 16 (in WindowServer) [0x1fd8]
            23 _CGXGetRootAdminCredentials + 0 (in CoreGraphics) [0x9325c9a8]
              23 _CGXServerLoop + 124 (in CoreGraphics) [0x932c3950]
                23 _CGXRunOneServicesPass + 316 (in CoreGraphics) [0x932b7b10]
                  22 _CGXRunOneServerPass + 276 (in CoreGraphics) [0x932bb944]
                    22 _mach_msg_overwrite_trap + 8 (in libSystem.B.dylib) [0x9074b1e8]
                  1 _CGXRunOneServerPass + 324 (in CoreGraphics) [0x932bb974]
                    1 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      60250e8
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___tickleThread + 60 (in IOKit) [0x9478fbb4]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      68e3be0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _eventThread + 452 (in CoreGraphics) [0x932a4298]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      68e2998
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 ___apecps + 2132 (in ApplicationEnhancer) [0x465cc]
            23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      69fd838
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _glvmDoWork + 124 (in libGLProgrammability.dylib) [0x97283b6c]
            23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
      Thread id:      69fd490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _layer_blit_async_thread + 104 (in CoreGraphics) [0x9358cfb8]
            23 _layer_blit_thread + 212 (in CoreGraphics) [0x9358cb60]
              23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
    Process:        autofsd [51]
    Path:           /usr/libexec/autofsd
      ADDRESS         BINARY
      00001000        /usr/libexec/autofsd
      Thread id:      61535f0
      User stack:
        23 ??? [0x24e8]
          23 ??? [0x2b30]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        backupd-helper [335]
    Path:           /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
      ADDRESS         BINARY
      00001000        /System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper
      Thread id:      76d00e8
      User stack:
        23 ??? [0x22ec]
          23 ??? [0x2c50]
            23 _sleep$UNIX2003 + 76 (in libSystem.B.dylib) [0x907bab50]
              23 ___semwait_signal + 12 (in libSystem.B.dylib) [0x90751bec]
    Process:        blued [50]
    Path:           /usr/sbin/blued
      ADDRESS         BINARY
      00001000        /usr/sbin/blued
      0003f000        /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
      000c1000        /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
      00182000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      Thread id:      6153998
      User stack:
        23 ??? [0x2170]
          23 ??? [0x23050]
            23 -[NSRunLoop(NSRunLoop) run] + 76 (in Foundation) [0x90545330]
              23 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 172 (in Foundation) [0x9053aa3c]
                23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                  23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
    Process:        configd [14]
    Path:           /usr/sbin/configd
      ADDRESS         BINARY
      00001000        /usr/sbin/configd
      0003d000        /System/Library/SystemConfiguration/PrinterNotifications.bundle/Contents/MacOS/ PrinterNotifications
      00041000        /System/Library/SystemConfiguration/PowerManagement.bundle/Contents/MacOS/Power Management
      00055000        /System/Library/SystemConfiguration/DynamicPowerStep.bundle/Contents/MacOS/Dyna micPowerStep
      0005a000        /System/Library/SystemConfiguration/Bluetooth.bundle/Contents/MacOS/Bluetooth
      0005f000        /System/Library/SystemConfiguration/BatteryUpdater.bundle/Contents/MacOS/Batter yUpdater
      00064000        /System/Library/SystemConfiguration/ApplicationEnhancer.bundle/Contents/MacOS/A pplicationEnhancer
      00074000        /System/Library/SystemConfiguration/Apple80211Monitor.bundle/Contents/MacOS/App le80211Monitor
      0008b000        /System/Library/SystemConfiguration/EAPOLController.bundle/EAPOLController
      00095000        /System/Library/SystemConfiguration/IP6Configuration.bundle/Contents/MacOS/IP6C onfiguration
      000a7000        /System/Library/SystemConfiguration/IPConfiguration.bundle/Contents/MacOS/IPCon figuration
      000d4000        /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
      00200000        /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      Thread id:      58e5ea0
      User stack:
        23 start + 68 (in configd) [0x22b8]
          23 _main + 2384 (in configd) [0x2d28]
            23 _server_loop + 80 (in configd) [0x3ae0]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      58cbd40
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _plugin_exec + 1264 (in configd) [0x4c94]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      58cc490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __io_pm_assertion_create + 1980 (in PowerManagement) [0x42a94]
            23 _CFRunLoopRun + 64 (in CoreFoundation) [0x96b1fc20]
              23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
                23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      57a6ea0
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 _select$DARWIN_EXTSN + 12 (in libSystem.B.dylib) [0x907aed74]
    Process:        coreaudiod [142]
    Path:           /usr/sbin/coreaudiod
      ADDRESS         BINARY
      00001000        /usr/sbin/coreaudiod
      00031000        /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
      0003a000        /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
      00200000        /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
      00325000        /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
      00332000        /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
      003a4000        /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
      00481000        /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
      70090000        /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
      Thread id:      68e3838
      User stack:
        23 ??? [0x24d0]
          23 ??? [0xaea4]
            23 _CFRunLoopRunSpecific + 1816 (in CoreFoundation) [0x96b1f398]
              23 _mach_msg_trap + 8 (in libSystem.B.dylib) [0x9074b1d8]
      Thread id:      6d20490
      User stack:
        23 __pthread_start + 320 (in libSystem.B.dylib) [0x9078d0d4]
          23 __ZN3AVS26DestroyAVCDeviceControllerEPNS_19AVCDeviceControllerE + 396 (in DVCPROHDMuxer) [0x3bb2bc]

    Thing that confuses me  is that activity monitor shows that AuthenticationServices is using 97% of the CPU.  I can't locate any information online that tells me what it does or why it's using all that CPU.
    Inspect log:
    User: root (0)
    Parent process launchd(1)
    AuthenticationSe (310)
    98.87% CPU
    Recent hangs: 0

Maybe you are looking for

  • Error accessing  identity management in EP

    Hi, I'v updated EP patches upto 11. After updating the patches I'm not able to access "User Administration". When clicked on "user administration" tab following error message is displayed. "A required service for the identity management user interfac

  • How to upgrade Final Cut pro X 10.0.7 to 10.0.8 version on my MacBook Pro?

    Hi, Recently installed Final Cut Pro X 10.0.7 however Apple Inc release Final Cut pro X 10.0.8 on March 28 2013 hence how can i upgrade from Final Cut Pro X 10.0.7 to 10.0.8 version? or i need to puchase once again? i tried to Upgrade on my OS X Moun

  • Guest Account log-file location(s)

    I have used the "Guest Account" when people come to visit - it's great HOWEVER, in the interest(s) of saving some disk-space I want to delete the log-files that OS X 10.6.x keeps of the guest-account's useage / web-visiting activity and so-on - but I

  • Why is flashback needed in Failover scenario?

    Hello. Why do we need to turn flashback ON on primary and standby databases for fail-over to work?

  • Trace of an event

    Hello All , Please guide me how to trace an event if I am creating any procurement through portal instead of transaction , I know SWELS if we created a transaction from GUI , but how to achieve the trace if I am doing it from POrtal .