Previously Working Code Falling Over After slight modification

Hi All
I have an issue with a piece of code that was working previously.  what I have is that initially I consolidated multiple projects plans into a master plan whilst retaining links and my extract to Excel worked fine.  However I modified my code to
consolidate individual projects plans into an Excel worksheet but this time without retaining the link and it now fails.  There are 1496 tasks in the consolidated plan and it falls over at the end of the first inserted Project.  Here3 is the code:
'Export GIVE and GET Milestones
Row = 1
For Each t In ActiveProject.Tasks
If t.Flag10 = "True" Then 'Flag10 is Deliverable Yes/No
Set s = xlApp.ActiveWorkbook.Worksheets(1)
Set xlRng = s.Range("A3")
If Not t Is Nothing Then
With xlRng
.Range("A" & Row) = t.Text16
.Range("B" & Row) = t.Text12
.Range("C" & Row) = t.Text4
.Range("D" & Row) = t.Name
.Range("E" & Row) = t.PercentComplete
.Range("F" & Row) = t.Finish
End With
End If
If t.Flag10 = "True" Then
Row = Row + 1
End If
End If
Set xlRng = xlRng.Offset(1, 0) 'Point to next row
Next t
The line it falls over on is :
            If t.Flag10 = "True" Then                       'Flag10 is Deliverable
Yes/No
Any help/advice would be appreciated.
Kind regards
Tony
TKHussar

Hi John
The previous version of my code retained the link to each individual Project plan.  On your suggestion I removed the link to the sub project plans.  So when I recorded the macro to consolidate all of the individual plans I removed the tick to retain
a link to the original plans.  In the consolidated plan there are 1496 tasks returned by the ApplicationsProject.Tasks.Count property.  Here is the full version of the code to hopefully help:
Sub ExportGIVEs_GETs()
Dim xlApp As Excel.Application
Dim objRange
Dim xlRng As Excel.Range
Dim Res As Resource
Dim t As Task
Dim s As Worksheet
Dim Row As Integer
Dim LastRow As Integer
'Start Excel and create a new Workbook
Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
xlApp.Workbooks.Add
'Create Column Titles
Set xlRng = xlApp.Range("A1")
xlRng.Range("A1") = "EA Release 2 - GIVEs and GETs"
Set xlRng = xlApp.Range("A1")
xlRng.Range("A1").Select
With xlApp.Selection.Font
.Name = "Calibri"
.Size = 22
.Underline = xlUnderlineStyleSingle
.ThemeColor = xlThemeColorLight2
.ThemeFont = xlThemeFontMinor
End With
Set xlRng = xlApp.Range("A1:F1")
xlRng.Range("A1:F1").Select
With xlApp.Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.799981682294784
.PatternTintAndShade = 0
End With
Set xlRng = xlApp.Range("E1")
xlRng.Range("A1") = "Issued: "
Set xlRng = xlApp.Range("F1")
xlRng.Range("A1") = "=" & "Today()"
Set xlRng = xlApp.Range("A2")
xlRng.Range("A1").Select
xlRng.Range("A1") = "Workstream"
xlRng.Range("B1") = "UID from Plan"
xlRng.Range("C1") = "Provider/Receiver"
xlRng.Range("D1") = "GIVE/GET Name"
xlRng.Range("E1") = "% Complete"
xlRng.Range("F1") = "Date Required"
Set xlRng = xlApp.Range("A2:F2")
xlRng.Range("A1:G1").Select
With xlApp.Selection.Font
.Name = "Calibri"
.FontStyle = "Regular"
.Size = 11
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Set xlRng = xlApp.Range("A2")
xlRng.Range("A1:F1").Select
With xlApp.Selection.Font
.Name = "Calibri"
.FontStyle = "Regular"
.Size = 11
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With xlApp.Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 6299648
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Set xlRng = xlApp.Range("A2:F2")
xlRng.Range("A1:F1").Select
With xlApp.Selection
.RowHeight = 40
.VerticalAlignment = xlCenter
End With
xlRng.Range("A1").Select
'Export GIVE and GET Milestones
Row = 1
For Each t In ActiveProject.Tasks
If t.Flag10 = "True" Then 'Flag10 is Deliverable Yes/No
Set s = xlApp.ActiveWorkbook.Worksheets(1)
Set xlRng = s.Range("A3")
If Not t Is Nothing Then
With xlRng
.Range("A" & Row) = t.Text16
.Range("B" & Row) = t.Text12
.Range("C" & Row) = t.Text4
.Range("D" & Row) = t.Name
.Range("E" & Row) = t.PercentComplete
.Range("F" & Row) = t.Finish
End With
End If
If t.Flag10 = "True" Then
Row = Row + 1
End If
End If
Set xlRng = xlRng.Offset(1, 0) 'Point to next row
Next t
'Tidy up
Set xlRng = s.Range("A2")
xlRng.Range("A1").Select
With xlApp.Selection
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.WrapText = True
End With
Set xlRng = s.Range("D:E")
xlRng.Range("A:B").Select
With Selection
xlRng.Range("A:B").HorizontalAlignment = xlLeft
xlRng.Range("A:F").EntireColumn.AutoFit
End With
Set xlRng = s.Range("B:G")
With xlRng
xlRng.Range("A:F").EntireColumn.AutoFit
End With
Set xlRng = s.Range("A:A")
xlRng.Range("A:A").ColumnWidth = 25
Set xlRng = s.Range("E2")
xlRng.Range("A1").Select
With xlApp.Selection
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.WrapText = True
End With
Set xlRng = s.Range("G2")
xlRng.Range("A1").Select
With xlApp.Selection
.HorizontalAlignment = xlGeneral
.VerticalAlignment = xlCenter
.WrapText = True
End With
Set xlRng = s.Range("F:F")
xlRng.Range("A:A").Select
With Selection
xlRng.Range("A:A").NumberFormat = "dd/mm/yy;@"
xlRng.Range("A:A").HorizontalAlignment = xlCenter
End With
'Sort by Workstream Area
Set objRange = xlApp.ActiveWorkbook.Worksheets("Sheet1").Range("A3:F2000")
objRange.Sort Key1:=objRange.Parent.Range("A3"), Key2:=objRange.Parent.Range("D3")
Set xlRng = s.Range("A1")
xlRng.Range("A1").Select
Set xlRng = s.Range("A1:F2000")
With xlApp.ActiveSheet.PageSetup
.Orientation = xlLandscape
.PrintGridlines = True
.PaperSize = xlPaperA3
End With
Set xlApp = Nothing
End Sub
Thanks for your help.
Tony

