Qtnext in quicktime embedded - Sub-parameters

I'm trying to make a dynamic media interface and one of the features is video. I would like to have the video in one frame and each time a new video comes on, I would like to change the description of the video which will be displayed in another frame. I am using qtnext for the video playlists and I want to know if it is possible to use href=<url> and target=<frameid> to open a new html file in a different frame each time a new video is displayed using qtnext.
Main Goal: - Each time the video changes, the video description that is displayed in another frame changes (new html file).
Here's the code:
<html>
<center>
<form>
<embed id="myVideo" src="movies/portal.mov" scale="aspect" loop="false" controller="false"
href="movdescription.html" autohref="true" target="mdescription" +<!---- THIS LINE IS WHAT I WOULD LIKE TO EXECUTE IN EACH NEW QTNEXT.-->+
QTNEXT1="<movies/nine.mov> T<myself>"
QTNEXT2="GOTO0"
</embed>
</form>
</center>
</html>

Found a work around to this issue...
Originally I used the first sub-report of the set of five as a template for two other reports as all three had the same data source and set with two nested row groups.
I then modified this template for the last two reports as these again had the same data source and set but with only one row group. This seems to explain why the charts are duplicated twice/thrice in the pdf rendering process above.
If you delete the offending charts outright and rebuild entirely from scratch you no longer have the render issue... I wonder if the sub-report chart is remembering its original template state in the rdl metadata somewhere even though there is no reference
to this in the xml code behind the rdl report???

