Please help, got so far but won't work

I went thru a tutorial from 3school about  adding a button to a flash web site and linking it to our facebook page. I got almost all the way thru it step by step - I got the button imported to the library, resized and then inserted it onto the front page of our web site. After following all directions even running the mouse over the button it turns to a thumb to click on BUT it wont go to the web page link. I get to the point where the tutorial says to rt click on the image and choose actions. Everything still fine - then it says click on the plus sign > then choose basic actions > and get URL. This is where I think the problem starts - I have nothing that says basic actions - I have to go to global functions > browser/networks > then get URL. I insert my URL and click button assignment then ok. Save and publish. Hers where the problem starts when I publish it reads an error code and description : Scene = main, layer>div>, frame = 1, line 1 and in description it says : or expected. It wont connect to the web site and I am sure it is the correct URL because I tried it in windows and it took me to the facebook page. I am using Flash CS 5 and shouldn't matter but windows 7. Thank you in advance for any help or suggestions. I got so far and assumed I had it but cant connect to link. New to the site so be gentle with me, ha

Here is my URL I am trying to connect this button to - http://www.facebook.com/home.php#!/pages/Poopys-Pub-n-Grub/296159796425 and I think I am using actions script 2.0 how do I tell for sure? In actions it says actions script 1.0 and 2.0 at the top. Thanks for the responses. Our web site is www.poopys.com and you can see the button I added on the front page. Appriciate your help. Dale