Similar Messages

  • Why is my wifi looking for a network all the time after working fine for over a year?

    My wifi is connected but it's running slow, it drops completely, netflix runs so slow than it drops..etc. I've had the cable people here twice, once I updated my speed to more than doubled my speed and then I bought a very expensive router. Why does my computer wifi keep looking for networks when its already connected? Also, I've notice that my computer is acting like I've had it for 10 years and I've only had for 1.5 yrs. It's slow! It crashes! I have to sign in twice! It takes for ever to load, then it falls asleep after only a few mins even when its plugged in with full power. I'm so sick of this mac! I'm ready to run over it with my mini van and go back to HP for good!
    Oh and the screen is unstable! willy nilly all over the place!
    ERRORS:
    <airportd[34]> _handleLinkEvent: Got an error trying to query WiFi for power. Resetting state variables<airportd[34]> -[CWXPCConnection performScanWithChannels:ssidList:legacyScanSSID:includeHiddenNetworks:mergeScan Results:maxAge:maxMissCount:maxWakeCount:maxAutoJoinCount:interfaceName:waitForW iFi:waitForBluetooth:token:priority:reply:]: !!! SCAN request received 0.0132 seconds after previous scan request from 1386 (Wireless Diagnostics)
    ocal com.apple.backupd-helper[47]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc

    Wi-Fi Problems in OS X Yosemite
    Wi-Fi Problems in OS X Yosemite (2)
    Wi-Fi Problems in OS X Yosemite (3)
    Wireless Diagnostics
    Also try turning off Bluetooth.

  • After updating my iPad recently, I can no longer use it to present PPTs using a TV monitor that always previously worked. The display mentions something about using AirPlay which I am not using or trying to. Suggestions please?

    After updating my iPad recently, I can no longer use it to present PPTs using a TV monitor that always previously worked. The display mentions something about using AirPlay which I am not using or trying to. Suggestions please? I am currently using iOs 7.0 on this iPad and I never had a lick of trouble until aetr this update. Anything would help. Thanks.

    I'm adding screen shots taken from this afternoon showing connection that varied from non-existent to 1X.

  • The screen of my mac gets black, while the same the youtube works normally and the buttons maintain the blue color. What should I do?? It gets over after 5 to ten minutes and I only have it 2 weeks..

    The screen of my mac gets black, while the same the youtube works normally and the buttons maintain the blue color. What should I do?? It gets over after 5 to ten minutes and I only have it 2 weeks..

    Welcome to Apple Support Communities
    As this may be a hardware problem, make a backup of your files onto an external drive with Time Machine (if you have important files) and take the Mac to an Apple Store or reseller, or contact with Apple > http://support.apple.com/kb/HE57 You will get your Mac replaced or repaired for free.

  • Iphone 4s touchscreen stops responding after a minute or so, I then have to wait at least a minute before the touchscreen works again but soon after it stops responding. I have tried hard reset, turning it off over night, etc

    Iphone 4s touchscreen stops responding after a minute or so, I then have to wait at least a minute before the touchscreen works again but soon after it stops responding. I have tried hard reset, turning it off over night, etc

    Hello,
    I had that problem as well and the apple support suggested to turn off the LTE-mode to have a running system and try to exchange the micro-sim by my provider.
    THAT was not an option!
    BUT it seems to solve my problem in the following way after trying a lot of possibilties:
    In the menue properties/help (don't know the exact english word, because I run my phone in german)
    I switched on the nice feature 'flash LED' by incomming calls, msgs, and push infos.
    Today the flash feature was responding to different push notes very slowly.
    By switching this feature off the LTE-mode-tochscreen-not-responding-problem disappeared.
    We tried this on a other iphone, not having the metioned problem, and switched the LED-flash:
    the problem appeared. Switching the LED-flash off: problem disappeared!
    It seems to be a bug that the LED will hint Calls and MSGs in combination with the LTE mode!
    treated my phone very hard today to double check, but its still ok.
    @Apple:
    Please fix that issue in the next update.
    Hope, this helps you guys as well.

  • If, after using Creative Cloud, I decide to purchase the software, will my work be transferred over?

    If, after using Creative Cloud, I decide to purchase the software, will my work be transferred over?

    Hi Stephanie,
    You can definitely transfer your work as right now with a trial account you only have 2GB cloud storage space which would increase to 20GB with a license for the same.
    Regards,
    Sheena

  • Pieces of my ipod are falling apart after a really bad crack i have all over my screen, will it be possible that it can be fixed?

    Pieces of my ipod are falling apart after a really bad crack i have all over my screen, will it be possible that it can be fixed?

    Apple - Support - iPod - Repair pricing

  • Microcell stopped working after working fine for over a year

    Hi everyone, My Microcell stopped working after working fine for over a year
    What happens now is that when it boots up all is green but the wireless network bars LED keeps flashing forever.
    I know that as part of the normal boot process it first scans all 3G channels to pick the least conflicting ones before it initializes the internal 3G radio. Typically that takes good 10 minutes. However now it never finishes that scan and gets stuck there blinking green forever. Obviously nothing has changed on my side of things; I don't know whether something has changed in the neighborhood in terms of AT&T area controller or what not. Any help will be very much appreciated. Thak you!

    Answer ALL the questions below as best you can and we'll try to help you.
    MicroCell™ TroubleShooting Questions:
    Have you read the Tech Guide first? 3G MicroCell Technical Guide by Otto Pylot
    Do you have an active postpaid AT&T mobile account?
    Is your MicroCell white or black?
    Who is your ISP and is your service ADSL, cable, wireless or satellite?
    What are your suscribed download and upload speeds as stated by your ISP?
    Have you tested your internet speeds (http://www.speedtest.net/)? Please run the test and post your latency, download and upload speeds.
    Have you tested your connection for VoIP quality (http://www.voipqualitytest.com/)? Please run the test and post the results that are listed under the "Advanced" tab.
    Are you using the basic connection (modem -> router -> MicroCell) or the alternate connection (modem -> MicroCell -> router/computer)? The alternate connection is not possible with the black (DPH-154) MicroCell as it has no Ethernet output but it can be connected directly to the modem to temporarily test the Microcell without the network connected.
    Are all of the cables firmly in place?
    Do you have a combined modem/router (gateway) or a separate modem and router? What are the makes and model numbers for your equipment?
    Have you met the minimum requirements for router settings as outlined in the Tech Guide?
    What other equipment (access points, switches, computers, WiFi components, gaming consoles, etc.) do you have connected to your network?
    What does the light pattern look like on the MicroCell (power, ethernet, GPS, and 3G)? Are they all a solid green or is any of them blinking green or red, and if so, which one?
    Have you done a hard reset of the MicroCell? See the Tech Guide for instructions.
    Have you deactivated and reactivated your Mcell using AT&T's MicroCell website?
    Does the ac adapter feel warmer than the top of the MicroCell where the vents are?

  • When we try to use apple tv there is no sound.  It was working fine for over a year.  Stopped working after we installed a new wifi system in the house - any suggestions?

    It was working fine for over a year.  We installed a new wifi system - could that have anything to do with it?  It connects fine but will not play any sound?  Any suggestions

    Thank you...I did try that and it did not work.  I've tried just about everything.  Today I tried hooking up to a different TV that does not have a receiver and it works fine.  I guess it has something to do with my receiver but I just can't figure it out.

  • Cfpop falls over with attachments with %'s in the name

    Hi there,
    We are running CF 7.02 MX on a Windows 2003 Server.
    We have a scheduled process that runs which collects mail
    using cfpop, modifies it and forwards it on.
    If any of the downloaded mails contains an attachment with an
    unusual character in it's name e.g..
    AFU%image.JPG
    ..then the task falls over and doesn't complete. I've had a
    look in the application logs and this is accompanied by entries
    like...
    "The resource D:\codepath\htdocs\attachment\
    AFU%imge.JPG was not found.The root cause was: . The
    specific sequence of files included or processed is:
    D:\wwwroot\website\wwwroot\schedule\schedtask.cfm, line: 1254 "
    Notice the % seems to have got it confused as to what the
    attachment name is. It seems to have lost the "
    a" somehow. So the failure is simply down to the fact that,
    having confused itself over what the filename actually is, it can
    no longer find the true path to the file.
    If the attachments dont contain odd characters it works fine.
    Any ideas? We're really struggling.
    What I'm after is a workaround or a solution to the
    corruption of the filename since I'm guessing if it keeps the
    filename intact then all will be well (as it will still be able to
    find the file).
    Tem

    Bump. ^
    Anyone with any thoughts on this? We're really
    struggling.

  • Safari falling over due to JavaScript?

    Hi Folks,
    I was wondering if anyone on these discussions knew why Safari keeps crashing on me. It originally started on one website (Facebook) that could consistently keep bringing Safari down. I looked around and saw that many people were blaming the flash plugin, so even though I never seemed to have any problems on any other sites that used flash I assumed that was the case.
    However recently Safari has been falling over almost every 30 mins or so and now on sites that would normally have been rock solid, like bbc.co.uk or even Apple's own website. From the crash logs replicated below it seems to be the Javascript that's falling over but I can't be sure as Flash is mixed in there too.
    If anyone has any ideas or suggestions on how to stop this from happening or if they could just point out what is actually going on I'd greatly appreciate it.
    *Console Log*
    <hr>
    07/08/2008 14:01:06 [0x0-0xda3da3].com.apple.Safari[51811] Invalid memory access of location 00000009 eip=943f79bc
    07/08/2008 14:01:09 com.apple.launchd[129] ([0x0-0xda3da3].com.apple.Safari[51811]) Exited abnormally: Bus error
    <hr>
    *Crash Log*
    <hr>
    Process: Safari [52296]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.1.2 (5525.20.1)
    Build Info: WebBrowser-55252001~1
    Code Type: X86 (Native)
    Parent Process: launchd [129]
    Date/Time: 2008-08-07 16:19:44.771 +0100
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000089b8460b
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x943f79c4 KJS::Collector::collect() + 244
    1 com.apple.JavaScriptCore 0x943b9055 void* KJS::Collector::heapAllocate<(KJS::Collector::HeapType)0>(unsigned long) + 485
    2 com.apple.JavaScriptCore 0x943db1ce KJS::jsOwnedString(KJS::UString const&) + 46
    3 com.apple.JavaScriptCore 0x943db191 KJS::StringNode::evaluate(KJS::ExecState*) + 17
    4 com.apple.JavaScriptCore 0x943fa12a KJS::AddStringsNode::evaluate(KJS::ExecState*) + 74
    5 com.apple.JavaScriptCore 0x943dbac0 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 48
    6 com.apple.JavaScriptCore 0x943f70b4 KJS::NotEqualNode::evaluateToBoolean(KJS::ExecState*) + 20
    7 com.apple.JavaScriptCore 0x943e2279 KJS::IfNode::execute(KJS::ExecState*) + 25
    8 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    9 com.apple.JavaScriptCore 0x943e8886 KJS::ForNode::execute(KJS::ExecState*) + 102
    10 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    11 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    12 com.apple.JavaScriptCore 0x943f137c KJS::functionProtoFuncApply(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 588
    13 com.apple.JavaScriptCore 0x943dbdb6 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 806
    14 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    15 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    16 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    17 com.apple.JavaScriptCore 0x943e8886 KJS::ForNode::execute(KJS::ExecState*) + 102
    18 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    19 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    20 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    21 com.apple.JavaScriptCore 0x943dc40b KJS::ArgumentListNode::evaluateList(KJS::ExecState*, KJS::List&) + 43
    22 com.apple.JavaScriptCore 0x943dbc3b KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 427
    23 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    24 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    25 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    26 com.apple.JavaScriptCore 0x943e8886 KJS::ForNode::execute(KJS::ExecState*) + 102
    27 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    28 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    29 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    30 com.apple.JavaScriptCore 0x943dc40b KJS::ArgumentListNode::evaluateList(KJS::ExecState*, KJS::List&) + 43
    31 com.apple.JavaScriptCore 0x943dbc3b KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 427
    32 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    33 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    34 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    35 com.apple.JavaScriptCore 0x943f51ce KJS::IfElseNode::execute(KJS::ExecState*) + 78
    36 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    37 com.apple.JavaScriptCore 0x943e8886 KJS::ForNode::execute(KJS::ExecState*) + 102
    38 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    39 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    40 com.apple.JavaScriptCore 0x943dbdb6 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 806
    41 com.apple.JavaScriptCore 0x943db0e9 KJS::PropertyListNode::evaluate(KJS::ExecState*) + 201
    42 com.apple.JavaScriptCore 0x943e239e KJS::AssignDotNode::evaluate(KJS::ExecState*) + 94
    43 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    44 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    45 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    46 com.apple.JavaScriptCore 0x943f137c KJS::functionProtoFuncApply(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 588
    47 com.apple.JavaScriptCore 0x943dbdb6 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 806
    48 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    49 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    50 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    51 com.apple.JavaScriptCore 0x943ee432 KJS::FunctionImp::construct(KJS::ExecState*, KJS::List const&) + 306
    52 com.apple.JavaScriptCore 0x943e6434 KJS::NewExprNode::evaluate(KJS::ExecState*) + 628
    53 com.apple.JavaScriptCore 0x943e4670 KJS::AssignBracketNode::evaluate(KJS::ExecState*) + 288
    54 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    55 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    56 com.apple.JavaScriptCore 0x943e35a0 KJS::ForInNode::execute(KJS::ExecState*) + 832
    57 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    58 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    59 com.apple.JavaScriptCore 0x943dbdb6 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 806
    60 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    61 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    62 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    63 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    64 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    65 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    66 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    67 com.apple.JavaScriptCore 0x943dbdb6 KJS::FunctionCallDotNode::evaluate(KJS::ExecState*) + 806
    68 com.apple.JavaScriptCore 0x943eb56a KJS::ConditionalNode::evaluate(KJS::ExecState*) + 106
    69 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    70 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    71 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    72 com.apple.JavaScriptCore 0x94426787 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 135
    73 com.apple.WebCore 0x92e6d701 WebCore::ScheduledAction::execute(KJS::Window*) + 641
    74 com.apple.WebCore 0x92e6d3ad KJS::Window::timerFired(KJS::DOMWindowTimer*) + 269
    75 com.apple.WebCore 0x92e6d288 KJS::DOMWindowTimer::fired() + 40
    76 com.apple.WebCore 0x92e69129 WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, 0ul> const&) + 137
    77 com.apple.WebCore 0x92e68eb2 WebCore::TimerBase::sharedTimerFired() + 162
    78 com.apple.WebCore 0x92e68df4 WebCore::timerFired(__CFRunLoopTimer*, void*) + 68
    79 com.apple.CoreFoundation 0x944eeb45 CFRunLoopRunSpecific + 4469
    80 com.apple.CoreFoundation 0x944eecf8 CFRunLoopRunInMode + 88
    81 com.apple.HIToolbox 0x96903da4 RunCurrentEventLoopInMode + 283
    82 com.apple.HIToolbox 0x96903bbd ReceiveNextEventCommon + 374
    83 com.apple.HIToolbox 0x96903a31 BlockUntilNextEventMatchingListInMode + 106
    84 com.apple.AppKit 0x95050505 _DPSNextEvent + 657
    85 com.apple.AppKit 0x9504fdb8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    86 com.apple.Safari 0x000086be 0x1000 + 30398
    87 com.apple.AppKit 0x95048df3 -[NSApplication run] + 795
    88 com.apple.AppKit 0x95016030 NSApplicationMain + 574
    89 com.apple.Safari 0x000ba4d6 0x1000 + 758998
    Thread 1:
    0 libSystem.B.dylib 0x9654168e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9656c36d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x92c4611f WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x92bfe885 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    5 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9653a4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96541c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x944ee0ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x944eecf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95fc2a32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    6 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9653a4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96541fc5 pthreadmutexlock + 569
    2 com.apple.JavaScriptCore 0x943b8bce KJS::JSLock::lock() + 94
    3 com.apple.JavaScriptCore 0x9443633a JSStringCreateWithCFString + 26
    4 com.apple.CFNetwork 0x96029309 _JSArrayFromCFArrayOfCFStrings + 109
    5 com.apple.CFNetwork 0x960296a9 _JSDnsResolveFunctionCallback + 432
    6 com.apple.JavaScriptCore 0x944350f7 KJS::JSCallbackFunction::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 183
    7 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    8 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    9 com.apple.JavaScriptCore 0x943e2309 KJS::ExprStatementNode::execute(KJS::ExecState*) + 25
    10 com.apple.JavaScriptCore 0x943e9240 KJS::BlockNode::execute(KJS::ExecState*) + 64
    11 com.apple.JavaScriptCore 0x943e22ae KJS::IfNode::execute(KJS::ExecState*) + 78
    12 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    13 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    14 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    15 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    16 com.apple.JavaScriptCore 0x943daec9 KJS::VarStatementNode::execute(KJS::ExecState*) + 25
    17 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    18 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    19 com.apple.JavaScriptCore 0x943fe1a5 KJS::FunctionCallResolveNode::evaluateToBoolean(KJS::ExecState*) + 949
    20 com.apple.JavaScriptCore 0x943e942a KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 106
    21 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    22 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    23 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    24 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    25 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    26 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    27 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    28 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    29 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    30 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    31 com.apple.JavaScriptCore 0x943e93d9 KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 25
    32 com.apple.JavaScriptCore 0x943e2279 KJS::IfNode::execute(KJS::ExecState*) + 25
    33 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    34 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    35 com.apple.JavaScriptCore 0x943e5f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    36 com.apple.JavaScriptCore 0x943daf19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    37 com.apple.JavaScriptCore 0x943daec9 KJS::VarStatementNode::execute(KJS::ExecState*) + 25
    38 com.apple.JavaScriptCore 0x943e2a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    39 com.apple.JavaScriptCore 0x943e2509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    40 com.apple.JavaScriptCore 0x94426787 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 135
    41 com.apple.JavaScriptCore 0x94435abd JSObjectCallAsFunction + 173
    42 com.apple.CFNetwork 0x9602948a CallFindProxyForURL + 297
    43 com.apple.CFNetwork 0x9602b4d9 executionContextPerform + 177
    44 com.apple.CoreFoundation 0x944ee615 CFRunLoopRunSpecific + 3141
    45 com.apple.CoreFoundation 0x944eecf8 CFRunLoopRunInMode + 88
    46 com.apple.Foundation 0x960a8460 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    47 com.apple.Foundation 0x96044f1d -[NSThread main] + 45
    48 com.apple.Foundation 0x96044ac4 _NSThread__main_ + 308
    49 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    50 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9658a5e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    2 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9653a4a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96541c9c mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x16cb8959 memcopy_mmx + 709497
    3 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    4 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9653a4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9656c866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x965b2371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x16b7f928 0x167ed000 + 3746088
    4 ...romedia.Flash Player.plugin 0x16bb7230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x16b7fbd2 0x167ed000 + 3746770
    6 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9653a4ee semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9656c866 pthread_condwait + 1267
    2 libSystem.B.dylib 0x965b2371 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x16b7f928 0x167ed000 + 3746088
    4 ...romedia.Flash Player.plugin 0x16bb7230 Flash_EnforceLocalSecurity + 125000
    5 ...romedia.Flash Player.plugin 0x16b7fbd2 0x167ed000 + 3746770
    6 libSystem.B.dylib 0x9656b6f5 pthreadstart + 321
    7 libSystem.B.dylib 0x9656b5b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x89b8458b ebx: 0x943f78db ecx: 0x0000000c edx: 0x166185ec
    edi: 0x00011880 esi: 0x16280000 ebp: 0xbfffcc98 esp: 0xbfffcc40
    ss: 0x0000001f efl: 0x00010286 eip: 0x943f79c4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x89b8460b
    Binary Images:
    0x1000 - 0x133fef com.apple.Safari 3.1.2 (5525.20.1) <b8911db3c9f4e89257f40775a27be7c6> /Applications/Safari.app/Contents/MacOS/Safari
    0x17b000 - 0x18aff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x676000 - 0x794ff7 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <56067945130800a348eb076676d41e92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7c3000 - 0x7c8ff3 libCGXCoreImage.A.dylib ??? (???) <32265ec157db98a33c5dcf0e6687dec2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x147a2000 - 0x147a2ffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x16263000 - 0x16264ffc com.apple.JavaPluginCocoa 12.1.0 (12.1.0) <d21a12c5668d4d89bfe492a5223a75cc> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x163c0000 - 0x163c5ffd com.apple.JavaVM 12.1.0 (12.1.0) <25c546c36e5bed978579d281080ab4c8> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x167ed000 - 0x16dedffb +com.macromedia.Flash Player.plugin 9.0.124 (1.0.4f60) <8355dcf076564b6784c517fd0eccb2f2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x16f2e000 - 0x16f4dfed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1b075000 - 0x1b19cfe7 libmecab.1.0.0.dylib ??? (???) <7b38ea21924f2d04b3aa6c75b0ddcb29> /usr/lib/libmecab.1.0.0.dylib
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x900b3fff edu.mit.Kerberos 6.0.12 (6.0.12) <1dc515ebe407292db8e603938c72d4e8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90104000 - 0x901befe3 com.apple.CoreServices.OSServices 226.5 (226.5) <7e10d25c615a39fe1ab4d48e24a3b555> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x901bf000 - 0x901c1fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x901c2000 - 0x902b6ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
    0x902b7000 - 0x90313ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90314000 - 0x9044cff7 libicucore.A.dylib ??? (???) <5031226ea28b371d8dfdbb32acfb48b5> /usr/lib/libicucore.A.dylib
    0x9044d000 - 0x90920ffe libGLProgrammability.dylib ??? (???) <475db64244e011cd8811e076035b2632> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90921000 - 0x9092afff 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
    0x9092b000 - 0x90a0cff7 libxml2.2.dylib ??? (???) <1baef3d4972ee789d8fa6c1fa44da45c> /usr/lib/libxml2.2.dylib
    0x90b6e000 - 0x90b79ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90b7a000 - 0x90b81fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90b82000 - 0x90bd2ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90bd3000 - 0x90bddfeb 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
    0x90bde000 - 0x90be2fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90c48000 - 0x90cfaffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x90cfb000 - 0x90d19ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <fe27e80e1a9e86403fd9ed16dcfe4e11> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91f1d000 - 0x91f57fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91f58000 - 0x91f8ffff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91f90000 - 0x91fd1fe7 libRIP.A.dylib ??? (???) <c8d988d3880d7268468112c64c626d86> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91fd2000 - 0x91fd7fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91fd8000 - 0x91feefe7 com.apple.CoreVideo 1.5.1 (1.5.1) <ed7bb95fb94817ea3212090aac5c65f3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91fef000 - 0x91fefffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91ff0000 - 0x92400fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92401000 - 0x924c8ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x924c9000 - 0x924cbff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x924cc000 - 0x9264bfff com.apple.AddressBook.framework 4.1.1 (695) <24a448ba4f9f784189bd3183e3474d81> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9264c000 - 0x9266afff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x9266b000 - 0x926b1fef com.apple.Metadata 10.5.2 (398.18) <adbb3a14e8f7da444e16d2fd61862771> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92846000 - 0x92854ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x92855000 - 0x92bebfff com.apple.QuartzCore 1.5.3 (1.5.3) <1b65c05f89e81a499302fd63295b242d> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92bec000 - 0x92bfbffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x92bfc000 - 0x9324cfff com.apple.WebCore 5525.18.1 (5525.18.1) <9fcf69305c5b48dd8a5cb77107f66c7a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9324d000 - 0x932aaffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x932ab000 - 0x932b2ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x932b3000 - 0x93671fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93672000 - 0x93696feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x93697000 - 0x9369effe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9369f000 - 0x937e5ff7 com.apple.ImageIO.framework 2.0.2 (2.0.2) <77dfee73f4c0d230425a5151ee0bce05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x937e6000 - 0x93871fff com.apple.framework.IOKit 1.5.1 (???) <60cfc4b175c4ef60bb8e9036716a29f4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x938b1000 - 0x938b7fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x938b8000 - 0x938e5feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x938e6000 - 0x939b1fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x939b2000 - 0x93a6ffff com.apple.WebKit 5525.18 (5525.18) <7e41e38368974ed048c2f027a961dbd4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93a70000 - 0x93aedfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93aee000 - 0x93b54ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93c29000 - 0x93c30fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x93c31000 - 0x93c35fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93c37000 - 0x93c4dfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93c4e000 - 0x93c4efff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93c50000 - 0x93c50ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93c51000 - 0x93c5cfe7 libCSync.A.dylib ??? (???) <8011fc1963cebdde0c6f101dbee5afd7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93c5d000 - 0x93ce9ff7 com.apple.LaunchServices 289.2 (289.2) <3577886e3a6d56ee3949850c4fde76c9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93cea000 - 0x93d28ff7 libGLImage.dylib ??? (???) <093b1b698ca93a0380f5fa262459ea28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93d29000 - 0x93d2efff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93d2f000 - 0x93d2fffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93d30000 - 0x93d30ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x93d31000 - 0x93d40fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x93e71000 - 0x93e72ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93e73000 - 0x93e73ffd 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
    0x93e74000 - 0x93efefe3 com.apple.DesktopServices 1.4.6 (1.4.6) <94d1a28b351b7dff77becadab0967772> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93f11000 - 0x941ebff3 com.apple.CoreServices.CarbonCore 786.4 (786.4) <059c4803a7a95e3c1a95a332baeb1edf> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x941ec000 - 0x941fcfff 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
    0x941fd000 - 0x94277ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9432d000 - 0x943acff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x943ad000 - 0x9447bff3 com.apple.JavaScriptCore 5525.18 (5525.18) <672d1c7f16a4300addabeff4830f5024> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9447c000 - 0x945aefff com.apple.CoreFoundation 6.5.3 (476.14) <7ef7f5db09ff6dd0135a6165872803cc> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x945ec000 - 0x9461bfe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9461c000 - 0x94652fef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x94671000 - 0x946b0fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x946b1000 - 0x94d4dfff com.apple.CoreGraphics 1.351.31 (???) <c97a42498636b2596764e48669f98e00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94d4e000 - 0x94d90fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94e41000 - 0x9500ffff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95010000 - 0x9580dfef com.apple.AppKit 6.5.3 (949.33) <84b236f43802f4c15011513d18efa101> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9580e000 - 0x9581effc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9581f000 - 0x958b2fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95b1c000 - 0x95c01ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95c02000 - 0x95d03fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95d04000 - 0x95d2ffe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x95d30000 - 0x95d89ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95ed6000 - 0x95ed6ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95f5d000 - 0x95f85fff libcups.2.dylib ??? (???) <ece20dff2a2c8ed3ae6ef735ef440c37> /usr/lib/libcups.2.dylib
    0x95fb7000 - 0x96039ff3 com.apple.CFNetwork 330.4 (330.4) <ce5b085df34a78b7f198aff9db5b52ec> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9603a000 - 0x962b5fe7 com.apple.Foundation 6.5.5 (677.19) <bfd4ebea1a7739dd6b523f15dca01a37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x962b6000 - 0x962c2fe7 com.apple.opengl 1.5.6 (1.5.6) <125de77ea2434a91364e79a0905a7771> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x962c3000 - 0x963e7fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x963e8000 - 0x96410ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96411000 - 0x96425ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96426000 - 0x9645fffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96460000 - 0x964f3ff3 com.apple.ApplicationServices.ATS 3.3 (???) <064eb6d96417afa38a80b1735c4113aa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x964f4000 - 0x96513ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96514000 - 0x96538fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x96539000 - 0x96699ff3 libSystem.B.dylib ??? (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
    0x9669a000 - 0x96716feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96717000 - 0x96717ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x968d4000 - 0x96bdbff7 com.apple.HIToolbox 1.5.3 (???) <e36f5c553e5a32f64b7eb458dadadc71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96bdc000 - 0x96bf7ff3 libPng.dylib ??? (???) <c0484bec6e2432b406755591924fe664> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96bf8000 - 0x96bfbfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96bfc000 - 0x96c14fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96c15000 - 0x96c47fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96c48000 - 0x96c4afff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96c4b000 - 0x96f6cfea com.apple.QuickTime 7.5.0 (861) <4e1161b204b3b1f1047412c16483c39a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96f98000 - 0x9703ffeb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97040000 - 0x9711ffff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x97193000 - 0x9719bfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9719c000 - 0x971e6fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x971e7000 - 0x97241ff7 com.apple.CoreText 2.0.2 (???) <9fde11f84a72e890bbf2aa8b0b13b79a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97242000 - 0x97262ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97263000 - 0x972eaff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x972f0000 - 0x972f0ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <51586b8d9ef39123fbe6918f12d8285f> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Nope definitely says its version 9.0.124.0 on both the flash site and the safari installed plugins page, I checked the adobe website and the latest download is definitely listed as 9.0.124.0 for intel macs.
    http://www.elec.gla.ac.uk/~garethr/random/flash_site.png
    http://www.elec.gla.ac.uk/~garethr/random/safari_plugins.png
    I'll try and downgrade anyway and see what happens, as a side question is it definitely a problem with Flash then and not Javascript? It's just in further study I noticed the thread that crashed was a JavaCore thread and the fact that the console log was saying it was an "Invalid Memory Address" made me assume it was a SegFault somewhere in the JavaScript.

  • Portal "falls over" every 11 days!!

    Approx every 11 days our website falls over. None of the services seem to have stopped and nothing unusual is happening on the server. The web pages just become unavailable. A reboot fixes the problem. I believe the problem lies with webcache. Are ther andy files/directorys/tables that grow each day that may cause webcache to fall over??? I have modiced that the modplsys/cache/session direcotry seems to stop growing after 1000 directorys have been created. IS ther an issue with this? Any help is greatly appreciated.

    There should be no problem with the modplsql cache directory growth. It could be that modplsql only requires that many directories as it's caching is pretty much complete at that level. You could increase the modplsql cache size if it is always full and requires more space.
    It sounds roughly from your description that the machine is running out of resource and so perhaps hanging because it is unable to fork a new process. Is this what you see?
    It would be useful if you could work out which processes are using up the resources. To do this you could use top and "/usr/ucb/ps -auxww | grep <process id> ". I am assuming that you are on Solaris and perhaps 9.0.4.
    Useful log files to view are:
    $ORACLE_HOME/Apache/Apache/logs <error logs in particular>
    $ORACLE_HOME/opmn/logs <examine the process related log files, e.g. >
    $ORACLE_HOME/j2ee/OC4J_Portal/log/OC4J_Portal_default_island_1
    $ORACLE_HOME/webcache/logs/event_log and access_log
    Webcache is an in memory cache and so files/directorys/tables on the system should not cause it to fall over, unless perhaps the machine runs out of swap and real memory.
    cheers
    Nick

  • How to get the last(latest or previous) working day

    hi,
    using sysdate we may be getting today's date and sysdate-1 will be fetching the yesterday's date. but if sysdate-1 turns to be sunday or a holiday then we need to get the previous date to that holiday date .THe list of holidays are in lt_list_holidays. The Holiday date shall be the holiday_date column. I need a query which displays the last (latest or previous) working day ..
    Please advice
    Edited by: vine on Jul 20, 2010 5:30 AM
    Edited by: vine on Jul 20, 2010 5:51 AM

    Hi,
    vine wrote:
    hi ,
    THe queery seems to be fine but in the middle if we have any holidays and the holidays are in lt_list_holidays table . the name of the holiday date is holiday_date in lt_list_holiday.Is the name of the holiday important? I'll assume not. I'll also assume you have a column d (a DATE) that is the date of the holiday.
    >
    Please adviceThat's quite a different problem from what you first posted.
    Instead of posting a question x, waiting for someone to answer it, and then saying that the problem is really y, don't you think it would be better to post question y in the first place?
    You can do something like this:
    WITH     prev_days     AS
         SELECT     TRUNC (SYSDATE) - LEVEL     AS a_date
         FROM     dual
         CONNECT BY     LEVEL <= 4     -- worst case (see below)
    SELECT     MAX (a_date)     AS previous_work_day
    FROM     prev_days
    WHERE     TO_CHAR (a_date, 'Dy', 'NLS_DATE_LANGUAGE=''ENGLISH''')
                   NOT IN ('Sat', 'Sun')
    AND     NOT EXISTS ( SELECT  1
                   FROM    lt_list_holiday
                   WHERE   d     = prev-days.a_date
    ;Where I work, holidays are never consecutive, in fact, they are always at least 7 days apart, so I can be sure that a period of 4 consectuive days will always contain at least one work day. (There may be two weekend days plus one holiday; that's the worst case.) If you can have two or more holidays in a row, or holidays spaced 3 days apart (so that one might fall on a Friday, and the other on Monday), then increase the "magic number" 4 in
         CONNECT BY     LEVEL <= 4     -- worst caseto something appropriate. If you put it too high (say 10), no serious harm is done.

  • Keyboard falls asleep after update to OS X 10.8.2 Help!

    After update to OSX10.8.2 my MacBook Pro Keyboard and trackpad falls asleep after 10-20 seconds.
    Then it takes 4-5 sec to awake. Usually the first keystrokes are lost.
    The mouse works perfectly.
    Anyone else having this problem or has a solution?

    I don't know if it is any help but I forced quit (shutdown) and restarted and it seems to have solved the problem.

  • Can't load previously installed Acrobat 9 Pro after my CS6 trial expired.

    Can't load previously installed Acrobat 9 Pro after my CS6 trial expired. Keeps asking to buy the trial version or license the software (in reference to the CS6 trial, even though I'm loading my own Acrobat 9 Pro from my CS4 Creative Suite I purchased and had previously installed--still installed to my knowledge...at least I never uninstalled it anyway, if that helps)
    Thank you!

    Yes. I have tried to repair it, but it still didn't work. I had to completely uninstall - reboot - then do a clean install. Works beautifully for a few weeks, then nothing.

Maybe you are looking for

  • Logic Studio 9 - Installation Failed - HELP!!!

    Macbook Pro 2.4 GHz Intel Core 2 Duo RAM - 4 GB 10.6 Snow Leopard I just purchased a brand new copy of Logic 9 and installation has failed every single time I've tried, for hours now. Have tried installing w/ and w/out jampacks and audio content, not

  • First Gen G5 iMac: Shuts Down In Just Seconds

    My first generation G5 iMac shuts down within about 30 seconds to several minutes upon boot up. I had it off for about 3 or 4 days days while away, prior to this it worked fine. I purchased it in November of 2004. OS 10.4.8 I have it connected to an

  • Bluetooth printing issue

    I have an hp photosmart d5160 and a bluetooth usb device plugged into my printer, but when i try to add the printer in my laptop's bluetooth devices( hp compaq 6720s) , it tells me that i have a hardware problem (after the printer is listed in blueto

  • Problems with PDF output

    I created a journal page in Illustrator - which is a series of lines, some thicker than others.  They have been combined into a layout for a journal in InDesign.  All looks great and prints great from both programs. When I output to PDF I lose the in

  • Yosemite my CS4 Illustrator has problems

    Since installing Yosemite my CS4 suite has problems. E.g. Illustrator warns that it can't load additional modules. It crashes when told to print, it does not export pdf etc. Any well tried solution would be welcome.