Similar Messages

  • Copy doesn't work with embeded sub report in CR For Visual Studio 2010 SP2

    Copy feature doesn't seems to work with embeded sub report content in CR For Visual Studio 2010 SP2. I am using a winform app .net 4.0. I am not able to select the individual fields in the embeded sub report . It always select the whole sub report and it is not copying anything. Please let me know how to enable the copy feature for elements in  embeded sub report.

    I understand your description. Let me do a quick test of this later on today and get back....
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • How to connect SQL SHAPED Child RecordSet to A VB6 Embeded Sub Report?

    Please Help me in connect SQL SHAPED Child RecordSet to A VB6 Embeded Sub Report.
    Here is the Code I am currently Using in VB6 SP6.
    I want to Connect to "Command1" Child Recordset with "item" Sub Report.Please Help Me.
    Option Explicit
    ' The ADO connection to the local database.
    Public oConn As ADODB.Connection
    Public ocmd1 As ADODB.Command
    Public ocmd2 As ADODB.Command
    Public ocmd3 As ADODB.Command
    Dim rs As ADODB.Recordset
    Dim rs_sb1 As ADODB.Recordset
    Dim rs_sb2 As ADODB.Recordset
    Public invoice_report As New CrystalReport1
    Public itemsub_report As Report
    Public servicesub_report As Report
    Public sConnectString As String
    Public strSQL As String
    Dim ADOrs As ADODB.Recordset
    Private Sub Form_Load()
    minvno = 3
    'msubtype_id = 16
    'Create ADO Connection object
    Set oConn = New ADODB.Connection
    sConnectString = "Provider = MSDataShape;Data Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & App.Path & "\stocks\business.mdb;" & "Persist Security Info=False;" & "User ID=Admin;" & "Jet OLEDB:Database Password=apple14;"
    oConn.Open sConnectString
    'Create ADO Command object
    Set ocmd1 = New ADODB.Command
    Set ocmd1.ActiveConnection = oConn
    ocmd1.CommandText = " SHAPE {SELECT invoices_customer., contacts., invoice_subtypes.* FROM invoices_customer, contacts, invoice_subtypes WHERE invoices_customer.contact_id = contacts.contact_id AND invoices_customer.subtype_id = invoice_subtypes.subtype_id AND invoices_customer.inv_no = " & minvno & " AND invoices_customer.type = 'service'} AS invoice_customer APPEND ({SELECT * FROM `item_customer`} AS Command1 RELATE 'inv_no' TO 'inv_no','invoices_customer.subtype_id' TO 'subtype_id') AS Command1,({SELECT * FROM `service_customer`} AS Command2 RELATE 'inv_no' TO 'inv_no','invoices_customer.subtype_id' TO 'subtype_id') AS Command2"
    ocmd1.CommandType = adCmdText
    Set rs = New ADODB.Recordset ' Recordset for the main report
    Set rs = ocmd1.Execute
    Dim crs As ADODB.Recordset
    Set crs = rs.Fields("Command1").Value
    'Set crs = rs!command1.Value
    Me.Caption = crs.RecordCount
    ' Add the datasource to the report
    invoice_report.Database.AddADOCommand oConn, ocmd1
    ' Connect the recordset to the main report
    invoice_report.DiscardSavedData
    invoice_report.Database.SetDataSource rs, 3, 1
    invoice_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With invoice_report
    .Field1.SetUnboundFieldSource ("{ADO.date}")
    If rs("post") = "None" Then
    .Field2.SetUnboundFieldSource ""
    Else
    .Field2.SetUnboundFieldSource ("{ADO.post}")
    End If
    .Field4.SetUnboundFieldSource ("{ADO.name}")
    .Field5.SetUnboundFieldSource ("{ADO.address}")
    .Field6.SetUnboundFieldSource ("{ADO.mpay}")
    If rs("mpay") = "Cash" Then
    .Text2.SetText ""
    Else
    If rs("mpay") = "Cheque" Then
    .Text2.SetText "Cheq.Date"
    .Field7.SetUnboundFieldSource ("{ADO.cheque}")
    .Field8.SetUnboundFieldSource ("{ADO.bank}")
    .Field9.SetUnboundFieldSource ("{ADO.cheque_date}")
    Else
    If rs("mpay") = "Credit Card" Then
    .Text2.SetText "Exp.Date"
    .Field7.SetUnboundFieldSource ("{ADO.ccard}")
    .Field8.SetUnboundFieldSource ("{ADO.bank}")
    .Field11.SetUnboundFieldSource ("{ADO.cctype}")
    .Field9.SetUnboundFieldSource ("{ADO.exp_date}")
    Else
    End If
    End If
    End If
    .Field10.SetUnboundFieldSource ("{ADO.vno}")
    End With
    Else
    End If
    invoice_report.Subreport1.OpenSubreport.Database.AddADOCommand oConn, ocmd1
    'Set itemsub_report = invoice_report.Subreport1.OpenSubreport
    Set itemsub_report = invoice_report.OpenSubreport("item")
    ' connect the other recordset to the sub-report
    itemsub_report.DiscardSavedData
    itemsub_report.Database.SetDataSource rs, 3, 1
    itemsub_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With itemsub_report
    '.Text1.SetText "Invoice - " & rs("subtype")
    .Text1.SetText "Invoice - " & itemsub_report.Database.Tables(1).Fields(41).Name
    .Field2.SetUnboundFieldSource itemsub_report.Database.Tables(1).Fields(41).Name
    ' .Field1.SetUnboundFieldSource ("{ADO.Command1-qty}")
    '.Field2.SetUnboundFieldSource ("{ADO.Command1-brand}")
    .Field3.SetUnboundFieldSource ("{ADO.Command1-brand_id}")
    .Field4.SetUnboundFieldSource ("{ADO.Command1-category}")
    .Field5.SetUnboundFieldSource ("{ADO.Command1-price}")
    .Field6.SetUnboundFieldSource ("{ADO.Command1-value}")
    .Field7.SetUnboundFieldSource ("{ADO.job_no}")
    End With
    invoice_report.Field12.SetUnboundFieldSource ("{ADO.item_charge}")
    Else
    End If
    invoice_report.Subreport2.OpenSubreport.Database.AddADOCommand oConn, ocmd1
    Set servicesub_report = invoice_report.Subreport2.OpenSubreport
    ' connect the other recordset to the sub-report
    servicesub_report.DiscardSavedData
    servicesub_report.Database.SetDataSource rs, 3, 1
    servicesub_report.AutoSetUnboundFieldSource crBMTName
    If rs.RecordCount > 0 Then
    With servicesub_report
    .Text1.SetText "Service Charges"
    .Field1.SetUnboundFieldSource ("{ADO.Command2-desc}")
    .Field2.SetUnboundFieldSource ("{ADO.Command2-service_charge}")
    .Field3.SetUnboundFieldSource ("{ADO.Command2-total_scharge}")
    End With
    invoice_report.Field12.SetUnboundFieldSource ("{ADO.item_charge}")
    Else
    End If
    invoice_report.Text3.SetText "Total Bill Value ="
    invoice_report.Field13.SetUnboundFieldSource ("{ADO.bill_value}")
    CRViewer1.ReportSource = invoice_report
    CRViewer1.ViewReport
    End Sub

    Hi lalantha,
    It looks like you are using the RDC as your report engine. The RDC has been deprecated since version 9 meaning there has been no new funcitonalty added to it. There is no option in the RDC to set location to a Command object, it was added to RAS in Cr Xi R2 ( 11.5 ).
    Only work around is to make a connection to the Database directly or using a disconnect record set, there may be other ways but it will require you to rebuild your report. We don't have the ability to map a report that used a COmmand object to another data source.
    Thank you
    Don

  • Quicktime embedding problem

    I always hated doing site upgrades when the original site was
    done by someone else. But sometimes I gotta bite the bullet, case
    in point as I'm so frustrated and now turn to the DW gods for help!
    The site is
    http://www.kanefilms.tv/
    problem - if you click on the Demo Reel the page comes up but
    no QT video
    the seond link works fine the other links work
    I redid the embedding and the link works on both the local
    and remote files (preview in Browser) but son as I go to open the
    page from the url the QT movie is not there. It has to be the
    embedding as the other linked pages to that QT show the page but no
    QT as well. There are 4 links on the page the only one working is
    the second link, the 1st 3rd and 4th were never finished by the
    person who originally did the site, I'm in DW CS3
    Anyway I have included the html in the page with the bum link
    that works under the condtions I mentioned, can anybody tell me
    what the problem is here?

    Any chance of moving to Flash instead of QT?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "mentlity" <[email protected]> wrote in
    message
    news:g7oajr$3c6$[email protected]..
    >I always hated doing site upgrades when the original site
    was done by
    >someone
    > else. But sometimes I gotta bite the bullet, case in
    point as I'm so
    > frustrated
    > and now turn to the DW gods for help!
    > The site is
    http://www.kanefilms.tv/
    > problem - if you click on the Demo Reel the page comes
    up but no QT video
    > the seond link works fine the other links work
    > I redid the embedding and the link works on both the
    local and remote
    > files
    > (preview in Browser) but son as I go to open the page
    from the url the QT
    > movie
    > is not there. It has to be the embedding as the other
    linked pages to that
    > QT
    > show the page but no QT as well. There are 4 links on
    the page the only
    > one
    > working is the second link, the 1st 3rd and 4th were
    never finished by the
    > person who originally did the site, I'm in DW CS3
    >
    > Anyway I have included the html in the page with the bum
    link that works
    > under
    > the condtions I mentioned, can anybody tell me what the
    problem is here?
    >
    >
    >

  • Safari crashes when opening a webpage with quicktime embeded

    Everytime i open a page with a quicktime movie, safari crashes. i have RESET SAFARI and EMPTIED THE CACHE, but it is still happening.
    I dont know if this is related, but i can no longer open I.E. anymore, it crashes at startup.
    Are these issues related and can anyone help?

    i forgot to paste the crash log
    Date/Time: 2006-09-13 19:34:15.566 -0700
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [493]
    Version: 2.0.4 (419.3)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 539
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0e977ab0
    Thread 0 Crashed:
    0 com.apple.HIServices 0x9184db18 ICMapping::CompareExtensions(unsigned char const*, ICMapEntry const*) + 28
    1 ...ple.CoreServices.CarbonCore 0x90b921fc GetHandleSize + 36
    2 com.apple.HIServices 0x9184da9c ICMapping::MapFilename(unsigned char const*, ICMapEntry*) + 112
    3 com.apple.HIServices 0x9184d150 ICMapFilename + 136
    4 ...uickTimeStreaming.component 0x999f1bf4 HTTPDataHandler_GetMacOSFileType + 140
    5 ...ple.CoreServices.CarbonCore 0x90bda19c CallComponentFunctionCommon + 1044
    6 ...ple.CoreServices.CarbonCore 0x90bd9d24 CallComponent + 260
    7 com.apple.QuickTime 0x94786390 DataHGetMacOSFileType + 40
    8 com.apple.QuickTime 0x947857d4 GetMovieImporterForDataRef_priv + 452
    9 com.apple.QuickTime 0x947125d8 NewMovieFromDataRefPriv_priv + 1412
    10 com.apple.QuickTime 0x9478a324 NewMovieFromDataRef_priv + 20
    11 com.apple.QuickTime 0x9478a2fc NewMovieFromDataRef + 64
    12 ...ickTimeComponents.component 0x98cfe12c EatSlowMovieIdle + 368
    13 ...ple.CoreServices.CarbonCore 0x90bda1bc CallComponentFunctionCommon + 1076
    14 ...ple.CoreServices.CarbonCore 0x90bd9d24 CallComponent + 260
    15 com.apple.QuickTime 0x94789988 MovieImportIdle + 44
    16 com.apple.QuickTime 0x94759310 TaskMovie_priv + 5172
    17 ...ickTimeComponents.component 0x98b9fd6c doIdleMovie + 1072
    18 ...ickTimeComponents.component 0x98babbd4 internalDoAction + 1164
    19 ...ickTimeComponents.component 0x98b9d06c _MCIsPlayerEvent + 212
    20 ...ple.CoreServices.CarbonCore 0x90bda19c CallComponentFunctionCommon + 1044
    21 ...ple.CoreServices.CarbonCore 0x90bd9d24 CallComponent + 260
    22 ...ickTimeComponents.component 0x9936b850 MCIsPlayerEvent + 40
    23 ...ickTimeComponents.component 0x98b9ecb8 _MCHandleEvent + 120
    24 ...ple.CoreServices.CarbonCore 0x90bda1e0 CallComponentFunctionCommon + 1112
    25 ...ple.CoreServices.CarbonCore 0x90bd9d24 CallComponent + 260
    26 com.apple.QuickTime 0x94995664 MCHandleEvent + 48
    27 ...ple.QuickTime Plugin.plugin 0x9a105780 NPP_HandleEvent + 2948
    28 ...ple.QuickTime Plugin.plugin 0x9a0f4a40 WebHelperPrivateHandleEvent + 64
    29 com.apple.quicktime.webplugin 0x07cfe634 NPN_GetValue + 1712
    30 com.apple.quicktime.webplugin 0x07cfe864 NPN_GetValue + 2272
    31 com.apple.quicktime.webplugin 0x07d00e68 NPN_GetValue + 12004
    32 com.apple.QTKit 0x95e48ae4 -[QTMovie idle] + 768
    33 com.apple.CoreFoundation 0x907d9b0c CFSetApplyFunction + 268
    34 com.apple.QTKit 0x95e48088 +[QTMovie idleAllMovies:] + 112
    35 com.apple.Foundation 0x92946f5c __NSFireTimer + 116
    36 com.apple.CoreFoundation 0x907ef550 __CFRunLoopDoTimer + 184
    37 com.apple.CoreFoundation 0x907dbec8 __CFRunLoopRun + 1680
    38 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    39 com.apple.HIToolbox 0x931eb740 RunCurrentEventLoopInMode + 264
    40 com.apple.HIToolbox 0x931eadd4 ReceiveNextEventCommon + 380
    41 com.apple.HIToolbox 0x931eac40 BlockUntilNextEventMatchingListInMode + 96
    42 com.apple.AppKit 0x936cdae4 _DPSNextEvent + 384
    43 com.apple.AppKit 0x936cd7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    44 com.apple.Safari 0x00006740 0x1000 + 22336
    45 com.apple.AppKit 0x936c9cec -[NSApplication run] + 472
    46 com.apple.AppKit 0x937ba87c NSApplicationMain + 452
    47 com.apple.Safari 0x0005c77c 0x1000 + 374652
    48 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92953164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9295309c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x9562ef70 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92944194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9296b69c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92944194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9296c7dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92944194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f7ac select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.Foundation 0x9294b300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a42e42c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92944194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 com.apple.Foundation 0x9294b300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9376a708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92944194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc1af0 MPWaitOnQueue + 224
    3 ...thesis.MacinTalkSynthesizer 0x087524bc MTBEWorker::WorkLoop(MTBEWorker*) + 168
    4 ...thesis.MacinTalkSynthesizer 0x087516f4 MTBEWorkerStartMPTask + 16
    5 ...ple.CoreServices.CarbonCore 0x90bc1900 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c2e8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030dcc pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc1af0 MPWaitOnQueue + 224
    3 ...thesis.MacinTalkSynthesizer 0x087524bc MTBEWorker::WorkLoop(MTBEWorker*) + 168
    4 ...thesis.MacinTalkSynthesizer 0x087516f4 MTBEWorkerStartMPTask + 16
    5 ...ple.CoreServices.CarbonCore 0x90bc1900 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90041098 machwaituntil + 8
    1 libSystem.B.dylib 0x90040e64 nanosleep + 388
    2 libSystem.B.dylib 0x900445d8 usleep + 88
    3 ....speech.synthesis.framework 0x91995f20 PollChannelStatus + 36
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145263c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914523dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x900327ac wait4 + 12
    1 com.apple.Foundation 0x92932448 _waitForTermination + 40
    2 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ea8dc CFRunLoopRun + 52
    5 com.apple.QuickTime 0x94782208 QTSNetworkThread_RunThread + 128
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009184db18 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x22228434 xer: 0x0000000000000000 lr: 0x000000009184da9c ctr: 0x0000000090b92564
    r0: 0x00000000000034a4 r1: 0x00000000bfffc960 r2: 0x0000000000000000 r3: 0x00000000bfffca70
    r4: 0x00000000bfffcbec r5: 0x000000000e97460c r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000001d86800 r9: 0x0000000000000188 r10: 0x0000000000000188 r11: 0x00000000a1838c40
    r12: 0x0000000090b92564 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x00000000bfffd61c
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000200 r19: 0x0000000040000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000001 r23: 0x00000000bfffccec
    r24: 0x00000000bfffcbec r25: 0x00000000bfffca70 r26: 0x00000000bfffcbec r27: 0x0000000000004ada
    r28: 0x00000000bfffca70 r29: 0x000000000000960c r30: 0x000000000e97460c r31: 0x000000009184d0d0
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x1130000 - 0x1130fff com.apple.SpotLightCM 1.0 (121.20.2) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x11f2000 - 0x11f3fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x4994000 - 0x4996fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x4aa7000 - 0x4aa9fff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x4d98cc0 - 0x4d98da9 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x4d99150 - 0x4d99230 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x4d992b0 - 0x4d99396 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x4d99460 - 0x4d99537 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x4d99540 - 0x4d99602 CFMPriv_QD PEF binary: CFMPriv_QD
    0x4d99bb0 - 0x4d99c83 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x4d99cf0 - 0x4d99dc3 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x4d99e90 - 0x4d99f52 CFMPriv_AE PEF binary: CFMPriv_AE
    0x4d99f60 - 0x4d9a025 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x4d9a090 - 0x4d9a167 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x4d9a1e0 - 0x4d9a2c3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x4d9a330 - 0x4d9a40a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x4d9d970 - 0x4d9d9e7 CFMPriv_System PEF binary: CFMPriv_System
    0x4d9dc60 - 0x4d9dd30 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x4d9dda0 - 0x4d9de73 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x4d9df40 - 0x4d9dffb CFMPriv_Help PEF binary: CFMPriv_Help
    0x4d9e000 - 0x4d9e0ca CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x4d9e140 - 0x4d9e216 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x4d9e280 - 0x4d9e353 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x4d9e3d0 - 0x4d9e4b5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x4d9e520 - 0x4d9e5f6 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x4d9e6c0 - 0x4d9e77e CFMPriv_Print PEF binary: CFMPriv_Print
    0x4d9e790 - 0x4d9e85d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x4d9e8d0 - 0x4d9e9b2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x4d9fb90 - 0x4d9fc42 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x4fb2000 - 0x4fb6fff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x4ff3000 - 0x4ff9d05 DocumentsToGoXCM PEF binary: DocumentsToGoXCM
    0x50f4000 - 0x52e4fff com.macromedia.Flash Player.plugin 8.0.24 (1.0.1f24) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x7569000 - 0x756bfff com.roxio.ToastItPlugin ToastItPlugIn version 1.0 (1.0) /Users/georgegross/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x7b18000 - 0x7b673c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x7cf9000 - 0x7d06fff com.apple.quicktime.webplugin 7.1.2 /Library/Internet Plug-Ins/QuickTime Plugin.webplugin/Contents/MacOS/QuickTime Plugin
    0x8748000 - 0x879afff com.apple.speech.synthesis.MacinTalkSynthesizer 3.3 /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0xaa2f000 - 0xaa48fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0xc2c2000 - 0xc2ddfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xe9b3000 - 0xeac2fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xeaf1000 - 0xebe1fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe52fff dyld 45.3 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291e000 - 0x92b49fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c67000 - 0x92d45fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d65000 - 0x92e53fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e65000 - 0x92e83fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8e000 - 0x92ee8fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f06000 - 0x92f06fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f08000 - 0x92f1cfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f34000 - 0x92f44fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f50000 - 0x92f65fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f77000 - 0x92ffefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93012000 - 0x9301dfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93027000 - 0x93054fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306e000 - 0x9307efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9308a000 - 0x930f0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93121000 - 0x93170fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9319e000 - 0x931bbfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931cd000 - 0x931dafff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931e3000 - 0x934f0fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363f000 - 0x9364bfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93650000 - 0x93670fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93688000 - 0x936b8fff com.apple.MediaKit 8.6.2 (345.1.8) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x936c3000 - 0x936c3fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c5000 - 0x93cf8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94085000 - 0x940f5fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9412e000 - 0x941f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94243000 - 0x94243fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94245000 - 0x943f8fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444b000 - 0x94488fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94490000 - 0x944e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94570000 - 0x945a8fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945eb000 - 0x94607fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9461b000 - 0x9465ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94683000 - 0x94692fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9469a000 - 0x946a6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946ec000 - 0x94704fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9470b000 - 0x949bffff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a83000 - 0x94af4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b67000 - 0x94b87fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c8f000 - 0x94dbffff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e51000 - 0x94e60fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e68000 - 0x94e95fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e9c000 - 0x94eacfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94eb0000 - 0x94edffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94eef000 - 0x94f0cfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95305000 - 0x95305fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95307000 - 0x9538afff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x953b7000 - 0x953fdfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x955fb000 - 0x95623fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x9562c000 - 0x956bafff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95716000 - 0x957acfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x957e9000 - 0x95af5fff com.apple.WebCore 418.20.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95c7e000 - 0x95ca7fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95e35000 - 0x95e74fff com.apple.QTKit 7.1.2 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96409000 - 0x9641ffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96a37000 - 0x96a4ffff com.apple.speech.SpeechDictionary 3.3 /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0x96e9e000 - 0x96ebdfff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x975d4000 - 0x97695fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x976c0000 - 0x976c1fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x976c3000 - 0x976d0fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98663000 - 0x98771fff com.apple.DiskImagesFramework 10.4.7 (114.1) /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
    0x987ef000 - 0x987fcfff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x98adf000 - 0x994b5fff com.apple.QuickTimeComponents.component 7.1.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x999b4000 - 0x99b03fff com.apple.QuickTimeStreaming.component 7.1.2 /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x9a0e9000 - 0x9a110fff com.apple.QuickTime Plugin.plugin 7.1.2 /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x9a42b000 - 0x9a461fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a47e000 - 0x9a490fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerMac8,2, BootROM 5.2.5f1, 1 processors, PowerPC G5 (3.1), 2 GHz, 512 MB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J4000, 512 MB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.7.5f10, 2 service, 1 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3160023AS, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R UJ-845,
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: PSC 1600 series, HP, Up to 12 Mb/sec, 500 mA
    USB Device: iMic USB audio system, Griffin Technology, Inc, Up to 12 Mb/sec, 500 mA

  • Exporting a PDF with a playable QuickTime embedded

    Is it possible?
    Thanks

    For sure, it is … but not from Pages
    Yvan KOENIG (VALLAURIS, France) lundi 27 septembre 2010 15:55:22

  • Embedding sub-docs within compound docs

    hello there,
    according to all the documentation about XMP it should be possible to import a file with an XMP Packet into another with its own Packet. I tested this with multiple Adobe applications, but the packet of the imported file seems to be lost, leaving only the packet of the containing file (at least in any readable format). The XAPscanner utility revealed the same results.
    If this is true, it makes the whole idea of XMP useless...!
    Hans
    things I tested:
    psd and ai file with file info filled in -> XMP visible. Imported this in InDesign 2 and added file info there too ->XMP of ID visible, but psd and ai is gone. Did the same with Illustrator 10.

    Please see my combined response in your other thread:
    Re: Oracle Text  11 - Auto Lexer Issue, Language Detection, Alternate Spelling

  • QuickTime embedded player just displaying a black rectangle

    Plug in not rendering correctly when playing a .mp3 file.
    The sound plays correctly and I can click on the control and it does move to the no location.
    S black rectangle is displayed instead of the nice visual.
    Using windows exployer and I have the latest QT installed.
    Any ideas?

    A "black" controller is a known issue in Windows 64 bit OS's.
    Try running your browser using "compatibility" mode.

  • Issue with Parameterized Popup

    Hi,
    I have created a parameterized popup which gets opened on click of an image. Opening the popup is working fine but custom close button (not the X icon) is not working. I have added javascript:closeit() as the destination URI of the button but nothing happens when I click the button. I also tried adding a javascript function for closing the window and put a PPR on the button to forward to the current page and execute the java script but no luck :-( Issue with using X button for closing the popup is - the control is still in the popup processformrequest afer I close the wondow using X. Whatever action I perform on the base page is yielding no results/undesired results. That's why I wanted a custom close button so that I can direct the control back to the calling page.
    Please advise.
    My requirement is to have 2 buttons on the popup region (save and close). On click on save, data should be saved and the calling (base) page should get refreshed and close should just close the popup and bring the control back to the base page. I have a standalone region created with desired fields and buttons and this region is added to the region popup.
    Can anyone please help me with this?
    Thanks in advance.
    Shreevatsa

    Thanks Peddi. Any other option of achieving this functionality in parameterized popup?
    Also I saw the below in the dev guide.
    You can handle user interactions for embedded and parameterized pop-ups as follows:
      All-Submit - Configure buttons on an embedded pop-up to submit the pop-up data and the base page data together. The pop-up closes and the base page submits after this event.
      Self-PPR - Define partial page refresh events on the pop-up to refresh the pop-up window alone. The pop-up remains displayed after a self-PPR event.
      Page-PPR - Define partial page refresh events on the pop-up to refresh the base page items. The popup closes after a page-PPR event.
    I didn't understand completely as what are the differences and how we can enable these actions on popup. I am thinking of Page-PPR which might work for my requirement but I am not sure how to enable this. Is this same as enabling a PPR on a item on the popup region.
    Thanks
    Shreevatsa

  • Embedded MPEG-1 Muxed movie in Keynote Export

    Hi!
    I have a presentation to do and there is a QuickTime file I have to include, and it works fine as a QuickTime embedded file in a Keynote presentation. However, I have to make it into a exported QuickTime Presentation.
    Unfortunately the mov file is a MPEG-1 Muxed file and it doesn't export the sound when I export the Keynote to QuickTime. Plus it has a green line down the right side.
    Can anyone help me with this issue?
    Thanks in advance

    You want to get a program called MPEG Streamclip and convert the MPEG to a normal QuickTime format.
    http://www.alfanet.it/squared5/mpegstreamclip.html

  • Quicktime in GoogleSites does not play in Safari5 (but Safari4 and others)

    I need a hint, why quicktime movie embedding(viewing) in GoogleSites is broken in Safari 5.
    In GoogleSites the following html-embed gadget in snippet 1 is used for embedding quicktime movie:
    This html-code works in Safari4 and other browsers, but not in Safari5 (not Mac or Windows).
    I assume this has to do with long url.
    Url in gadget encodes object and embed tag shown unencoded below in snippet 2.
    1. html-embed gadget
    <iframe width="320" height="256" scrolling="no" frameborder="0" id="1756601592" name="1756601592" allowtransparency="true" class="igm" src="//jujo00obo2o234ungd3t8qjfcjrs3o6k-a-sites-opensocial.googleusercontent.co m/gadgets/ifr?v=ae24c85b1e165e43aecb03ad550b1&amp;container=enterprise&amp;view= home&amp;debug=0&amp;lang=all&amp;url=http%3A%2F%2Fwww.gstatic.com%2Fsites-gadge ts%2Fembed%2Fembed.xml&amp;country=ALL&amp;libs=core%3Asetprefs&amp;parent=http% 3A%2F%2Fsites.google.com%2Fsite%2Fpiatrautmann2222%2FAus-der-Produktion%2***-zir konbruecke#upembed_snippet=%3Cobjectxmlns%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%22+classid%3D%22clsid%3A02BF25 D5-8C17-4B23-BC80-D3488ABDDC6B%22+codebase%3D%22http%3A%2F%2Fwww.apple.com%2Fqta ctivex%2Fqtplugin.cab%22+height%3D%22256%22+width%3D%22320%22%3E+%3Cparam+name%3 D%22src%22+value%3D%22http%3A%2F%2Fwww.piatrautmann.de%2F%28Nr_7%29_OK_Kronen.mo v%22+%2F%3E+%3Cparam+name%3D%22autoplay%22+value%3D%22true%22+%2F%3E+%3Cparam+na me%3D%22controller%22+value%3D%22true%22+%2F%3E+%3Cembed+autoplay%3D%22true%22+c ontroller%3D%22true%22+height%3D%22256%22+pluginspage%3D%22http%3A%2F%2Fwww.appl e.com%2Fquicktime%2Fdownload%2F%22+src%3D%22http%3A%2F%2Fwww.piatrautmann.de%2F% 28Nr_7%29_OKKronen.mov%22+width%3D%22320%22+%2F%3E%3C%2Fobject%3E&amp;st=e%3DAIHE3cC7Kv0XJAeYhMV72PZqZr%252FmAp4J3uqjFQN%252BhT%25 2F9vp0v7H1vxCda%252B5qPXl1DkydbMchXFH3xUEaIvAoONuk%252B0xXXjvPrX0eOtoJobXF0kLGTv rPyCUT1mdQthT1FgReaL6i%252FpORC%26c%3Denterprise&amp;rpctoken=-84250966574654751 10">
    </iframe>
    2. object and embed tag for quicktime embedding
    <object xmlns="http://www.w3.org/1999/xhtml" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320">
    <param name="src" value="http://www.piatrautmann.de/UK_Zirkonbruecke.mov" />
    <param name="autoplay" value="true" />
    <param name="controller" value="true" />
    <embed autoplay="true" controller="true" height="256" pluginspage="http://www.apple.com/quicktime/download/" src="http://www.piatrautmann.de/UK_Zirkonbruecke.mov" width="320" />
    </object>
    Embedding can be reviewed live at
    http://sites.google.com/site/piatrautmann2222/Aus-der-Produktion/uk-zirkonbrueck e
    Any idea what causes this issue?
    Is this a bug in Safari 5?

    I have reduced the complexity of page-html below and opened it from .html file on local HD. You can cut and paste to give it a try.
    Result is that IFRAME works with some text content (section 2), but not with encoded XML-embed-snippet with object-tag (see above) as content (section 1).
    But this object tag with embed-tag works in last section (section 3) as direct part of the html-page.
    Just the combination of iframe and embed-snippet works in all other browsers even Safari 4, but not Safari 5. What is wrong?
    Sample:
    <html>
    <head>
    <title></title>
    </head>
    <body>
    <iframe
    width="320"
    height="256"
    scrolling="no"
    frameborder="0"
    id="1756601592"
    name="1756601592"
    allowtransparency="true"
    class="igm" src="http://jujo00obo2o234ungd3t8qjfcjrs3o6k-a-sites-opensocial.googleuserconte nt.com/gadgets/ifr?v=ae24c85b1e165e43aecb03ad550b1&amp;container=enterprise&amp; view=home&amp;debug=0&amp;lang=all&amp;url=http%3A%2F%2Fwww.gstatic.com%2Fsites- gadgets%2Fembed%2Fembed.xml&amp;country=ALL&amp;libs=core%3Asetprefs&amp;parent= http%3A%2F%2Fwww.piatrautmann.de%2FAus-der-Produktion%2***-zirkonbruecke#upembed_snippet=%3Cobjectxmlns%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%22+classid%3D%22clsid%3A02BF25 D5-8C17-4B23-BC80-D3488ABDDC6B%22+codebase%3D%22http%3A%2F%2Fwww.apple.com%2Fqta ctivex%2Fqtplugin.cab%22+height%3D%22256%22+width%3D%22320%22%3E+%3Cparam+name%3 D%22src%22+value%3D%22http%3A%2F%2Fwww.piatrautmann.de%2***_Zirkonbruecke.mov%22 +%2F%3E+%3Cparam+name%3D%22autoplay%22+value%3D%22true%22+%2F%3E+%3Cparam+name%3 D%22controller%22+value%3D%22true%22+%2F%3E+%3Cembed+autoplay%3D%22true%22+contr oller%3D%22true%22+height%3D%22256%22+pluginspage%3D%22http%3A%2F%2Fwww.apple.co m%2Fquicktime%2Fdownload%2F%22+src%3D%22http%3A%2F%2Fwww.piatrautmann.de%2***Zirkonbruecke.mov%22+width%3D%22320%22+%2F%3E%3C%2Fobject%3E&amp;st=e%3DAIHE3cC7Kv0XJAeYhMV72PZqZr%252FmAp4J3uqjFQN%252BhT%25 2F9vp0v7H1vxCda%252B5qPXl1DkydbMchXFH3xUEaIvAoONuk%252B0xXXjvPrX0eOtoJobXF0kLGTv rPyCUT1mdQthT1FgReaL6i%252FpORC%26c%3Denterprise&amp;rpctoken=-84250966574654751 10"
    >
    </iframe>
    <iframe
    width="320"
    height="256"
    scrolling="no"
    frameborder="0"
    id="1756601592"
    name="1756601592"
    allowtransparency="true"
    class="igm" src="http://jujo00obo2o234ungd3t8qjfcjrs3o6k-a-sites-opensocial.googleuserconte nt.com/gadgets/ifr?v=ae24c85b1e165e43aecb03ad550b1&amp;container=enterprise&amp; view=home&amp;debug=0&amp;lang=all&amp;url=http%3A%2F%2Fwww.gstatic.com%2Fsites- gadgets%2Fembed%2Fembed.xml&amp;country=ALL&amp;libs=core%3Asetprefs&amp;parent= http%3A%2F%2Fwww.piatrautmann.de%2FAus-der-Produktion%2***-zirkonbruecke#upembedsnippet=Iamhere.&amp;st=e%3DAIHE3cC7Kv0XJAeYhMV72PZqZr%252FmAp4J3uqjFQN%252BhT%252F9vp0v7H1 vxCda%252B5qPXl1DkydbMchXFH3xUEaIvAoONuk%252B0xXXjvPrX0eOtoJobXF0kLGTvrPyCUT1mdQ thT1FgReaL6i%252FpORC%26c%3Denterprise&amp;rpctoken=-8425096657465475110"
    >
    </iframe>
    <object
    xmlns="http://www.w3.org/1999/xhtml"
    classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
    codebase="http://www.apple.com/qtactivex/qtplugin.cab"
    height="256"
    width="320"
    <div class="jive-quote">
    <param name="src" value="http://www.piatrautmann.de/UK_Zirkonbruecke.mov" />
    <param name="autoplay" value="true" />
    <param name="controller" value="true" />
    <embed
    autoplay="true"
    controller="true"
    height="256"
    pluginspage="http://www.apple.com/quicktime/download/"
    src="http://www.piatrautmann.de/UK_Zirkonbruecke.mov"
    width="320"
    />
    </object>
    </body>
    </html>

  • Stopping embedded video from loading multiple times

    Hi,
    just started using Edge Animate. I have some experience with Flash and After Effect so the layout is pretty familiar to me. I have no background in coding so I am very happy that it generates codes for me.
    My goal is to make a simple html5 site with links / embedded videos to my contents (500 and vimeo). I copied some codes used for Youtube embedding, sub'd the url with vimeo url, and it worked fine. I used a "play video" button on the main page to trigger loading the video page (see my code below).
    It worked great the first time I clicked the button and went to the video page. However, upon returning to the main page, and click the "play video" button again, a duplicate copy of the video is loaded right below the video loaded upon first click. This occurs for as many times as I click the play video button.
    Anyone knows how to fix this?
    Thanks
    Pako
    sym.play("VideoPage");
    var youtubevid = $("<iframe/>");
    sym.$("vcontainer").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','500');
    youtubevid.attr('height','375');
    youtubevid.attr('src','vimeo code');
    youtubevid.attr('frameborder','0');      
    youtubevid.attr('allowfullscreen','0');  

    Adjust the line
         sym.$("vcontainer").append(youtubevid);
    to this
        sym.$("vcontainer").empty().append(youtubevid);
    The addition of the empty() method is to make sure it clears out the container on successive clicks.
    hth
    Darrell

  • Use of BPM Sub-Process

    Hello Experts,
    I'm beginner and I wanna know when we will go for BPM sub process.
    I know there are two types of process(embedded and reference), but I wanna know when we will go for embedded sub process and for reference sub process.
    If possible please share some examples for both the process.
    Thanks in advance.
    Regards,
    Sriram

    You can use embedded sub-process in BPM when the child process (sub-process) is dependent on the parent process. By this it means that the sub-process cannot execute by itself.
    An embedded sub-process cannot have start and end events, although it can have other sub-set of events like timer, escalation and boundary events.
    You can use a referenced sub-process when you want to re-use an existing process. A referenced process is an independent process, which can exist of its own. If you want to use that existing process in your BPM Process then you can call it using referenced sub-process. Also make note that your main process will wait till the referenced sub-process completes its flow.
    Also if you feel that some process can be re-used by others then you can make it as a separate process and use it in the main process using referenced sub-process. This way others can also re-use the sub-process.

  • How to model 2 indices made up of similar parameters to allow drill through?

    Hi,
    I am creating a dashboard which will show two indices of performance.  The first index (call it index A) is made up of parameters 1, 2 and 3. The second index (call it index B) is made up of parameters 2,3 and 4. When the user explores index A I want
    to be able to show the performance of each of the sub parameters, similarly with index B.
    my fact table has the test results of sampling the parameters at the parameter grain so:
    paramter , result
    1, 1
    2, 0
    3, 1
    4, 0
    in this case my dashboard will show the pass rate of index A as 66.7% and the pass rate of index B as 33.3%. If these are interrogated I should get details below this for each relevant parameter. 
    I could do this by using a bridge table between my fact and dimension table, bu I think there might be a neater way in SSAS... I'm using sql server 2012 analysis services.
    Thanks for any helpful suggestions!

    Hi Peego,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Safari Crash When Microsoft Scrollwheel Used Over Quicktime Movie

    Lets say I have a Quicktime Movie displayed in a web page opened in Safari. If I put the cursor over the movie and scroll up and down with the scroll wheel, the movie will go into scrub mode briefly before completely crashing the system. The computer will not respond to mouse clicks or keyboard input. I have to ssh into the machine and issue a 'sudo reboot' to recover (not really a recover though). I have the most current firmware and system updates. The problem is reproducible with a fresh user account, as well as with a clean system install.
    • I tried a different Microsoft Mouse that was of the same model and it did the same thing.
    • I just tested a Kensington StudioMouse, and the problem doesn't exist.
    • I also tried the Microsoft mouse on another MacBook and it did not exhibit the same problem.
    Anyone have any insight to what might be going on?

    New information: I guess the mouse was a Red Herring, as the problem is now happening with any type of mouse, as well as the trackpad. So, scratch that information. Actually, whenever a page with Quicktime embedded is displayed, it crashes. Same with opening movies in Quicktime Player. Something is fundamentally wrong here...
    Yes, it happens in a test accout as well. I even went to the trouble of zeroing the drive, and reinstalling a fresh copy of the OS. I tested pre updates, and post updates, and it is reproducable across all instances. This was all done in front of a Genius at the Apple Store.
    The problem is, Safari doesn't "crash", so no crash report is generated. The whole UI just locks up. I can move the mouse around, but it does not react to clicking or keyboard input. I can SSH into the box, and when I run "top", I don't see anything pegging the CPU.
    Firefox work perfectly displaying Quicktime Movies. Also, if I set Safari to run in Rosetta, I experience no problems. It has something to do with Safari and the Intel Quicktime Plugins.
    This is all too baffling...

Maybe you are looking for

  • Report painter documentation

    Hi Friends, Could anybody pls help me with documentation on Report painter. It would be great if you can send it on my mail ID [email protected] With Best regards, ravisa

  • SMQ2 Queue blockedu0085

    Hi All, I am having problem with my Queues in XI. For example 10 messages are passing thru my XI system. In the 2nd one gets fails. Remaining 8 messages will be in Queue. We can see in SMQ2 transaction and manually we have to clear the queue in this

  • List UIBB table settings access

    Is there a way to access the saved variants programatically and apply them depending on the field catalog? We use the same view to display different tables and the user should be able to use different table layouts for different tables. Right now if

  • Search Error in Compiled WebHelp

    I am using RoboHelp X5.02. When the WebHelp system is placed on the web server, and a user attempts to use the search feature, the results only say "Searching..." and a message appears in the status bar: "Error on page." For at least two years the se

  • Search option set

    Folks, I am able to restrict my search to a folder or index by adding SearchPluginName=caeSearchAll to "KM Search Parameters" property of the tool area iview. But I cannot get the same to work with KM Search iview. I create a new ivew by selecting th