Similar Messages

  • PLEASE HELP! Shows Update, but won't do it

    I am trying to update my iPod Touch to the 2.0 version. It says, "A newer version of iPod software is available (version 2.0). To update your iPod with the latest software, click Update."
    I Click Update and this pops up: "A new iPod software version (2.0)is available for the iPod. Would you like more information from the iTunes store now?"
    And I click learn more. It goes to a white screen with the word "iPod" on it for about 5 seconds and then back to the iPod home screen.
    PLEASE HELP!

    Im having the same trouble. It showing a blank ipod white screen then it goes back to the previous page

  • Please help: more than one case won't work

    I am working on an assignment for my class and I am trying to make it so that when a name like "Fred" or "Jonathan" is inputed, it will read a .txt file and output the nick name from the .txt file; but also, if the input does not match the first name, it will look at the next and so on. Right now it will ask me a name and let me input, but it will not find the case and print the correct line. Please help.
    Here is my code so far:
    import java.util.*;
    import java.io.*;
    public class Nickname {
         private static int compareNames(){
              Scanner name1 = new Scanner (System.in);
              String fred = name1.next().trim() ;
              String jon = name1.next().trim() ;
              String noMatch = name1.next();
              int name = 0;
              if (fred.equals("fred")) { name = 1 ;}
                   else if (jon.equals("jonathan")) { name = 2 ;}
                   else if (noMatch.equals("")) {name = 77;}
              return (name);
         public static void main(String[] args) throws Exception {
              Scanner fre = new Scanner (new File ("fred.txt"));
              Scanner jo = new Scanner (new File ("jonathan.txt"));
              Scanner ger = new Scanner (new File ("gertrude.txt"));
              Scanner bar = new Scanner (new File ("bartholemew.txt"));
              System.out.print ("Tell me your name: ");
              switch (compareNames()){
              case 1:
                   String fred = fre.next();
                   {System.out.print("I think I will call you " + fred + " instead.") ; break ; }
              case 2:
                   String jon = jo.next();
                   {System.out.print("I think I will call you " + jon + " instead.") ; break ; }
              case 77:
                   {System.out.print ("I hope this works") ; break ; }
    }

    I tried the above code, and I code not get it to work for me. We haven' t learned a lot of that yet. This is what my teacher is asking for:
    2. Nickname
    First prompt the user for a name, which will be a single word. If the user types in Fred, for
    example, the user's nickname will be stored in a file located in your current directory and with the
    name fred-nickname.txt. You will read the user's nickname from that file. Suppose the file
    fred.txt contains the word "FREDDY." Your program would then print the following message to
    the console:
    I think I will call you FREDDY instead.
    In the assignment directory there are four sample "nickname" files that you should download to
    the same directory containing this application:
    jonathan.txt that contains the nickname "Jonathan"
    fred.txt that contains the nickname "FREDDY"
    bartholemew.txt that contains the nickname "bart"
    gertrude.txt that contains the nickname "Gertie."
    If those files were in your program's directory, your program should work like this (these are four
    separate runs of the program):
    Tell me a name: Jonathan
    I think I will call you Jon instead.
    Tell me a name: Fred
    I think I will call you FREDDY instead.
    Tell me a name: BARTholemew
    I think I will call you bart instead.
    Tell me a name: Gertrude
    I think I will call you Gertie instead.
    Notice that your program has to work regardless of whether the name is entered in upper case,
    lower case, or some combination. Also notice that the program displays the name in the file
    exactly as it appears in the file, without changing its case. You can assume that the user types the
    name without leading or trailing white space, and that every name the user types in has a
    corresponding nickname file. (In other words, your program does not have to handle the case
    where a user types in an unrecognized name.) Also note that although you are supplied with four
    examples of "nickname" files, your program should work any time the user types in a name that
    has a corresponding "nickname" file in the application's working directory. You should write
    several additional nickname files and test your program on those.
    This application should be named Nickname.java. (project, class, etc.)
    And this is my reworked code:
    import java.util.*;
    import java.io.*;
    public class Nickname {
         private static Scanner input;     
         //private static Scanner nname;
         private static String name1 = "fred";
         private static String name2 = "jonathan";
         private static String name3 = "gertrede";
         private static String name4 = "bartholemew";
         private static String getNames() throws Exception{
              //System.out.print("Tell me your name :") ;
              input = new Scanner (System.in);
              String ans = input.next().trim();
              if (ans.equals(name1)) {
              Scanner fre = new Scanner (new File ("fred.txt"));}
              if (ans.equals(name2)) ;
              if (ans.equals(name3)) ;
              if (ans.equals(name4)) ;
              return (ans);
         public static void main(String args[]) throws Exception {
              //Scanner fre = new Scanner (new File ("fred.txt"));
              //Scanner jo = new Scanner (new File ("jonathan.txt"));
              //Scanner ger = new Scanner (new File ("gertrude.txt"));
              //Scanner bar = new Scanner (new File ("bartholemew.txt"));
              System.out.print ("Tell me your name: ");
              System.out.print(" your name is " + getNames());
    right now it just prints what I type in.
    I would appreciate any help.

  • Please help! Safari 4.1 won't work at all!

    Hello,
    I'm close to tears, so would be hugely grateful to anyone that could help me here....
    I think that a couple of weeks ago i had a software updater thing and updated my software. I haven't used my MacBook Pro (OS X V10.4.11) since, but tried to today.
    I launched safari (Version 4.1) from my dock, and it does the little wiggle thing, with the arrow under icon, but no web page, or indeed any window appeared. I've restarted computer several times and still nothing. I've gone into Bookmarks and tried loading a page, but a blank window opens (grey) and then I get a crash message. This happens exactly the same if i try to load a webpage from an email (mail still works).
    I've copied the problem report below, and really really hope someone can help. I've no clue what has happened, and am not very familiar at all with computers, so if someone could explain how I can get it fixed in laymans terms I'd honestly be forever indebted.
    Please help, am V worried!
    Date/Time: 2010-06-23 19:30:49.491 +0100
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [63]
    Version: 4.1 (4533.16)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 75331600
    PID: 235
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90811082 CFRetain + 56
    1 com.apple.WebKit 0x01094af5 fontFromNSFont(NSFont*) + 107
    2 com.apple.WebKit 0x01016347 +[WebStringTruncator centerTruncateString:toWidth:withFont:] + 25
    3 com.apple.Safari 0x00036315 0x1000 + 217877
    4 com.apple.Foundation 0x92842cca __NSFireTimer + 199
    5 com.apple.CoreFoundation 0x9082d756 CFRunLoopRunSpecific + 3341
    6 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    7 com.apple.HIToolbox 0x92e01878 RunCurrentEventLoopInMode + 285
    8 com.apple.HIToolbox 0x92e00f82 ReceiveNextEventCommon + 385
    9 com.apple.HIToolbox 0x92e00dd9 BlockUntilNextEventMatchingListInMode + 81
    10 com.apple.AppKit 0x93286f45 _DPSNextEvent + 572
    11 com.apple.AppKit 0x93286b37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    12 com.apple.Safari 0x0000f009 0x1000 + 57353
    13 com.apple.AppKit 0x932808c4 -[NSApplication run] + 512
    14 com.apple.AppKit 0x93274820 NSApplicationMain + 573
    15 com.apple.Safari 0x00006d9b 0x1000 + 23963
    16 com.apple.Safari 0x0010da62 0x1000 + 1100386
    17 com.apple.Safari 0x00006b19 0x1000 + 23321
    Thread 1:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.JavaScriptCore 0x0050b670 ***::ThreadCondition::wait(***::Mutex&) + 24
    2 com.apple.WebCore 0x014e0aa4 WebCore::IconDatabase::syncThreadMainLoop() + 256
    3 com.apple.WebCore 0x014de536 WebCore::IconDatabase::iconDatabaseSyncThread() + 192
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009817 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d227 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x928585da +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927fbcfc forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x92851c60 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x9991379e -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927fbcfc forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x9003fe6c pread + 12
    1 com.apple.Safari 0x001acae9 0x1000 + 1751785
    2 com.apple.Safari 0x001badc8 0x1000 + 1809864
    3 com.apple.Safari 0x001bb095 0x1000 + 1810581
    4 com.apple.Safari 0x0021d779 0x1000 + 2213753
    5 com.apple.Safari 0x002219fc 0x1000 + 2230780
    6 com.apple.Safari 0x00027a9c 0x1000 + 158364
    7 com.apple.Safari 0x000dac7f 0x1000 + 892031
    8 com.apple.Safari 0x000277e9 0x1000 + 157673
    9 com.apple.Safari 0x00027709 0x1000 + 157449
    10 com.apple.Safari 0x00027678 0x1000 + 157304
    11 com.apple.Safari 0x0015ece3 0x1000 + 1432803
    12 com.apple.Safari 0x00027591 0x1000 + 157073
    13 com.apple.Safari 0x0002751b 0x1000 + 156955
    14 com.apple.Safari 0x000274d3 0x1000 + 156883
    15 com.apple.Safari 0x000271b5 0x1000 + 156085
    16 com.apple.Safari 0x00026764 0x1000 + 153444
    17 com.apple.Safari 0x00026695 0x1000 + 153237
    18 com.apple.CoreFoundation 0x9082cf06 CFRunLoopRunSpecific + 1213
    19 com.apple.CoreFoundation 0x9082ca42 CFRunLoopRunInMode + 61
    20 com.apple.Safari 0x0002643d 0x1000 + 152637
    21 com.apple.Safari 0x000262f6 0x1000 + 152310
    22 com.apple.Safari 0x0002627b 0x1000 + 152187
    23 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x90811058 ecx: 0x0260b5b0 edx: 0x028b7a00
    edi: 0x00000000 esi: 0x00000000 ebp: 0xbfffed08 esp: 0xbfffece0
    ss: 0x0000001f efl: 0x00010246 eip: 0x90811082 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x32dfff com.apple.Safari 4.1 (4533.16) /Applications/Safari.app/Contents/MacOS/Safari
    0x505000 - 0x6dafff com.apple.JavaScriptCore 4533 (4533.13) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7f6000 - 0x7f7fff com.yourcompany.ct_loader ??? (1.0.2.7) /Library/InputManagers/CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    0x1008000 - 0x10f5fff com.apple.WebKit 4533 (4533.16) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x119a000 - 0x1448fff com.apple.QuartzCore 1.4.13 /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framew ork/Versions/A/QuartzCore
    0x14dc000 - 0x1f9afff com.apple.WebCore 4533 (4533.16) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x15df5000 - 0x15e71fff com.conduit.cttoolbar 1.0.2.7 (1027) /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 (682.32) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 316.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91b9cfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91ba1000 - 0x91ba3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91ba5000 - 0x91c83fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ca0000 - 0x91cdffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce5000 - 0x91ce5fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce7000 - 0x91d75fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7c000 - 0x91d7cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7e000 - 0x91dd7fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91de0000 - 0x91e04fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e0c000 - 0x92215fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224f000 - 0x92603fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92630000 - 0x9271dfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271f000 - 0x9279dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927de000 - 0x92a16fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b36000 - 0x92b4dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b58000 - 0x92bb0fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bc4000 - 0x92bc4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bc6000 - 0x92bd6fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92be5000 - 0x92bedfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bf3000 - 0x92bf9fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bff000 - 0x92c90fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92ca4000 - 0x92ca8fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92cab000 - 0x92cc9fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cdb000 - 0x92ce1fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ce7000 - 0x92d4afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d71000 - 0x92db2fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dd9000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931f3000 - 0x931fefff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93203000 - 0x9321efff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9326e000 - 0x9326efff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93270000 - 0x93926fff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ca7000 - 0x93d22fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d5b000 - 0x93e14fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e57000 - 0x93e57fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94060000 - 0x940a1fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x940a9000 - 0x940e3fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e8000 - 0x940fefff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94198000 - 0x941d6fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9421a000 - 0x9422bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94239000 - 0x94277fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94293000 - 0x942a2fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x942a9000 - 0x942b4fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94300000 - 0x9431afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94320000 - 0x9463ffff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94703000 - 0x94711fff com.apple.framework.Apple80211 4.5.5 (455.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x947c7000 - 0x9490dfff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94999000 - 0x949a8fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x949af000 - 0x949d8fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949de000 - 0x949edfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949f1000 - 0x94a16fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a22000 - 0x94a3ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94f57000 - 0x94f8ffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96f76000 - 0x9704dfff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x970d6000 - 0x970d6fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98f6e000 - 0x98f97fff com.apple.CoreMediaPrivate 15.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x99910000 - 0x99947fff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9b568000 - 0x9b5a8fff com.apple.CoreMediaIOServicesPrivate 20.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9b8e1000 - 0x9b8f3fff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9fefc000 - 0x9ffaafff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    Model: MacBookPro2,2, BootROM MBP22.00A5.B07, 2 processors, Intel Core 2 Duo, 2.33 GHz, 2 GB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: AirPort Extreme, 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS541612J9SA00, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA

    I am having the same issue and tried to locate the same Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins file on my HD but nothing. If you can help me with solving this issue as well I would be very grateful!
    Here is a copy of my crash report, I have no idea what I should do from here...
    Date/Time: 2010-07-25 01:11:30.283 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [69]
    Version: 4.1 (4533.16)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 75331600
    PID: 314
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000000c
    Thread 0 Crashed:
    0 com.apple.Safari 0x0005157c 0x1000 + 329084
    1 com.apple.Safari 0x00051500 0x1000 + 328960
    2 com.apple.Safari 0x00050f0c 0x1000 + 327436
    3 com.apple.Safari 0x00050e08 0x1000 + 327176
    4 com.apple.Safari 0x0004f8cc 0x1000 + 321740
    5 com.conduit.cttoolbar 0x05ec83d4 -[NSWindowController(CTSafariConnector) didSelectTabViewItem] + 36
    6 com.apple.AppKit 0x938b2a10 -[NSTabView selectTabViewItem:] + 892
    7 com.apple.Safari 0x000705c0 0x1000 + 456128
    8 com.apple.Safari 0x00070324 0x1000 + 455460
    9 com.apple.Safari 0x00070194 0x1000 + 455060
    10 com.apple.Safari 0x00070008 0x1000 + 454664
    11 com.conduit.cttoolbar 0x05ec8144 -[NSWindowController(CTSafariConnector) newTab:] + 36
    12 com.apple.AppKit 0x938428b4 -[NSApplication sendAction:to:from:] + 108
    13 com.apple.Safari 0x0003fe54 0x1000 + 257620
    14 com.apple.AppKit 0x9389d094 -[NSMenu performActionForItemAtIndex:] + 392
    15 com.apple.AppKit 0x9389ce18 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    16 com.apple.AppKit 0x937a4150 _NSHandleCarbonMenuEvent + 372
    17 com.apple.AppKit 0x937a1ab4 _DPSNextEvent + 1280
    18 com.apple.AppKit 0x937a13f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    19 com.apple.Safari 0x00011588 0x1000 + 66952
    20 com.apple.AppKit 0x9379d93c -[NSApplication run] + 472
    21 com.apple.AppKit 0x9388e458 NSApplicationMain + 452
    22 com.apple.Safari 0x0011861c 0x1000 + 1144348
    23 com.apple.Safari 0x00007df0 0x1000 + 28144
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.WebCore 0x014e9710 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x014e71f8 WebCore::IconDatabase::iconDatabaseSyncThread() + 440
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c1eb7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.Foundation 0x92bfd644 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3c926c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92bf64d8 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000000005157c srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24044222 xer: 0x0000000000000000 lr: 0x0000000000051500 ctr: 0x0000000000050f68
    r0: 0x0000000000051500 r1: 0x00000000bfffe5c0 r2: 0x00000000a0001fa4 r3: 0x0000000000000000
    r4: 0x0000000000380000 r5: 0x00000000742e6170 r6: 0x00000000031f0570 r7: 0x0000000000000000
    r8: 0x0000000092c0110c r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x0000000000000000
    r12: 0x0000000000050f68 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000bffff1e0 r18: 0x0000000000000000 r19: 0x00000000031338f0
    r20: 0x00000000ffffffff r21: 0x00000000a37d15cc r22: 0x0000000000380000 r23: 0x0000000000380000
    r24: 0x0000000000380000 r25: 0x0000000000380000 r26: 0x0000000003140bd0 r27: 0x0000000007801660
    r28: 0x0000000003145a70 r29: 0x000000000027eedc r30: 0x00000000bfffe688 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0x352fff com.apple.Safari 4.1 (4533.16) /Applications/Safari.app/Contents/MacOS/Safari
    0x505000 - 0x680fff com.apple.JavaScriptCore 4533 (4533.13) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x1008000 - 0x1109fff com.apple.WebKit 4533 (4533.16) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x11b0000 - 0x1452fff com.apple.QuartzCore 1.4.13 /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framew ork/Versions/A/QuartzCore
    0x14e5000 - 0x2187fff com.apple.WebCore 4533 (4533.16) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x27e8000 - 0x27e9fff com.yourcompany.ct_loader 1.4.0.6 (1406) /Library/InputManagers/CTLoader/ctloader.bundle/Contents/MacOS/ctloader
    0x5ec4000 - 0x5f77fff com.conduit.cttoolbar 1.4.0.6 (1406) /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.19 (681.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 4.0 (129.24) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6c000 - 0x91c23fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce7000 - 0x91d02fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d07000 - 0x91d0afff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0c000 - 0x91dfafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e19000 - 0x91e57fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e60000 - 0x91f45fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd8000 - 0x92046fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92051000 - 0x920e6fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92100000 - 0x92688fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bb000 - 0x929e6fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a16000 - 0x92b04fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b07000 - 0x92b8ffff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd0000 - 0x92e03fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f36000 - 0x92f54fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f5f000 - 0x92fb9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd7000 - 0x92fd7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fd9000 - 0x92fedfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93005000 - 0x93015fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93021000 - 0x93036fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93048000 - 0x930cffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e3000 - 0x930eefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930f8000 - 0x93126fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93140000 - 0x9314ffff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315b000 - 0x931c1fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f2000 - 0x93241fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9326f000 - 0x9328cfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9329e000 - 0x932abfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b4000 - 0x935c2fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93712000 - 0x9371efff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93723000 - 0x93743fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93797000 - 0x93797fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93799000 - 0x93dccfff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94159000 - 0x941cbfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94204000 - 0x942c9fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431c000 - 0x9431cfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94528000 - 0x94565fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456d000 - 0x945bdfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c6000 - 0x945dffff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94678000 - 0x946b0fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f5000 - 0x94711fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94725000 - 0x94769fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478d000 - 0x9479cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a4000 - 0x947b1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f7000 - 0x94810fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94817000 - 0x94b4afff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c32000 - 0x94ca3fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94d41000 - 0x94d4dfff com.apple.framework.Apple80211 4.2.9 (429.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94e19000 - 0x94f49fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fdc000 - 0x94febfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ff3000 - 0x95020fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95027000 - 0x95037fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9503b000 - 0x9506afff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9507a000 - 0x95097fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9596a000 - 0x95a1afff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95b4d000 - 0x95b7ffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97ce5000 - 0x97db6fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97e33000 - 0x97e33fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a3c6000 - 0x9a3fcfff com.apple.Syndication 1.0.8 (56.1) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ae29000 - 0x9ae3bfff com.apple.SyndicationUI 1.0.8 (56.1) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9ff61000 - 0x9ffa3fff com.apple.CoreMediaIOServicesPrivate 20.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9ffc8000 - 0x9fff2fff com.apple.CoreMediaPrivate 15.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    Model: PowerMac4,2, BootROM 4.3.5f1, 1 processors, PowerPC G4 (2.1), 800 MHz, 1 GB
    Graphics: NVIDIA GeForce2 MX, GeForce2 MX, AGP, 32 MB
    Memory Module: DIMM0/J12, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J13, 512 MB, SDRAM, PC133-333
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: Maxtor 4D060H3, 55.9 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-116D
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: USB Optical Micromouse, Macally Peripherals, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Maxtor 3200, Maxtor Corporation, Up to 12 Mb/sec, 500 mA
    USB Device: 5600-6600 Series, Lexmark, Up to 12 Mb/sec, 500 mA

  • Please help dvd/cd-rom drive won't work

    When I start computer the dvd/cd-rom drive is seen and works under  my computer (listed under other) but after an couple of minutes the drive has an red x and is listed as cd drive. There are times when it doesn't show up period. When I go under device manager I see and yellow exclamation mark. I cannot roll back (icon doesnt allow) and when I try to update it says that this version is the most update version. I have never personally tried to update this driver since I bought the computer it seems as if overnight there is a problem.
    When I go to device manager and go to properties the message that appears is:  Windows cannot load the device driver for this hardware because a previous instance of the device driver is still in memory. (Code 38)
    I have a lenovo G575
    AMD E-350 processor 1.60 GHz,
    RAM 3.00 g.b.,
    Windows 7 64bit operating system.
    I have tried to use the troubleshooting tool but it doesn't work.
    Could someone give me step by step instructions on how to fix my computer.
    Thankyou in advance.

    When you go to device manager for the device right click the drive and click Uninstall,AFTER and only after you do that download the correct driver from Lenovo's website and then install it.  It is generally best to totally uninstall old drivers before attempting updating to a new/different one as it can create issues like this.  Let me know if this worked for you.
    Lenovo 15.6,B575 W7 E-450,ATI6320,320GB,8GB DDR3 Ram-*Midnight*
    Dell Latitude D430,12.1 C2D 1.3 ULV,2GB DDR2,80gb SSD,Intel 950,XP *Mini Me*
    Dell Latitude D630,14.1,C2D2.0,W7,500GB,8GB DDR2,X3100*Old Faithful*
    Nvidia I shall Never forgive you for the 8000m Series.

  • I can't load 1 Imovie project. Imovie shows 5 projects but only 4 icons show of those. 1 projects symbol won't come up so I can't click on it to work on or play. Please help me as there's lots of work on this project I don't want to lose.

    I can't load 1 Imovie project. Imovie shows 5 projects but only 4 icons show of those. 1 projects symbol won't come up so I can't click on it to work on or play. Please help me as there's lots of work on this project I don't want to lose.

    The performance fixes is a biggy for me, though the other missing
    stuff I use makes me have to use both versions for various things:
    "but they seem to be committed to another release/version."
    Well ... now that's the rub. I would actually welcome this intermediate version to play with (even with the cost of upgrading) if I could rely on it to be finalized into 6.0, full featured, without it taking as long as it has to Upgrade from AA3.0. I would say it was a VERY smart move to give us a preview of 6.0, if I felt in, say, six months they would provide us the fully functional update. But, HOW many years has it been. I felt screwed over while they played around with Sound Booth.
    I was with you for a minute in most of what you said, until your credibility went down a couple notches with me on the statement trivializing midi functionality. I though that was a very clueless statement:
    "but I have no need for a midi controller and if I want a drummer to keep perfect time I'll get a drum machine."
    It does make some of your other statements suspect, tho I won't take it as far as therealdobro's "what's your stake" question.

  • I keep getting the "Something went wrong" message on my Droid Razr HD also. I looked in my Settings, and I don't have a Cloud app - I have a Cloud Print app with nothing cached.  This is making it nearly impossible to use the phone - please help!  So far,

    I keep getting the "Something went wrong" message on my Droid Razr HD also. I looked in my Settings, and I don't have a Cloud app - I have a Cloud Print app with nothing cached.  This is making it nearly impossible to use the phone - please help!  So far, this website has only made things more difficult.

    The details you're providing are very helpful, Maj_Dad. With airplane mode enabled,
    there would be no message because that disables celluar data. I would recommend
    tying that mode with WiFi to see if it still happens. It sounds like this issue
    has something to do with one of the applications on the device.
    JoeL_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • HT1379 Guys please help? My MacBook Pro won't start up. I have tried the resetting Mac's PRAM and NVRAM procedure with no success. All I see is just the black or grey screen although I hear the drive running.

    Guys please help? My MacBook Pro won't start up. I have tried the resetting Mac's PRAM and NVRAM procedure with no success. All I see is just the black or grey screen although I hear the drive running.

    Hold shift key down while booting should get you in
    go through this list and get back with me
    Step by Step to fix your Mac

  • Please help!  My IPod touch won't recognize the digits I enter for my password and won't put a "dot" in the password squares.  It also speaks the numbers I enter, very, very fast!

    Please help!  My IPod touch won't recognize the digits I enter for my password and won't put a "dot" in the password squares.  It also speaks the numbers very, very fast.  Can anyone help?

    Sounds like some accessibility features have been turned on. See this article for instructions on turning them off.
    http://support.apple.com/kb/HT3577
    B-rock

  • I am trying to transfer my upgrade to my second line.  When I try to order any other phone it works fine, but won't work to upgrade to Iphone 6

    I am trying to transfer my upgrade to my second line.  When I try to order any other phone it works fine, but won't work to upgrade to Iphone 6

        TWRING,
    Help has arrived! Since the device is currently on pre-order when processing the order online it will only recognize the line eligible. Once you receive the device you may activate it on another line if needed.
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

  • Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi kondwastefstef,
    I'm sorry that your subscription didn't meet your needs. Please contact Adobe Customer Support via phone or chat; they should be able to cancel your account and process your refund. Here's the contact information: Contact Customer Care
    Best,
    Sara

  • Please help me my apple id its not working what do i do?

    please help me my apple id is not working what do i do

    If you desire speedy resolution it helps to be more specific with error messages etc. when asking a question here.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • Apple TV2 airplay audio (via Airport Express) works well with music, but won't work with any video.

    I have an ATV2 and Airport Express connected to speakers all connected to the same network. It all works with music, but won't work with any video audio. In my ATV's settings I've selected my AirPort Express speakers. It works for music, why not everything else? Is there a fix or work around?

    Netflix is first on that list...What I mean is, if there is a feature that allows for a wireless audio connection to the Apple TV, why wouldn't the developer allow it. To keep me from enjoying a more convient connection? I can have the same listening experience on a wired connection...

  • HT4557 I have iPad 2 and trying to connect to apple tv. Have gone into videos and music and put in my apple id and password but won't work. Pick up my PC fine though

    I have iPad 2 and trying to connect to apple tv. Have gone into videos and music and put in my apple id and password but won't work. Pick up my PC fine though.
    Any ideas? Have tried usual switching on and off again but no change

    Here’s what you need to do to turn on AirPlay Mirroring on your iPad 2:
    – Have iOS 5 installed on your iPad 2
    – Make sure your Apple TV software is up-to-date. You can check for updates on the Apple TV by going to Settings > General > Update Software.
    – Have your TV turned with Apple TV active and showing.
    – Double-tap the home button on the iPad to bring up the Multitasking Bar.
    – Swipe to move to the left of the Multitasking Bar, so you can see the set of controls just to the left of the volume adjustment slider.
    – The button just to the right of the Fast Forward button – the one that has a rectangle with a solid, upward-facing arrow in it – is the AirPlay button. Tap to switch from iPad to Apple TV.
    – Once you do that you’ll see the Mirroring section appear just below the entry for Apple TV. Just tap to turn that On, and the iPad 2 will immediately begin mirroring to your TV screen.

  • I bought an unlocked iPhone 5s from USA and travel back to my counry but won't work in my country

    I bought an unlocked iPhone 5s from USA and travel back to my counry but won't work in my country

    Well, there is nothing anyone here can do for you. Did you actually purchase it at an Apple Store, or at another retailer like BestBuy, HH Gregg, a mall kiosk, T-Mobile, AT&T, etc?
    The ONLY source for unlocked iPhones in the US is Apple. If you purchased it anywhere other than at an Apple Store, you purchased a locked phone.
    You can call AppleCare and give them the serial number of the phone to confirm the status of the lock.

Maybe you are looking for