Paying someone $10 for a quick 5 minute script.

You'll need Paypal so I can pay you the $10. If you don't
have a Paypal account, then just ignore this.
It's quite simple really, but I'm too lazy to look up the
code myself. I have a flash file already set up with all the
graphics and buttons you need, but I just need someone to script 3
buttons so they play a random song, pause and play. Look at the
picture below
FLASH
SCREENSHOT (CLICK HERE)
What I need:
1) I need it to play one of 8 songs at random (see below for
song files)
2) When someone clicks Next Song, it goes to the next RANDOM
song on the list.
3) When someone clicks on "Music On/Off" the music stops, and
the graphic changes to the appropriate one.
What you get:
1) The .FLA is already set up with all the artwork and
buttons.
2) The URL's of the 8 MP3's that will need to stream.
3) Just download the rar file here and start coding!
Here is the .rar file with everything you need (FLA file plus
all the graphics):
Song_Chooser.rar
Song files:
Below are where the song files will stream from. Remember,
when the flash anim starts (or if someone refreshes the page), it
needs to automatically play one of these 8 songs AT RANDOM.
And here are the locations of the 8 streaming MP3's:
http://www.reallyswell.com/myspace/mysongs/myspacesong_01.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_02.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_03.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_04.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_05.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_06.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_07.mp3
http://www.reallyswell.com/myspace/mysongs/myspacesong_08.mp3
When you're done, please post a link to the file so I can see
if it works. First one to do this gets the money! I'll also need
the .FLA file so I can change the scrolling text in the future -
and it MUST BE ABLE TO OPEN IN FLASH MX 2004.
BONUS:
Today is Thanksgiving Day. If you successfuly do this and
post it today, I'll Paypal you $20 instead. I'm in a good mood :)
Let me know if you have any questions or problems downloading
the files.
Thanks!

Hey buddy,
YES I'd like a song (random) to automatically play when the
page is loaded.
And do you think you can give me 2 FLA files,
1) one with the next song automatically playing at the end of
the current song
2) and one where once the song ends, it does not play the
next song until you press the NEXT SONG button.
I want to have both in case the first option causes a lot of
problems for people...
Also, by default the "Music On" button should be displayed,
while the "Music Off" should be hidden. Then they switch when they
are pressed (right now they are superimposed over each other).
Paypal has been sent. Let me know if you got it.
Thanks man!
Ed
quote:
Originally posted by:
kglad
[email protected]
i set it up so it only plays if the next song button is
pressed. do you want it to start playing as soon as it loads?
do you also want it to start playing the next song as soon as
the previous completes (though this is likely to cause problems for
people with slow connections because the music is streaming and
flash may misinterpret an end-of-song flag if more song has failed
to download while the previously loaded section has completed
play.)

