Please please please help me with this bizarre problem!!!

Hi there,
I am not an expert on web design and I am also not a complete newbie. I have built web designs before - and used frames and done it all on dreamweaver - however my target frames aren't working on this website and I'm not sure why???
I have two frames on my index page - one left and one right - the left is the menu and the right is the content of which ever button is selected from the menu in the left frame. However the targets don't work - when clicking on the buttons (links) it makes a new window pop up.
I have named the frames and saved the frame set as index.html.
The coding says for the shop button:
<td><a href="Shop.html" target="_right" onmouseover="MM_swapImage('Image4','','Images/Shop Button RO.jpg',1)" onmouseout="MM_swapImgRestore()"><img src="Images/Shop Button.jpg" name="Image4" width="163" height="56" border="0" id="Image4" /></a></td>
I have tried renaming the frames - tried a different computer - tried just about everything I can think of - it has always worked for me before but since building this site it doesn't! Have I missed something????
Please please help me - it's been driving me up the wall for 2 weeks!!!
Thanks in advance for yourhelp.
Pink
xxx

I haven't used frames since the late 1990s, so can't be of much help  :-)
Here's a tutorial that may help:
http://www.dwfaq.com/tutorials/Frames/framesets1.asp
Page 4 shows how to link pages correctly
Is there a specific reason why you are still using frames... they are very old hat and hardly used anymore these days  :-)
Here's the reason why frames are evil:
http://apptools.com/rants/framesevil.php
Nadia
Adobe® Community Expert : Dreamweaver
Unique CSS Templates | Tutorials | SEO Articles
http://www.DreamweaverResources.com
Web Design & Development
http://www.perrelink.com.au
http://twitter.com/nadiap

