PLEASE, ANYONE COULD HELP ME WITH THIS !!!

PLEASE, ANYONE COULD HELP ME WITH THIS !!!

hi, i was facing this problem from past few days...solution... WE JUST HAVE TO USE A USB 2.0 HUB... this solved my problem....E1713 is not able to connect to usb 3.0 as it does with 2.0.

Similar Messages

  • Anyone could help me with this report. ?

    Hi to all, anyone could help me with this report ?
    I have this one:
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal)  as Total
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND  T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND  T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    But now I want to introduce this sentence in:
    Select I.ItemCode,I.ItemName,
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=1),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=2),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=3),
    (select price from ITM1 where ItemCode=I.ItemCode and PriceList=4)
    From OITM I
    Could you help me ?
    Many thanks.

    Please try this one:
    SELECT 'Factura',T0.ItemCode, T0.Dscription, SUM(Quantity) as Cantidad, Sum(LineTotal) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4'
    FROM INV1 T0 INNER JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]'))
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    UNION
    SELECT 'Abono',T0.ItemCode, T0.Dscription, SUM(Quantity * -1 ) as Cantidad, Sum(LineTotal * - 1) as Total,
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=1) 'Price List 1',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=2) 'Price List 2',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=3) 'Price List 3',
    (select price from ITM1 where ItemCode=T0.ItemCode and PriceList=4) 'Price List 4'
    FROM RIN1 T0 INNER JOIN ORiN T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN OCRD T2 ON T1.CardCode = T2.CardCode
    INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE ((T1.CardCode >= '[%1]' AND T1.CardCode <= '[%2]') )
    AND T1.DocDueDate >= '[%4]' AND T1.DocDueDate <= '[%5]'
    AND T3.SlpName >= '[%6]' AND T3.SlpName <= '[%7]'
    GROUP BY T0.ItemCode, T0.Dscription
    Thanks,
    Gordon

  • Any one could help me with this soap client program?

    Any one could help me with this soap client program?
    Below is the request format my partner is expecting to see:
    POST /Service.asmx HTTP/1.1
    Host: 192.168.1.1
    Content-Type: text/xml; charset=utf-8
    Content-Length: length
    SOAPAction: "https://api.abcdefg.com/GetList"
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body>
              <GetList xmlns="https://api.abcdefg.com/">
                   <username>string</username>
                   <password>string</password>
              </GetList>
         </soap:Body>
    </soap:Envelope>The java client I wrote is blow:
    import javax.xml.soap.*;
    import java.util.Iterator;
    import java.net.URL;
    import java.io.*;
    public class Client {
        public static void main(String [] args) {
            try {
                SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
                SOAPConnection connection = soapConnectionFactory.createConnection();
                SOAPFactory soapFactory = SOAPFactory.newInstance();
                MessageFactory factory = MessageFactory.newInstance();
                SOAPMessage message = factory.createMessage();
             // addd SOAPAction;
             MimeHeaders hd = message.getMimeHeaders();
             hd.addHeader("SOAPAction", "https://api.abcdefg.com/GetList");
                // get env and body;
                SOAPPart soapPart = message.getSOAPPart();
                SOAPEnvelope envelope = soapPart.getEnvelope();
             SOAPBody body = envelope.getBody();
                Name bodyName = soapFactory.createName("GetList", "", "https://api.abcdefg.com/");
                SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
                //Constructing the body for the request;
             SOAPElement username = bodyElement.addChildElement("username");
             username.addTextNode("1234567");
             SOAPElement password = bodyElement.addChildElement("password");
             password.addTextNode("7654321");
                System.out.print("\nPrinting the message that is being sent: \n\n");
                message.writeTo(System.out);
                System.out.println("\n\n");
                URL endpoint = new URL ("https://api.abcdefg.com/Service.asmx");
                SOAPMessage response = connection.call(message, endpoint);
                connection.close();
                response.writeTo(System.out);
            }catch (Exception e) {
                 System.err.println("ERROR: ******* " + e.toString());
    }The response my partner's server returned is:
    <faultstring>Server did not recognize the value of HTTP Header SOAPAction:. </faultstring>I used similar code to access the web services provides via tomcat, it works fine...however, for this .NET services it does not work.
    By the way, I also have another version of the clirnt, using JDOM to construct a XML request and wrap with axis message. I got the same error message as above.
    Can anyone point out something for me?
    Any kind of comments will be appreciated!!
    Edited by: Nickolas.Chen on May 6, 2008 7:20 PM

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    i just buy a imac 27inch when after intalling everthing for windows 7 and all the drivers i need and goes to the restard part my imac just goes to a black screen with a blinking cursel and it just wont proceed anyone can help me with this?

    Support articles for things like this would be here:
    http://www.apple.com/support/bootcamp

  • Hello, I have accidentially deleted files in root folder of my iPad(1). Now iPad is dead completely. I would really appreciate if anyone could help me fix this. Thanks in advance.

    Hello,
    I have accidentially deleted files in root folder of my iPad(1). Now iPad is dead completely. I would really appreciate if anyone could help me fix this.
    Thanks in advance.

    Support for jailbroken devices cannot be given here. Go to the website that helped you get root access in the first place.

  • Hi, I was wondering if anyone can help me because I cant find my external Hardrive on My Macbook Air running OSX Mavericks. If anyone could help me solve this it would be highly appreciated Thanks

    Hi, I was wondering if anyone can help me because I cant find my external Hardrive on My Macbook Air running OSX Mavericks. If anyone could help me solve this it would be highly appreciated Thanks

    Click once on the Desktop to switch to the Finder.
    Command and , (comma) keys to open its preferences.
    General tab. Make sure the show hard and external disks is checked.

  • TS1538 Im having trouble connecting my ipod touch to itunes, i have the device plugged in but its not been recognized on itunes! i have plugged my iphone in and that has been recognized but not the ipod and i was wondering if anyone could help me sort thi

    i have recently purchased an ipod touch 5th generation ipod for my girlfriends daughters! im trying to sync some music onto the device but it is not been recognized on itunes. i have the device plugged in but i cant find the device on itunes! I have plugged my phone in to check if its the cable but the cable is fine as my iphone synced up perfectly! wondering if anyone could help me out??

    Hello there, dtumman.
    It seems that for the issue you are describing you were referred to us from the very article that provides the troubleshooting steps to help resolve your issue:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Keep in mind:
    Follow these steps, testing to see if the issue is resolved after each section.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Please can someone help me with this problem?

    I have been having major issues concerning all available web browsers for OS X. Since the Security Update 2006-003, ALL browsers crash immediately when trying to log into Yahoo! or Hotmail. Safari is holding out so far as for me to be able to make this post. FireFox and the rest crash almost the instant you open the application. I have tried everything possible that I know. I have never had a problem with any update prior to now. I have done permissions, emptied caches, ran OnyX, reapplied 10.4.7, ect. I have archived and installed 3 times now just so I could get back to 10.4.6 prior to the 2006-003 Security Update which contains an updated Flash Player. I really think that is the problem. I am considering wiping the hard drive and starting over from scratch. JOY! Another 8 hours down the tube by the time I get all my software put back on and that is only if that works. I am really at my end on this one. Has been a thorn in my side since the day the update was released. Been trying to correct it since then. Surely SOMEONE has a clue to what this could be. It is affecting all browsers, so it is not Safari specific. Please, I hope somebody can shed a small ray of light on this deal before I start from zero.

    Here's the crash report I am getting. It is different than what I have been getting over the past almost 4 weeks. I have reset PRAM, everything. I am so fed up and frustrated right now with this garbage that I can barely stand it. This has been going on for almost a month. Words are passing my lips that I usually don't say. I really hope someone can help on this.
    2006-07-01 21:44:25 -0500
    EXCBADACCESS (0x0001)
    KERNPROTECTIONFAILURE (0x0002) at 0x06bc9797
    Thread 0 Crashed:
    0 Flash_EnforceLocalSecurity + 590996
    1 Flash_EnforceLocalSecurity + 590952
    2 Flash_EnforceLocalSecurity + 605920
    3 Flash_EnforceLocalSecurity + 600540
    4 Flash_EnforceLocalSecurity + 933200
    5 nativeShockwaveFlashTCallFrame + 80128
    6 Flash_EnforceLocalSecurity + 1341000
    7 Flash_EnforceLocalSecurity + 1339296
    8 Flash_EnforceLocalSecurity + 1338716
    9 Flash_EnforceLocalSecurity + 1339196Date/Time: 2006-07-01 21:44:25.973 -0500
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [69]
    Version: 2.0.3 (417.9.2)
    Build Version: 7
    Project Name: WebBrowser
    Source Version: 4170902
    PID: 222
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x06bc9797
    Thread 0 Crashed:
    0 ...romedia.Flash Player.plugin 0x0681b350 Flash_EnforceLocalSecurity + 590996
    1 ...romedia.Flash Player.plugin 0x0681b324 Flash_EnforceLocalSecurity + 590952
    2 ...romedia.Flash Player.plugin 0x0681ed9c Flash_EnforceLocalSecurity + 605920
    3 ...romedia.Flash Player.plugin 0x0681d898 Flash_EnforceLocalSecurity + 600540
    4 ...romedia.Flash Player.plugin 0x0686ec0c Flash_EnforceLocalSecurity + 933200
    5 ...romedia.Flash Player.plugin 0x06900af0 nativeShockwaveFlashTCallFrame + 80128
    6 ...romedia.Flash Player.plugin 0x068d2504 Flash_EnforceLocalSecurity + 1341000
    7 ...romedia.Flash Player.plugin 0x068d1e5c Flash_EnforceLocalSecurity + 1339296
    8 ...romedia.Flash Player.plugin 0x068d1c18 Flash_EnforceLocalSecurity + 1338716
    9 ...romedia.Flash Player.plugin 0x068d1df8 Flash_EnforceLocalSecurity + 1339196
    10 ...romedia.Flash Player.plugin 0x068d3ebc Flash_EnforceLocalSecurity + 1347584
    11 ...romedia.Flash Player.plugin 0x068d3e68 Flash_EnforceLocalSecurity + 1347500
    12 ...romedia.Flash Player.plugin 0x068d4080 Flash_EnforceLocalSecurity + 1348036
    13 ...romedia.Flash Player.plugin 0x068e90d4 Flash_EnforceLocalSecurity + 1434136
    14 ...romedia.Flash Player.plugin 0x068ea1d4 Flash_EnforceLocalSecurity + 1438488
    15 ...romedia.Flash Player.plugin 0x068e8b2c Flash_EnforceLocalSecurity + 1432688
    16 ...romedia.Flash Player.plugin 0x068e8960 Flash_EnforceLocalSecurity + 1432228
    17 ...romedia.Flash Player.plugin 0x068e7f64 Flash_EnforceLocalSecurity + 1429672
    18 ...romedia.Flash Player.plugin 0x0687a414 Flash_EnforceLocalSecurity + 980312
    19 ...romedia.Flash Player.plugin 0x068ea5c0 Flash_EnforceLocalSecurity + 1439492
    20 ...romedia.Flash Player.plugin 0x0678b180 Flash_EnforceLocalSecurity + 708
    21 ...romedia.Flash Player.plugin 0x06789f0c unusenetscape_pluginPlugin + 2024
    22 com.apple.WebKit 0x9564266c -[WebBaseNetscapePluginView start] + 212
    23 jp.hetima.SafariStand 0x0054d71c -[HTPoseAsWebPluginView start] + 116 (bundle1.s:283)
    24 com.apple.WebKit 0x95642480 -[WebBaseNetscapePluginView viewDidMoveToWindow] + 76
    25 com.apple.AppKit 0x936d5294 -[NSView _setWindow:] + 876
    26 com.apple.AppKit 0x936d5504 -[NSView addSubview:] + 372
    27 com.apple.WebKit 0x9563a594 -[WebHTMLView addSubview:] + 64
    28 com.apple.WebCore 0x958ee5cc QWidget::addToSuperview(NSView*) + 124
    29 com.apple.WebCore 0x958edfd8 khtml::RenderWidget::setQWidget(QWidget*, bool) + 572
    30 com.apple.WebCore 0x958edd1c khtml::RenderPart::setWidget(QWidget*) + 228
    31 com.apple.WebCore 0x958e9a1c KHTMLPart::processObjectRequest(khtml::ChildFrame*, KURL const&, QString const&) + 1732
    32 com.apple.WebCore 0x958e8b30 KHTMLPart::requestObject(khtml::ChildFrame*, KURL const&, KParts::URLArgs const&) + 1964
    33 com.apple.WebCore 0x95937b60 KHTMLPart::requestObject(khtml::RenderPart*, QString const&, QString const&, QStringList const&, QStringList const&) + 876
    34 com.apple.WebCore 0x958e7400 khtml::RenderPartObject::updateWidget() + 2716
    35 com.apple.WebCore 0x959374fc DOM::HTMLObjectElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 132
    36 com.apple.WebCore 0x95894c7c DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    37 com.apple.WebCore 0x95894c7c DOM::ElementImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 608
    38 com.apple.WebCore 0x95850544 DOM::DocumentImpl::recalcStyle(DOM::NodeImpl::StyleChange) + 2492
    39 com.apple.WebCore 0x95890758 DOM::DocumentImpl::updateDocumentsRendering() + 84
    40 com.apple.WebCore 0x9588c5c0 KHTMLPart::executeScript(QString, int, DOM::Node const&, QString const&) + 176
    41 com.apple.WebCore 0x9588c3a4 khtml::HTMLTokenizer::scriptExecution(QString const&, QString, int) + 448
    42 com.apple.WebCore 0x9588bef0 khtml::HTMLTokenizer::scriptHandler() + 1300
    43 com.apple.WebCore 0x95880bbc khtml::HTMLTokenizer::parseSpecial(khtml::TokenizerString&) + 548
    44 com.apple.WebCore 0x9585d198 khtml::HTMLTokenizer::parseTag(khtml::TokenizerString&) + 6700
    45 com.apple.WebCore 0x9585af20 khtml::HTMLTokenizer::write(khtml::TokenizerString const&, bool) + 928
    46 com.apple.WebCore 0x958c2324 khtml::HTMLTokenizer::notifyFinished(khtml::CachedObject*) + 536
    47 com.apple.WebCore 0x958c20d8 khtml::CachedScript::checkNotify() + 92
    48 com.apple.WebCore 0x958c2048 khtml::CachedScript::data(QBuffer&, bool) + 336
    49 com.apple.WebCore 0x95891fc4 khtml::Loader::slotFinished(KIO::Job*, NSData*) + 428
    50 com.apple.WebCore 0x95a0a694 KWQSignal::callWithData(KIO::Job*, NSData*) const + 136
    51 com.apple.WebCore 0x95891db8 -[KWQResourceLoader finishJobAndHandle:] + 80
    52 com.apple.WebKit 0x95632908 -[WebSubresourceClient didFinishLoading] + 72
    53 com.apple.WebKit 0x95631b90 -[WebBaseResourceHandleDelegate connectionDidFinishLoading:] + 48
    54 com.apple.Foundation 0x9296484c -[NSURLConnection(NSURLConnectionInternal) _sendDidFinishLoadingCallback] + 188
    55 com.apple.Foundation 0x92962ab8 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 556
    56 com.apple.Foundation 0x92962810 _sendCallbacks + 156
    57 com.apple.CoreFoundation 0x907dca68 __CFRunLoopDoSources0 + 384
    58 com.apple.CoreFoundation 0x907dbf98 __CFRunLoopRun + 452
    59 com.apple.CoreFoundation 0x907dba18 CFRunLoopRunSpecific + 268
    60 com.apple.HIToolbox 0x931d8980 RunCurrentEventLoopInMode + 264
    61 com.apple.HIToolbox 0x931d8014 ReceiveNextEventCommon + 380
    62 com.apple.HIToolbox 0x931d7e80 BlockUntilNextEventMatchingListInMode + 96
    63 com.apple.AppKit 0x936ba104 _DPSNextEvent + 384
    64 com.apple.AppKit 0x936b9dc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    65 com.apple.Safari 0x00006e74 0x1000 + 24180
    66 com.apple.AppKit 0x936b630c -[NSApplication run] + 472
    67 com.apple.AppKit 0x937a6e68 NSApplicationMain + 452
    68 com.apple.Safari 0x0005cbec 0x1000 + 375788
    69 com.apple.Safari 0x0005ca94 0x1000 + 375444
    Thread 1:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dc114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dba18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92941164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9294109c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x9561c3f0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dc114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dba18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295969c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dc114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dba18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295a7dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f5ec select + 12
    1 com.apple.CoreFoundation 0x907ee9a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x92939300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a48350c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x06a396ac nativeShockwaveFlashTCallFrame + 1361084
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000000681b350 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24024241 xer: 0x0000000020000004 lr: 0x000000000681b32c ctr: 0x0000000090002f40
    r0: 0x0000000000000000 r1: 0x00000000bfffb5d0 r2: 0x0000000006bc9797 r3: 0x00000000ffffc747
    r4: 0x0000000006bcd050 r5: 0x000000005e682a00 r6: 0x0000000080808080 r7: 0x0000000000000000
    r8: 0x0000000000bcd054 r9: 0x0000000006bcd050 r10: 0x0000000000000060 r11: 0x0000000006adc428
    r12: 0x0000000090002f40 r13: 0x0000000000000000 r14: 0x00000000bfffbb88 r15: 0x0000000000000000
    r16: 0x0000000000000010 r17: 0x00000000bfffbb8c r18: 0x000000000681c594 r19: 0x0000000000000000
    r20: 0x00000000bfffba90 r21: 0x0000000000000000 r22: 0x0000000006bd41c0 r23: 0x0000000006c03020
    r24: 0x0000000006c682a8 r25: 0x0000000006bd8180 r26: 0x00000000000001cc r27: 0x0000000006bd41f0
    r28: 0x00000000fffffffe r29: 0x0000000006bcd050 r30: 0x0000000006c03020 r31: 0x0000000006c03058
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.3 (417.9.2) /Applications/Safari.app/Contents/MacOS/Safari
    0x525000 - 0x525fff jp.hetima.SafariStand.loader SafariStand-loader version 1.0.1 (6) /Users/quick/Library/InputManagers/SafariStand/SafariStand-loader.bundle/Conten ts/MacOS/SafariStand-loader
    0x529000 - 0x564fff jp.hetima.SafariStand 2.0b14 (123) /Users/quick/Library/InputManagers/SafariStand/SafariStand.bundle/Contents/MacO S/SafariStand
    0x58f000 - 0x591fff com.unsanity.menuextraenabler 1.0.3 /Users/quick/Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0x59b000 - 0x59cfff com.unsanity.snt Menu Extra Enabler version 0.0.1d1 (1.1) /Users/quick/Library/InputManagers/SafariNoTimeout/SafariNoTimeout.bundle/Conte nts/MacOS/SafariNoTimeout
    0x755000 - 0x75569c Flash Player Enabler PEF binary: Flash Player Enabler
    0x5297000 - 0x5299fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x572c000 - 0x577b3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x5d3f160 - 0x5d3f212 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x5d40010 - 0x5d400e3 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x5d401b0 - 0x5d4026b CFMPriv_Help PEF binary: CFMPriv_Help
    0x5d40270 - 0x5d4033a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x5d40620 - 0x5d406f0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x5d42700 - 0x5d42777 CFMPriv_System PEF binary: CFMPriv_System
    0x5d454c0 - 0x5d45596 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x5d45600 - 0x5d456d3 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x5d45750 - 0x5d45835 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x5d458a0 - 0x5d45976 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x5d45a40 - 0x5d45afe CFMPriv_Print PEF binary: CFMPriv_Print
    0x5d45b10 - 0x5d45bdd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x5d45c50 - 0x5d45d32 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x5d49930 - 0x5d49a03 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x5d49a70 - 0x5d49b43 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x5d49e30 - 0x5d49ef2 CFMPriv_AE PEF binary: CFMPriv_AE
    0x5d49f00 - 0x5d49fc5 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x5d4a270 - 0x5d4a347 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x5d4a3c0 - 0x5d4a4a3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x5d4a870 - 0x5d4a94a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x5d4a950 - 0x5d4aa30 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x5d4aab0 - 0x5d4ab96 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x5d4ae40 - 0x5d4af17 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x5d4af20 - 0x5d4afe2 CFMPriv_QD PEF binary: CFMPriv_QD
    0x5d4b360 - 0x5d4b449 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x6787000 - 0x6a93fff com.macromedia.Flash Player.plugin 9.0.0 (1.0.1f16) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x32000000 - 0x32042fff isao.sonobe.OgreKit ??? (2.1.0) /Users/quick/Library/InputManagers/SafariStand/SafariStand.bundle/Contents/Reso urces/OgreKit.framework/OgreKit
    0x8fe00000 - 0x8fe51fff dyld 44.4 /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.1 (???) /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.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.4 (368.25) /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.3 (671.2) /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 4.0 (129.13) /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 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d3fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d0000 - 0x913d9fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e0000 - 0x91407fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9141a000 - 0x91425fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9142a000 - 0x91432fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91436000 - 0x914b1fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914ee000 - 0x914eefff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f0000 - 0x91528fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91543000 - 0x91610fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91665000 - 0x916f6fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9173d000 - 0x917f4fff com.apple.QD 3.8.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91831000 - 0x9188ffff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918be000 - 0x918dffff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f3000 - 0x91918fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9192b000 - 0x9196dfff com.apple.LaunchServices 168.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91989000 - 0x9199dfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ab000 - 0x919eafff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a00000 - 0x91ac8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b16000 - 0x91b2bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b30000 - 0x91b4dfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b52000 - 0x91bc1fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bd8000 - 0x91bdcfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bde000 - 0x91c25fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c2a000 - 0x91c67fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c6e000 - 0x91c87fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c8c000 - 0x91c8ffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c91000 - 0x91c91fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c93000 - 0x91d73fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7b000 - 0x91d9afff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e06000 - 0x91e74fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e7f000 - 0x91f13fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f2d000 - 0x924b5fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924e8000 - 0x92813fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92843000 - 0x928cbfff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9290c000 - 0x92b37fff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c55000 - 0x92d33fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d53000 - 0x92e41fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e53000 - 0x92e71fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e7c000 - 0x92ed6fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ef4000 - 0x92ef4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ef6000 - 0x92f0afff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f22000 - 0x92f32fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f3e000 - 0x92f53fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f65000 - 0x92fecfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93000000 - 0x9300bfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93015000 - 0x93042fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9305c000 - 0x9306bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93077000 - 0x930ddfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9310e000 - 0x9315dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9318b000 - 0x931a8fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ba000 - 0x931c7fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931d0000 - 0x934ddfff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9362c000 - 0x93638fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9363d000 - 0x9365dfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936b0000 - 0x936b0fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936b2000 - 0x93ce5fff com.apple.AppKit 6.4.4 (824.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94072000 - 0x940e2fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9411b000 - 0x941defff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94230000 - 0x94230fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94232000 - 0x943e6fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94439000 - 0x94476fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9447e000 - 0x944cefff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9455e000 - 0x94596fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945d9000 - 0x945f5fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94609000 - 0x9464dfff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94671000 - 0x94680fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94688000 - 0x94695fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946db000 - 0x946f4fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x946fb000 - 0x949affff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a73000 - 0x94ae4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b57000 - 0x94b77fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c7f000 - 0x94dadfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e3f000 - 0x94e4efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e56000 - 0x94e83fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e8a000 - 0x94e9afff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94e9e000 - 0x94ecdfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94edd000 - 0x94efafff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9561a000 - 0x956a6fff com.apple.WebKit 418 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95701000 - 0x957f6fff com.apple.JavaScriptCore 417.11 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95832000 - 0x95b3cfff com.apple.WebCore 417.24 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95cc4000 - 0x95cedfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9772e000 - 0x9773bfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9a480000 - 0x9a4b6fff com.apple.Syndication 1.0.5 (52) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a4d3000 - 0x9a4e5fff com.apple.SyndicationUI 1.0.5 (52) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerBook3,5, BootROM 4.5.3f2, 1 processors, PowerPC G4 (3.3), 1 GHz, 1 GB
    Graphics: ATY,RV250M9, ATY,RV250M9, AGP, 64 MB
    Memory Module: SODIMM0/J16TOP, 512 MB, SDRAM, PC133U-333
    Memory Module: SODIMM1/J16BOTTOM, 512 MB, SDRAM, PC133U-333
    AirPort: AirPort, 9.52
    Modem: MicroDash, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Bluetooth: Version 1.7.3f4, 2 service, 1 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: TXN,PCI1410-02, cardbus, PC Card
    Parallel ATA Device: TOSHIBA MK6021GAS, 55.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-815,
    USB Device: USB Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: USB Receiver, Logitech, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: LaCie DVDRW Firewire, LaCie, Up to 400 Mb/sec
    FireWire Device: LaCie d2 Extreme LUN 0, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: LaCie FW800 Big Disk drive LUN 0, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

  • Everyone please read and help me with this...

    ok so about a year ago i installed iTunes on my computer and had a couple hundred songs downloaded. about half of them were bought out of iTunes. I had them all onto my iPod nano. Then a few weeks later my computer crashed. The hard drive "died" as you can call it. I have recently bought a new computer with Windows XP and we will soon be getting an upgrade to Vista.
    I have two questions...
    1). does anyone remember about the online live support we used to get from live apple representatives? it was instant messaging with the representatvies and they would help you with your problems. Does anyone know if that still exists? and if it does could you please give me a link to that site?
    2). Is there any possible way for me to take the songs i have on my iPod and put them into my new library?
    please everyone i need all the help i can get...ive lately been playing all my songs from a speaker system i bought that would connect with my iPod...i would like them to be on my computer...
      Windows XP  
      Windows XP  
      Windows XP  

    Copying from iPod to Computer threads...
    http://discussions.apple.com/thread.jspa?threadID=868833&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=893334&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    Also these useful internet articles...
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/help/2005/01/2waystreet/
    iPod: Frequently Asked Questions
    http://docs.info.apple.com/article.html?artnum=60920
    Patrick

  • Anyone could help m with caracters?

    Hello people!!
    can anyone help me with caracters?
    Well, I'm using jsf to get the data from the
    mysql database and caracters like "�"
    , "�" and "�" are not shown properly
    in my web page. Does anyone have a solution?
    Thanks!!

    What character encoding are you using?

  • "Your iPhone could not be activated because the activation server is temporarily unavailable." i tried it many times in DFU mode buy it not working .. i tried micro sim cards but it definitely not word :( please anyone can help me fix this problem

    "Your iPhone could not be activated because the activation server is temporarily unavailable." help me please ..

    I have same message. Just tried the update yesterday. Phone NOT jail broke and my SIM card has been init since I bought it. I need my phone and information ASAP. Is backed up on comp but can't get to without phone! During update my laptop shut off. Problem started after I started it back up to finish the process. Why would that make a diff? What to do now???? Help!

  • Hi,after upgrade to OS x mavericks i can't open my windows at BOOTCAMP, anyone can help me with this situation?

    HI after i upgrade to new Os x Mavericks i found that i cant open my WINDOWS in my BOOTCAMP, its always appear asking me to windows running or not well shut down properly message, after i try to go to RUNNING WINDOWS NORMALLY it stil cant open and auto open and running on MAC. anyone please help me. Thank you

    Ok this worked to solve the error.
    Use cmd prompt in windows 7 or 8 and run as admin:
    sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc config mrxsmb20 start= disabled
    No need for all that power shell nonsense as shown elsewhere for windows 8.
    That's it. Also force smb2 disabling on the apple side for good measure.
    With the above I was able to network mavericks and windows 8.1 pro flawlessly. He issues I had before where I could not read video, ISO and audio files (but could open documents and pictures from the windows machine connected to an apple network share folder went away.

  • Unable to Intialize HDV deck - can anyone pls help me with this FCE Issue?

    I have recently moved from a MacBook Pro (circa 2 yrs old) to a new MacBook Pro with the NEW firewire 800 port. I have bought a new firewire cable and my camera does not want to be capture from my Sony A1E.
    I have a MacBook Pro 2.8ghz running on OS X 10.6.2 and have all the updates installed for FCE.
    Every time i try to capture the message comes up "Unable to Intialize HDV deck. Please make sure a deck is connected and try again".
    The System is set up to receive the correct frame rate footage and type of footage (which is: HDV-Apple Intermediate Codec 1080i50. Formats: All formats). I am running on PAL, so 25fps.
    Is there any advice / direction that you could give me at all as I am struggling!
    Any help support would be appreciated!
    Thanks, Martin

    Hi,
    Would you confirm that you are using a 9-pin to 4-pin FW cable to connect to your camcorder and that your camcorder is the only FW device connected to your Mac.
    When you start up FCE with the camera connected to your Mac and already powered on in VTR mode, does FCE 'see' the camera, or do you get a warning message that FCE is "Unable to locate the following external devices ..." ?

  • Hi to everybody, I'm new of the community and I'd like to know if anybody could help me with this issue. I have differente itunes libraries stored in differente hard disks, and I' d like to merge them all in one unique library

    Hi, I' m new of the community and I hope I'm not asking something that has been already discussed. I have different iTunes libraries on different hard disks and I would like to merge them in an unique library - mantaining all the metadata - so that I can use this new one with iTunes Match. Could anybody help me?

    PowerTunes - http://www.fatcatsoftware.com/powertunes/ (commercial software)
    syncOtunes - http://homepage.mac.com/oligrob/syncOtunes/syncOtunes.html
    Alison 1231, your question is not identical to the original poster's so perhaps you could start a new topic with the question since the answers will be different and not apply to the OP's post.

Maybe you are looking for

  • Where can I download Airport Express (11g) Setup Assistant for Windows 7?

    My AEx (11g) has stopped connecting. On my PC, the AEx Setup Assistant  and Utility have disappeared - I need to download these for this old 11g AEx. I run Optus cable <-> Optus modem <-> Linksys wireless modem <-> Windows 7 PC. I use AEx to play iTu

  • Create new oracle database

    I ve installed Oracle 10g Express Edition on mi PC, but I dont know how to create a database, also I m using SQL DEVELOPER, but I dont find any "Create DataBase" option, or I have to do it through sql sentences?? Another question is : where can I get

  • Unable to INSERT record : ERROR

    SR # : 3-2184192641 RMS Version 13.1.3 Form : dealmain.fmb Customer is reporting the following error "FRM:40508-Oracle error:Unable to INSERT record" On looking into detail error the following message is displayed "INSERT INTO deal_threshold( lower_l

  • Love Firefox, butt my browser window that saves my site in dropdown box, and my back errors are all gone?

    my browser window that saves all the sites I go to daily is GONE, and the back errors are gone that let me suf back to my last page, I didnt do anything they were just gone one morning

  • IMac crashes on restart during update to OS X 10.8.5

    I updated my 27" iMac (late 2012) to OS X 10.8.5 from 10.8.4 and during the restart the system crashes with a "Panic.. Kernel trap" message. Here's a screen shot: I managed to start the system holding down CMD-R and chose Restore from Backup to resto