Similar Messages

  • How can I get someone to answer the phone? I'm ready to give VERIZON my business. I sat on the phone for over 20 minutes only to be transferred to "Sales." I then sat on the phone for another 15 minutes!!!! I finally hung up.

    How can I get someone to answer the phone? I'm ready to give VERIZON my business. I sat on the phone for over 20 minutes only to be transferred to "Sales." I then sat on the phone for another 15 minutes!!!! I finally hung up.

    It takes an enormous amount of patience and time to get through to a qualified person.
    My Samsung S5 was locked out and needed a factory reset. Including attempts to achieve this locally, it took over an hour before my problem was even addressed.
    You may be interested in my journey to a very good technical support person.
    First I called the local sales person who had given me his personal business card with the friendly advice to call me with any questions. No answer at about 8:30 am when the business was open. His voice mailbox was full.
    Then I called the local store where I had purchased the phone. The person who answered the phone had learned all the proper stock phrases, but was not familiar with the issue, stated that there were no customers in the store, and I should go there in about an hour when there would be more staff. He suggested dialing *411 from my phone (which was locked). Then he gave me a number to call Verizon, which he had to look up, and it took a minute or so. The number was (removed). That is an internal number for employees and contractors and requires a code to access, obviously not designed for customers' use. He finally cut me off by stating that there were a number of customers in line waiting for his attention!
    After researching all my papers I found 800-922-0204 on my bill. The automated message suggested a hold time of 5 minutes, it took 20 minutes for a Customer Service Representative to pick up, and then I was referred to technical assistance. The hold time was announced to take 5 minutes, after 12 minutes I finally was connected.
    Fortunately I had my computer set up for Skype on a loudspeaker, and was able to do some other paperwork while waiting.
    Persistence was rewarded by having the good fortune to be connected to a very experienced, qualified and patient technical support staff with the name of Thomas (removed). He solved my problem, answered my questions during the process of resetting the phone, and gave an example of courteous and kind customer service that I had never experienced before when dealing with any major internet company.
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

  • Could someone please sketch out this simple script for me?

    Could someone please sketch out a simple java script for me. I will have a document with one background
    layer and a layer set (group) called "Analyze" that consists of 63 adjustment layers. The layer names in that "Analyze" group(folder) will be
    "01" ...through "63" with 01 on the bottom and 63 at the top. Initially, all of the adjustment layers will be invisible and  the
    group will be closed (not expanded). I need a simple  script that will check for the first invisible layer in that group
    and make it visible without selecting that layer nor expanding the group. The script has to check
    for the first invisible layer every time it runs because other actions may have turned off a layer in the set.
    The point of this is so I can hotkey flipping on the layers one at a time without expanding the set or
    changing focus off the  background. It seems it should be a simple loop, but I just can't wrap  my head
    around all the objects (e.g. Layer as opposed to Layers  and  Artlayer as opposed to Artlayers)
    and the constants constants.
    for (i = 63; i>0; i--){                 /* I have found layer indexes 0 are the topmost layer */
      if( layerset[i] == INVISIBLE){
               layerset[i] = VISIBLE;
                  break;
    Could someone please write me a simple script that would do this?
    Edit I found this and its very close to what I need:
    var doc = app.activeDocument;
    for(var i = 0 ; i < doc.layers.length;i++){
      doc.layers[i].visible = (i % 2 == 0);
    From here : Function to show/hide layer with Photoshop script (JSX) - Stack Overflow
    In my case I would rewrite it to this
    for(var i = 62; i >=0; i--){
         if(  !doc.layers[i].visible){
              doc.layers[i].visible =TRUE;
              break;
    My problem is I just need  to traverse the layers in my layerset "Analyze"
    How do  I reference just those? Is there a doc.layersets["Analyze"].layers[i].visible = TRUE?
    Message was edited by: Shawn Laughlin To add more information

    Well this works:
    var doc = app.activeDocument;
    var analyze = doc.layerSets.getByName("Analyze").layers
    for(var i = 62 ; i >= 0; i --){
        if (!analyze[i].visible){
            analyze[i].visible =1;
            break;
    Hard to believe TRUE is not a constant in java.

  • How to use a script to kill only forms sessions idle for over 30 minutes?

    We want to use a script to kill forms users idle for over 30 minutes, but we don't want to kill background concurrent processes waiting for resources. even though we set up the timeout but it won't work for users who exit forms ungracefully.
    thanks!

    Java runs at the serverside, while you need a clientside solution. Javascript is perfectly suitable. Pass the current maxInactiveInterval() value to a Javascript variable and write a function around it. You can use for example the onkeypress attribute of the body to clear the timeout counter.

  • I put my sim in someone's phone earlier for about 3 minutes, and now they are receiving my iMessages and can't remive my number from their settings, pls help

    I put my sim in someone's phone earlier for about 3 minutes, and now they are receiving my iMessages and can't remive my number from their settings, pls help

    They need to turn off iMessage, power the phone off/on, then activate iMessage again with their SIM.

  • I am a bit of a ludite, I have an airport extreme that is requesting an update, this requires a password which geek squad never gave me, any advice , can I reset that password or must I pay someones piper? Thanks for any help.

    I am a bit of a ludite, I have an airport extreme that is requesting an update, this requires a password which geek squad never gave me, any advice , can I reset that password or must I pay someones piper? Thanks for any help.

    Hello:
    The password should be your administrator password.
    Barry

  • Paying $5 USD For Someone to Properly Install Java JRE & JDK in CentOS 5

    The title says it all.. I've been having so much trouble with this that im willing to pay someone 5 dollars to install JRE & JDK Properly for me. This is not a scam you'll have to install java 1st, ill give you access to the server. PM Me for more information or add me on:
    AIM: MarioElFlaCo
    MSN: [email protected]
    Payment will be sent through paypal only!

    Did you get a solution to your memory usage problems.
    We developed an applet which uses JAI 1.1.. yes of course with JRE1.3.1 plugin. The applet functions as a viewer for TIFF images and also allows users to manipulate them. We have ensured that there are no static variables and scope defined for variables is the minimum required. But we are still facing an undefined memory issue.
    When print is executed on the image (using Java2D), a few times ... it just hogs memory. Or I change the image loaded 2 -3 times and refresh the applet, it seems to run out of memory, and finally hangs.
    We have tried to do a System.gc.. to no avail.
    Would appreciate help on this.
    Thanx

  • Screen brightens intensely, quickly, hangs for a few minutes

    My Macbook Pro screen brightens intensely, becoming very very bright, and the notebook becomes hot, hangs for around 2 minutes before getting back to normal. This is a Macbook Pro 2009, running Mavericks. It was on Mountain Lion when this problem occurred, I upgraded to Maverick yeserday, but the problem still exists.
    I experienced this after a Flash Player video and it appears it's some kind of malaware. I can't find a way to fix this. I reset the SMC, reset the NVRAM, scanned using Sophos anti-virus, but the problem reduced (i.e. now happens once a day vs before it was once every hour).

         System Preferences >  Flash Player > Advanced >  Delete  All
         Press the "Delete All" button.
        Try again.

  • Connection dropping for a few minutes randomly, reoccuring issue for months now

    So my Too long, didn't read I'll just post now: Is there anyway to speak directly to an elevated support technician? I'm tired of having to spend half an hour each time I call just to get to someone who can tell me to do more than just reset the modem/router, and that they are sending a signal, and that they are "changing some settings" on the modem. And here is my full story: In december I moved into a different apartment. They hooked everything up, things worked ok for about 2 weeks. Then I would get this issue where my gateway would drop connection out of nowhere. The Power light would stay on, but the DS and Online lights would go off, and then come back on a few minutes later. This became a consistent thing (a few times a day, ranging from internet being out for 30 seconds to an hour).  I called, they brought a new modem, worked for about a day, same issue again. I called again. They brought another modem. Worked for a day, same issue again. I called again. They came out, this time they changed the coaxel running to the modem from the outside. Worked for about a day, same issue again. I called again. They came out, guy checked the signals and all that, put a new splitter on, checked the box outside that is attached to the apartment building, that goes to the powerline on the street. He updated some wiring that was in there. This worked for about a few weeks! success I thought. A few weeks later, same problem. This time a tech comes, says he remembers being here (He was the guy that came out for the initial install) and said he'd put in a work order for a truck to check the lines on the street. He didn't even bother checking any of my equipment because he knew it wasn't my stuff.  Well this seemed to do the trick, or so I thought. I never actually got a call or email or anything that the truck came, so I just assumed the truck came and they checked the lines on the powerline because my internet was finally stable for a month. And then yesterday. The. Same. problem. Comes. Back.  I call, and for now the 5th or 6th time, I have to go through their resetting script, even though I clearly state my issues, what has been tried, that they determined it wasn't my equipment and got a truck to check the lines on the powerline, and they IGNORE ALL THAT AND DO THE SAME THING WE'VE ALREADY DONE, SEVERAL TIMES. I am thoroughly, thoroughly upset at this point. I don't know what to do. All I want, is internet that doesn't cut out randomly, for more then 3 or 4 weeks. I can understand it cutting out "once in awhile", maybe one time for a few minutes every few weeks. I'd be happy with that at this point even. But I pay 180 dollars for my tv and internet package. This is UNACCEPTABLE.  Is there a different number I can call, or someone I can write to? I need to know how to get this issue looked at by the proper personnel, or have them taking it more seriously then just checking things one time and being done with it. 

    I experienced the same problems for a month or more. I was as frustrated as you sound. In fact, I told them that the only new package (Evidently they are required to try to get you to upgrade your service when you call for problem resolution) I was interested in was ATT U-Verse. (Grin). I was very frustrated. I took additonal steps. I ran a seperate Coaxial cable across the floor of my house to disprove the "House wiring is bad" theory. I bought a new modem myself because mine was a year or two old. And who am I? They may have been correct. And yet my trouble continued. Finally, after some very angry calls to some poor ladies and men in some unknown country, I was finally contacted by somone in my local service area (South Florida) last night. "Tech 1" came out and replaced my sevice line from the pole to the house. He was still not satisfied with the signal, so he passed it on to the next level. An hour later "Tech 2" showed up and adjusted some settings he could only access by going up in the air. I will say this, and hopefully not jinx myself, that my modem connects instantly now. Both of these men were professional, they answered my questions. They worked hard, it is 90 degrees today. Both of these men told me that they would monitor my connection status throughout the next week. My major complaint now is "Why did it take so long to get help"? Once I got through to the "Front Line" things got better really fast. All of this work was accomplished today, Sunday, by cheerful, friendly people who helped me. If anyone from Comcast/Xfinity monitors this, please, commend the two techs who came to help me today. Another good thing might be to dispatch these people sooner, rather than put an electronics technician like myself, through that same script over and over again for a #%#$%^ month. Yes I have the cable connected, Yes it is plugged into my computer, no there is no router, hardwired not wireless.  By all means send a refresh signal. You can't see my modem, well my modem sees you!

  • Workflow tips needed for setting up headless script (-noui)

    My client is asking for me to create a script that can execute from Photoshop without showing the AE UI at all. For those that have created headless workflows, what tips and tricks can you recommend?
    When running a script with noui, how can you tell when it's done, especially if there is a render involved?

    hi all,
    I actually have similar questions as well. We have a Java process that will kick off AfterEffect thru the command line "afterfx.com -noui -r myscript.jsx" to perform a render job. This method runs perfectly fine when someone actually login on the window's machine and kick off the java process.
    However the whole thing runs to a crawl when we started configure the java process to run as a windows service (under the same user that we would use to normally kick off the process interactively thru live login). I can see from the task manager after effect did tries to spawn multiple processes to do the render job that was feed to it thru the myscript.jsx. But those child process would die almost instantly and then AfterEffect process would sit idle for like a minute or two before slowly perform the rendering single threaded.
    Anyone here tried and successfully kick off the aftereffect process from a windows' service?
    Thanks,
    Joseph

  • My phone won't turn on. I have tried the Power button   home button several times and even held it for over 3 minutes.. When I plug it in it still won't respond to itunes PLEASE HELP!! A little water got in it but it was like a drop or two..

    My Iphone 4g, won't turn on, I have tried the power button + home button several times and held them for over 3 minutes. It won't even respond to Itunes and I can't restore it because of that. A little water got into it before it completely shut off but it was like little drops.. Please HELPP.
    I also have tried  to put it in rice and left it there for 9 hours and it still doesn't work

    A drop or two of water may have been enough to cook it. If it was bad enough to prompt you to put it in a bag of rice, then I'd venture to guess it was more than a drop or two.
    Try putting it back in the bag of rice and leave it there for several days.
    If that doesn't fix it, then you're more than likely looking at paying for an out of warranty replacement.
    Water and delicate electronics don't generally get along well.

  • My safari keeps crashing after its been open for a few minutes.

    My safari keeps crashing after a web page has been opened for a few minutes. I've attached the error report below.
    Hope someone can help. Thanks
    Process:         Safari [1595]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [1444]
    Interval Since Last Report:          1141 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  120 sec
    Per-App Crashes Since Last Report:   2
    Date/Time:       2012-01-17 21:06:53.737 +0000
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  61212670-5402-4BCC-911F-4CC8E9E86867
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000006ffff0
    Crashed Thread:  3
    Thread 0:
    0   libSystem.B.dylib                 0x91db6166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91dbd95c mach_msg + 72
    2   com.apple.CoreFoundation          0x9016de7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x9016eaa8 CFRunLoopRunInMode + 88
    4   com.apple.HIToolbox               0x943dd2ac RunCurrentEventLoopInMode + 283
    5   com.apple.HIToolbox               0x943dd0c5 ReceiveNextEventCommon + 374
    6   com.apple.HIToolbox               0x943dcf39 BlockUntilNextEventMatchingListInMode + 106
    7   com.apple.AppKit                  0x95fd36d5 _DPSNextEvent + 657
    8   com.apple.AppKit                  0x95fd2f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9   com.apple.Safari                  0x000166ad 0x1000 + 87725
    10  com.apple.AppKit                  0x95fcbf9f -[NSApplication run] + 795
    11  com.apple.AppKit                  0x95f991d8 NSApplicationMain + 574
    12  com.apple.Safari                  0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                 0x91dbd34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91de7ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x90f48d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore          0x90f48d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    5   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                 0x91dbd34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91de7ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                 0x96aa0587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                 0x96a9de19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    5   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 3 Crashed:
    0   libSystem.B.dylib                 0xffff0f38 __memcpy + 1944 (cpu_capabilities.h:246)
    1   libsqlite3.0.dylib                0x92081652 allocateBtreePage + 1810
    2   libsqlite3.0.dylib                0x92084a83 incrVacuumStep + 851
    3   libsqlite3.0.dylib                0x920ce6ce sqlite3VdbeExec + 2606
    4   libsqlite3.0.dylib                0x920d9ea2 sqlite3Step + 386
    5   libsqlite3.0.dylib                0x920ba624 sqlite3_exec + 260
    6   com.apple.CFNetwork               0x93c3519e __CFURLCache::ExecSQLStatement(sqlite3*, char const*, int (*)(void*, int, char**, char**), void*, long) + 64
    7   com.apple.CFNetwork               0x93c11b05 ProcessCacheTasks(__CFURLCache*) + 1433
    8   com.apple.CFNetwork               0x93c0b29f CFURLCacheTimerCallback(__CFRunLoopTimer*, void*) + 165
    9   com.apple.CoreFoundation          0x9016e8f5 CFRunLoopRunSpecific + 4469
    10  com.apple.CoreFoundation          0x9016eaa8 CFRunLoopRunInMode + 88
    11  com.apple.CFNetwork               0x93c0b18c CFURLCacheWorkerThread(void*) + 388
    12  libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    13  libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x91dbd34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91de7ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x90d9d6b1 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 81
    3   com.apple.WebCore                 0x96ab977c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    5   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x91db6166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91dbd95c mach_msg + 72
    2   com.apple.CoreFoundation          0x9016de7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x9016eaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                  0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                  0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                  0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    8   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x91db6166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91dbd95c mach_msg + 72
    2   com.apple.CoreFoundation          0x9016de7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x9016eaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation              0x93dc7520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation              0x93d63dfd -[NSThread main] + 45
    6   com.apple.Foundation              0x93d639a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    8   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x91e0560a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    2   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x91dbd34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91de7ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x90d9d6b1 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 81
    3   com.apple.WebCore                 0x96ab977c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    5   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x91dbd34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91de7ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x90d9d6b1 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 81
    3   com.apple.Safari                  0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                  0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                  0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                 0x91de7055 _pthread_start + 321
    7   libSystem.B.dylib                 0x91de6f12 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x920cdcc4  ecx: 0x00000038  edx: 0xffa587c0
      edi: 0x00ca7870  esi: 0x00ca7274  ebp: 0xb0183dc8  esp: 0xb0183dc0
       ss: 0x0000001f  efl: 0x00010286  eip: 0xffff0f38   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x006ffff0
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x64ffff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x657000 -   0x681fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x692000 -   0x6a1ffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x11f1c000 - 0x12215ff3 + ??? (???) <1c7cea30ffe2b4de98ced6518df1e54b>
    0x14bbf000 - 0x14bc4ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x9008d000 - 0x9009dfff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9009e000 - 0x900d5fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x900d6000 - 0x900fafff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x900fb000 - 0x9022efe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90234000 - 0x90234ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90235000 - 0x9036dfe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9036e000 - 0x903bcfe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x903bd000 - 0x903fdfef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90472000 - 0x9048fff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90490000 - 0x904dffff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x904e0000 - 0x904e0ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x905ab000 - 0x905adff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9081c000 - 0x9083bffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9083c000 - 0x90907fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90908000 - 0x909b9fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x909ba000 - 0x909c5fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x909c6000 - 0x909dbffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x909dc000 - 0x90a83feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90a84000 - 0x90ab1feb  libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90ab2000 - 0x90ab8fff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90ac3000 - 0x90b1fff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90b20000 - 0x90b29fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90b2a000 - 0x90b36fff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x90cc7000 - 0x90d41ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90d45000 - 0x90d90fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90d91000 - 0x90d91ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90d92000 - 0x90fa9ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90faa000 - 0x91284ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91285000 - 0x912bffe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x912c0000 - 0x912c8fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x912c9000 - 0x912f8fe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9137b000 - 0x913f8feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x913f9000 - 0x91400ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x914a6000 - 0x914f1ff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x914f2000 - 0x914f2ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x914f3000 - 0x915baff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x915bb000 - 0x915bffff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x915c0000 - 0x9177cff3  com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x91872000 - 0x91c82fef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91c83000 - 0x91c90fe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91c91000 - 0x91c91fff  com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91c92000 - 0x91c9cfeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c9d000 - 0x91cb9ff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91d9d000 - 0x91d9dffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91d9e000 - 0x91db4fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91db5000 - 0x91f1cff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x91f1d000 - 0x91f9cff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91f9d000 - 0x92058fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92059000 - 0x92059ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9205a000 - 0x920e1ff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x920e7000 - 0x920e8ffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x920e9000 - 0x92206ff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92207000 - 0x92264ffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x92265000 - 0x92345fff  libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x92346000 - 0x9234afff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9234b000 - 0x92433ff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92434000 - 0x927f2fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927f3000 - 0x9280bfff  com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9280c000 - 0x92865ff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92866000 - 0x92869fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x928b9000 - 0x92be4ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92be5000 - 0x92c0dff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92c1a000 - 0x92fd6ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92fd7000 - 0x93016fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93017000 - 0x93023ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93024000 - 0x931f5fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9322b000 - 0x93232ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93233000 - 0x932a5fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x932a6000 - 0x932e0ffe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x932e1000 - 0x9367efef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x936b2000 - 0x93718ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93719000 - 0x93beafbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93c08000 - 0x93caffec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93cb0000 - 0x93d3dff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93d3e000 - 0x93d4cffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x93d4d000 - 0x93d52fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93d59000 - 0x93fd5fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93fd6000 - 0x93fd8ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93fd9000 - 0x9406cff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9406d000 - 0x94072fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94073000 - 0x94106fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94107000 - 0x94116ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94117000 - 0x94117ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94118000 - 0x94261ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94262000 - 0x943acfeb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x943ad000 - 0x946b5fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x946b6000 - 0x94740ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94741000 - 0x9475ffff  libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x94760000 - 0x94765fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94766000 - 0x9479cfef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x947b5000 - 0x947fefef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x947ff000 - 0x94830ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94831000 - 0x94873fef  com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x948e2000 - 0x948e2ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x948e3000 - 0x949c4ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x949c5000 - 0x94a03fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94a04000 - 0x94a45fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a46000 - 0x94b7fff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x94b80000 - 0x94c0dff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94c0e000 - 0x94c1effc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94d83000 - 0x94db5fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94db6000 - 0x94db6ffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94db7000 - 0x94ddbfeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x95cdd000 - 0x95ce4fe9  libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x95ce5000 - 0x95d36ff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95d37000 - 0x95e89ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95eb4000 - 0x95f66ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x95f67000 - 0x95f92fe7  libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x95f93000 - 0x96791fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96792000 - 0x96916fef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x96917000 - 0x96a97fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96a98000 - 0x97806fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9781b000 - 0x97839ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9783a000 - 0x978b7fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x978b8000 - 0x978e1fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x978e2000 - 0x97f82fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x97f83000 - 0x97f92fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x97f93000 - 0x97fedff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97fee000 - 0x97ffaff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97ffb000 - 0x98016ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98017000 - 0x98017ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x98018000 - 0x9801afff  com.apple.securityhi 3.0 (30817) <72cb8b012603370e904b31a24a91121b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9802d000 - 0x9811bfef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Reinstall  Safari 5.0.6 for Leopard
    Then restart your Mac, try Safari.
    If it crashes again, third party plugins could still be at fault even though they do not show up in the report.
    Follow the troubleshooting help here >  Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues

  • IPad connects/syncs to iTunes for a few minutes then iPad crashes

    Sync-ing my iPad has been a problem for awhile and has reached a critical point where my iPad has lots of music/video/apps and it takes longer and longer for it to backup and sync it to iTunes.
    My iPad only stays connected for 5-6 minutes before I get a series of beeps from it, the spinning gear spins for about a minute, then freezes.
    At which point it no longer wants to sync with iTunes. I have to unplug the USB cable and restart the iPad. It's a 16 GB model and have about 7 GBs left of storage.
    Sometimes it will stay sync'd/connected up to iTunes longer before the iPad freezes, I can usually get stuff onto my iPad quickly enough to avoid the crash, but inevitably, my iPad will freeze.
    I suspect a corrupt iPhone OS and/or App on my iPad.
    Is there a way to install a fresh version of iPhone OS without losing any of my paid music, videos, books and apps?
    In other words re-install a fresh version of the iPhone OS and not restore from any of my backups.
    My iPod Touch exhibits the same problem/issues, also.
    I am on a G4 MDD running OS X 10.5.8 with latest version of iTunes.
    Any ideas on how I can fix this issue are welcome.
    Thanks to everyone in advance.

    Hiya,
    I'm having the same problem and it's now doing the same with my iphone as well!
    i set both up as new but i still have the same issue.
    I'm on a laptop (Dell) running vista. I have re-installed itunes and update vista but still no progress
    Did you manage to get your issue resolved?

  • My ipod touch is disabled for 22 million   minutes and it won't connect to itunes what can i do?

    My ipod touch is disabled for 22 million minutes+ and i have seen videos where it says to connect it to my laptop and restore it but it says "itunes cannot connect to the ipod because you need to enter the password" obviosly i cannot do this because it is disabled for 22 million minutes+ . please can someone help me.

    light-blue text is a link click on it
    Recovery mode

  • Should I pay the $245 for support? I ask because every time I have they could not fix the problem, I found the problem on my own.

    I ask because every time I did call they could not fix the problem, as in I could not send mail, I was told it was my Internet, then they tell me it is my computer. After spending many many hours on the phone with Apple, I was told I had to reload my hard drive. Which by the way takes a lot more then a few hours. The next day I found I still had the same problem. I could not send mail... I found the problem my self// I didn't have a mail box set up to send mail. How sample that was. Then the next time if I wanted to empty trash I had to turn off the computer then reset to do so. When I called tech support she tells me that is normal and they had to do the same thing every time. Well she is wrong in that if you use "empty securely" and not the one that just says empty trash then you do not have to reset or turn off your computer.... So I ask what am I paying $245.00 for?  I am sure I will need support at some time, and at least it does give me someone to talk to.

    starwalls wrote:
    I thank you all for all the replies..
    I will be buying the service plan if only for the hardware... I really can not say much about the other support, other then every time I get a female support tech she seems to not know what she is talking about and says that is the way it works... I just keep calling back until I get someone that will know a little to help fix the problem. And yes I hate to say is most likely a male tech.
    I do agree apple is NOT what they started out to be... How sad!!! MADE in CHINA  very SAD. And here I thought I was buying USA.......
    FYI - there has not been a name brand consumer personal computer actually manufactered in the USA in years.  Lenovo, Dell, HP, Acer, Apple, Samsung,... - you name it they are ALL made in China or Tiawan. Often many of those brands are being assembled by the same Chinese company in the exact same factory, pulling parts (hard drives, displays, RAM, etc) from the exact same bins.  Foxconn for example, which makes iPhones and iPads for Apple, also makes dozens of other makes and models of tablets, ereaders and smart phones for other companies.  Like it or not, but the consumer electronic manufactering center of the world is China.
    The only consumer computers actually made in the USA these days are by local custom build companies, and it has actually been that way for many years now (I think twinhead may have been one of the last with a plant in the USA - they are still around, now GammaTech, and they still do their "final assembly" in the USA but most of thier manufacturing is done in Tiawan and Malaysia).
    By and large, the USA has been out of the actual consumer electronics manufacturing/assembly business for a decade or so now.

Maybe you are looking for

  • Urgent-Importing A/R Invoices thru DTW

    I want to import the previous Invoices for a client in SAP from their legacy system. How do I do that. Please help Ots urgent. I have to do it in next two days. I am elaborating the instance. Requirement- Importing all the open A/R Invoices. The invo

  • I'm asked to allow add-ons install after every reboot (all the add-ons list, one by one)

    Every time I reboot, when I lauch Firefox, I get one tab for each "installed" extension, asking to "allow the install" of the extension. Now that I'm thinking about it, the problem persists since firefox 5 or 6, but it is only now at 8 that it shows

  • Setting refresh rate manuall in display options?

    hi all, I have recently received a Dell 1908WFP monitor, which runs at a native resolution of 1440x900x75hz. When i connect it to my macbook pro using the mini-display-port-to-VGA-connector, this resolution is detected fine. When connecting with the

  • IDM/OID upgrade assistant (UA) failed in the examination - on 11.1.1.2

    Does anyone have problem upgrading Oracle Identity Management/OID from 10.1.2.3 to 11.1.1.2 on Linux SUSE-10 64-bit?. 1. Upgrade Oracle seed DB 10.1.0.5 32-bit to 10.2.0.4 64-bit. Using DBUA - OK, no problem. 2. Started As 10.1.2.3 Infrastucture - ID

  • Seeking Help Concerning the Audigy SE soundc

    I had just recently purchased and Audigy SE card today, and I've been using the same computer for quite some time now. I have the same 3 back ports from my onboard soundcard on the front of my tower which allows me to plug-and-play easier. I contacte