Similar Messages

  • 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.

  • Please help me with this strange problem again!

    Hi gurus,
    I can't, for the life of me, figure out why this does not work in a procedure but works in an anonimous block.
    The XML is like this (part of it),
    <CaseNotification messageProducedDateTime="2005-07-20T13:58:11-05:00" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                   <NotificationAdminHeader caseNumberKey="87CR0569" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                        <CaseCountyIdentifier>87</CaseCountyIdentifier>
                        <CaseLocationText>Yellow Medicine County</CaseLocationText>
                        <BaseCaseTypeText>Adult</BaseCaseTypeText>
                        <CaseCategoryText>Criminal</CaseCategoryText>
                        <PartyIdentifier partyKey="854">
                             <PartyCaseAssociationText>Jurisdiction</PartyCaseAssociationText>
                        </PartyIdentifier>
                        <PartyIdentifier partyKey="123637">
                             <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                        </PartyIdentifier>
                   </NotificationAdminHeader>
                   <InterimConditionsNotification>
                        <TriggeredDateTime>2005-07-20T13:57:53-05:00</TriggeredDateTime>
                        <NotificationEvent>InterimConditionsDeleted</NotificationEvent>
                        <InterimConditionsOrder orderEventKey="1760110">
                             <OrderDate>2005-07-20</OrderDate>
                             <OrderedBy judgeKey="00001J">
                                  <JudgeName>
                                       <PersonGivenName>John</PersonGivenName>
                                       <PersonMiddleName>P.</PersonMiddleName>
                                       <PersonSurName>Smith</PersonSurName>
                                       <PersonFullName>Smith, John P.</PersonFullName>
                                  </JudgeName>
                                  <JudicialAgencyIdentifier>MN011015J</JudicialAgencyIdentifier>
                             </OrderedBy>
                             <CourtCaseNumber documentVersion="1" effectiveDateTime="2005-06-06T00:00:00-06:00">
                                  <MNCISCaseNumber>
                                       <CountyNumber>87</CountyNumber>
                                       <CaseType>CR</CaseType>
                                       <YearFiled>05</YearFiled>
                                       <SequenceNumber>69</SequenceNumber>
                                  </MNCISCaseNumber>
                                  <CaseNumberIdentifier caseNumberKey="87CR0569">87-CR-05-69</CaseNumberIdentifier>
                             </CourtCaseNumber>
                             <ConditionSubject>
                                  <Party partyKey="123637" currentNameIndicator="true">
                                       <StandardName>
                                            <PersonGivenName>Clanry</PersonGivenName>
                                            <PersonSurName>Ogavitz</PersonSurName>
                                            <PersonFullName>Ogavitz, Clanry</PersonFullName>
                                       </StandardName>
                                       <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                                  </Party>
                             </ConditionSubject>
                             <InterimConditions>
                                  <InterimConditionText>Anger management</InterimConditionText>
                                  <InterimConditionAmount>0</InterimConditionAmount>
                             </InterimConditions>
                             <InterimConditions>
                                  <InterimConditionText>Attend AA (Alcoholics Anonymous)</InterimConditionText>
                                  <InterimConditionAmount>5000</InterimConditionAmount>
                             </InterimConditions>
                        </InterimConditionsOrder>
                   </InterimConditionsNotification>
              </CaseNotification>
    The code is basically the same except that in the procedure the passing clause gets a differnt param, which is the passed in param from the procedure.
    xmltable
                             xmlnamespaces
                             ---     'http://schemas.xmlsoap.org/soap/envelope/' as "saop",
                                  'http://www.courts.state.mn.us/CourtXML/2.0.0' as "ic"
                             'for $ics in //ic:CaseNotification/ic:InterimConditionsNotification/ic:InterimConditionsOrder[@orderEventKey = $val/oeKey]/ic:InterimConditions
                             return
                             <ic:ICS>                    
                                  <ic:ICSText>{$ics/ic:InterimConditionText}</ic:ICSText>
                                  <ic:ICSAmount>{$ics/ic:InterimConditionAmount}</ic:ICSAmount>
                             </ic:ICS>'
                             passing p_XMLDoc, xmlelement("oeKey", v_OEKey) as "val"
                             columns               
                             ICSText          varchar2(100)      path '/ic:ICS/ic:ICSText',
                             ICSAmount     number           path '/ic:ICS/ic:ICSAmount'
    The strange thing is the procedure gets the ic:ICSText with the namespace value, which is http://www.courts.state.mn.us/CourtXML/2.0.0, so the finaly result is
    the whole thing: <InterimConditionText xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">Anger management</InterimConditionText>.
    I get the correct values when testing with the anonimous code!
    What did I do wrong? Please help!
    Thank you.
    Ben

    Hi gurus,
    OK, I did another test. I ran the same PL/SQL anonymous block that gets the correct element value in 10.2.0.3.0 and it gets the same wrong value: the element name plus the namespace value and the data itself. It gets the correct element value in 10.2.0.1.0 (my local database).
    Could anyone help me with this?
    Thanks!
    Ben

  • I have an ipadII(WiFi), and I've got a problem with an application "HayDay",after the last update I cant load the game,it says connecting then suddenly it comes back to the homescreen of my ipad,please someone,anyone,help me with this problem.

    I have a problem with loading the application by the name of "hayday".after the latest update,in the middle of connecting to the servers,it crashes and comes bck to the home screen of my ipad.
    I have and ipad II wifi, ios 4.3, and an ipod touch 4th generation,and i have the same problem on both of them.
    Please someone,anyone help me with it.

    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Could Anybody help me with this Mail problem? (Screenshot attached)

    Hello dudes,
    Is there anychance anyone could help me out with this slight problem? Everytime i try to take my accounts online i get 'Connection Failed' This only started happening yesterday and i just can't seem to get it fixed.
    Thank you!
    Jamie Wright

    Hi Linc,
    I have tried doing that with no luck, I just tried receiving mail through another account on my system and for some reason that seems to be fine. It looks like it is just my Admin account that cannot receive mail.
    Anything you could help me with?
    Thank you.

  • 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

  • Someone please help me with this sync problem

    Ok here we go. I have had my laptop for a little over two years. Ever since i got my iphone 4 last summer it has been such a pain. I have backed up my phone and synced it multiple times on my computer. Every so often though i plug my iphone into the computer and it recognizes it in itunes but asks me to either set as new iphone or restore from back up. I have tried to restore from back up and it says that the back up has failed even though there is obviously a back up on the computer. I have set as new and it works fine for a day or two and then i got to resync and same problem. I have completly unistalled itunes and all its files and redownloaded it and it worked for a week or so and then same problem. I have also had my computer reset to factory settings (for an unrelated issue) and it worked the first time but then stopped working. I have tried everything i can imagine and am at the end of my rope with this phone. im so ready to call it quits and get something different cause this is so frustrating.

    How do you do what? Plug the iPhone into a USB port directly on your computer, or disconnect other USB devices? To disconnect a USB device unplug it from the computer. If it is a disk drive eject it first using the Eject icon in the System Tray. To plug the iPhone into a USB port directly on the computer insert the USB end of the sync cable into a USB port on the computer.
    If you are using all of the ports on your computer get a hub and plug low power devices into the hub (e.g., keyboard, mouse). Or get a hub with its own power supply and plug your high power devices (disk drives, DVD drive) into it.

  • Help me with this spastic problem on my 5610

    I have not used a nokia phone for the past 5 years.
    Recently I got a Nokia 5610 becasue I need something small for work and can use it for music.
    But I have this irritating problem - If I store a contact (let's say 91234567 under the name Spastic) without the +65 prefix, the sms will not show the associated name. IE, the sms will show its from +6591234567 and not Spastic.
    However, if I store the number as +6591234567, the sms will show the associatd contact name. But when 91234567 calls me, the phone will just show 91234567 and not the name
    Its driving me nuts. Help!!
    How do I get the phone to display the name in both sms and call display?
    Thanks

    I bet you have to live with that. The problem is, that your provider is sending you the Caller ID in a different way then the sender of text messages (as you might know +65 is the international code). One thing you could try is calling your provider.
    Sometimes the solution is closer than you think... sometimes farther

  • Unable to connect huawei E1731 mobile modem on my 2012 mac book air running lion 10.7.4....please could anyone help me with this?.....I am using an airtel 3g connection and am from india..

    I jus puchased an airtel 3g connection in india and the software that comes bundled with the huawei E1731 modem only supports upto snow leopard. I downloaded various drivers and installed them succesfully but the modem does not get detected. i am on lion 10.7.4 and a 2012 macbook air....how do i do this....please help...

    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.

  • Please Help me with this flash problem, my life is depending on this!

    If you visit www.fishtv.tv there is a flash document on the
    left side, it is a box with pictures scrolling. I NEED to know how
    what to open it with, and how to add a picture into it. Please if
    you have any information how to accomplish this task reply to this
    thread, OR send me an email at [email protected] It will be
    very much appreciated, thanks.

    SWF is to FLA the same way JPG is to PSD. SWF is the compiled
    (think flattened) format. Like urami
    once said, you can't get the egg back after making the
    omelette. There are SWF decompilers (search
    google or this forum) out there but most will (if not all)
    will merely allow you to obtain the
    "guts" of an swf - you will not really end up with the
    original FLA again. MUCH easier to try and
    locate the FLA or rebuild the site. Surely there's a back-up
    of the source somewhere?
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    willager wrote:
    > i have the swf file, and i open it in flash and it shows
    the final product, I dont know how to get it back to its orginal
    file.

  • Please help me with this ipad problem

    it like some kind of ios error it like it turned in to ipod,iphone ios
    and i cant restore when i try it said an error occured 3194 or 1601 or 1600
    and i try to restore in my ipad it didnt finish yet it is in progress for 1 day now!!!!!!
    and my device is jailbreak but i didnt use installous i only use it for like winterboard and gravipad or barrel i buy all the app
    PLEASE PLEASE HELP ME!!!!!!!!!!

    I'm not good at English (i am thai) and what is op mean and yes you are right this is my other account.
    Next time I will do better แบบทำเนี่ยนเนี่ยนอะไอ้เฟยเรามาขอให้ช่วยอแปไรเราก็ซื้อเองหมดอยากสนับสนุน apple ไม่เคยไช้เลยไอ้app cake ไรนั่นเราใช้แต่โปรแกรมเสริมเช่นwinter board barrel folder lock ไรเงี้ยเพราะ apple ไม่สามารถทำได

  • Please help me with this mac problem

    I bought a mac pro without any applications installer (iPhoto, iMovie etc.) Is it really like that? Or there should be one? Btw, i bought OS X v10.

    deggie wrote:
    Did you purchase this computer from an authorized Apple dealer (or Apple Store) new or did you buy it from an individual?
    Yeah that is my question also.
    If bought Used from a Private person then you need to Register it with Apple on the Apple Website.
    You should also check that it is a Late 2011 model as if it is an early 2011 model it may of originally came with Snow Leopard Pre-Installed and that means that is should not of been sold with Lion installed. As if it is a early 2011 model that did come with SL installed then Lion is regisrted to the original buyer of Lion and not to the serial # of that Mac.

  • HT6065 I have a problem with my Mac book pro, my external monitor is not working and i need it to do my business. Please can someone help me with this.  I am running windows 8 on parallels.

    Since I have up dated my Macbook pro, my external monitor does not work. Who can help me

    It was working untill i did the update

  • Please GOD somebody help me with this session

    I went to a Track to use an EQ and now my whole session will not display only the EQ window I was using!! has anyone ever had this issue??

    hit cmd-1.

Maybe you are looking for

  • Mass Creation of Purchasing Info Records

    Hi all, we want to change the vendor for a certain amount of articles (old vendor e.g. 102, new vendor e.g. 768). To order the articles (maybe approx. 1000) by the new vendor, we need to create new Purchasing Info Record (for vendor 768) for every ar

  • Mac Mini supporting 2 x 30" Cinema Display. How do I?

    I currently have 2 x 30 inch Apple Cinema Displays. I am considering saving space and getting a new mac-mini. I know the displayport/thunderbolt port can power 1 x 30 inch display, but how about dual screens. The HDMI port does not max out past 1920x

  • No entry found in table SMOFQFIND for BDoc type SI_CONTRACT

    Hi Gurus, I try to do a request dowload for SI_CONTRACT object. When  execute and monitor my request objects the status is OK. Then, I check the BDocs Message Trace and I see the following  error "No entry found in table SMOFQFIND for BDoc type SI_CO

  • Forms Services availability checking for BIGIP Load Balancer

    We are load balancing across a number of 10.1.2.2 Forms servers using a BIGIP load balancer. Currently our load balancing is done based on which server has the "least connections" to the BIGIP. So far we have been using the following test URL to allo

  • Photoshop Batch Processing

    I have a questions about actions, and I need to know if this is possible in CS3 (or any other versions) of Photoshop. I have a template image that has 3 boxes on it.  I have a folder filled with images that will populate these boxes.  Is it possible