IWeb help needed - new user

"Publisher" documents have converted to iWeb documents but won't open. I'm a new Mac user so need some help :-)

What application was used to create the .pub files?  If there's no Mac equivalent that can open and use them just select one of the files, type Command+i to bring up the Info window, go to the Open with menu and select "TextEdit".  Then click on the Apply to all button.  This unlinks iWeb from those .pub files so when you double click on one of them iWeb won't try to open.
If you have a Mac application that can be used to open and use those .pub files then select it in the Open with: menu.
There is no Mac application that can open the .pub (Microsoft Publisher) files.  However, this site, eHOW, has a link to a web site that can convert those .pub file to PDF files which you can open on a Mac with Preview (included).  The link is Create PDF from Word & Other Formats.  You can give it a try.
OT

Similar Messages

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • Need Help creating new user in Active Directory

    I am trying to create a new user in active directory via a java application. I have included the code that I am using. I am able to successfully bind to Active Directory. I have been able to change passwords, and delete users, but I have not been able to create a user.
    ldapHost : "mta101.DOM101.CEL.ACC.AF.MIL"
    domainName: "dc=dom101,dc=cel,dc=acc,dc=af,dc=mil"
    existing account: CN=Brett K. Humpherys,OU=Users,OU=CEL
    I get the following error on the createSubcontext statement:
    javax.naming.directory.InvalidAttributeValueException: [LDAP: error code 21 - 00000057: LdapErr: DSID-0C09098B, comment: Error in attribute conversion operation, data 0, v893 ; remaining name 'CN=test1,OU=Users,OU=CEL'
    I have commented out the password portion and change the ObjectCategory to a 32 and get the same error.
        public GblStatus createAccount7(DbaDb dbConn,
                                        String jsrcName,
                                        String personName,
                                        String username,
                                        String password)
          Hashtable ldapEnv = new Hashtable(11);
          ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
          ldapEnv.put(Context.PROVIDER_URL, "ldap://" + this.ldapHost + ":636");
          ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
          ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
          ldapEnv.put(Context.REFERRAL, "ignore");
          ldapEnv.put(Context.SECURITY_PRINCIPAL,"cn=" + this.adminAcct + ",cn=users," + this.domainName);
          ldapEnv.put(Context.SECURITY_CREDENTIALS, this.adminPwd);
           try
            // Create the initial context
            DirContext ctx = new InitialDirContext(ldapEnv);
            BasicAttributes attrs = new BasicAttributes();
            BasicAttribute ocs = new BasicAttribute("objectclass");
            ocs.add("top");
            ocs.add("person");
            ocs.add("organizationalPerson");
            ocs.add("user");
            attrs.put(ocs);
            BasicAttribute gn = new BasicAttribute("givenName", "test1");
            attrs.put(gn);
            BasicAttribute sn = new BasicAttribute("sn", "");
            attrs.put(sn);
            BasicAttribute cn = new BasicAttribute("cn", "test1");
            attrs.put(cn);
            BasicAttribute uac = new BasicAttribute("userAccountControl", "66048");
            attrs.put(uac);
            BasicAttribute sam = new BasicAttribute("sAMAccountName", "test1");
            attrs.put(sam);
            BasicAttribute disName = new BasicAttribute("displayName", "test1");
            attrs.put(disName);
            BasicAttribute userPrincipalName = new BasicAttribute
                                          ("userPrincipalName", "[email protected]");
            attrs.put(userPrincipalName);
            BasicAttribute instanceType = new BasicAttribute("instanceType", "4");
            attrs.put(instanceType);
            BasicAttribute objectCategory = new BasicAttribute
                      ("objectCategory","CN=User,CN=Schema,CN=Configuration," + domainName);
            attrs.put(objectCategory);
            String newVal = new String("\"password\"");
            byte _bytes[] = newVal.getBytes("Unicode");
    byte bytes[] = new byte[_bytes.length - 2];
    System.arraycopy(_bytes, 2, bytes, 0, _bytes.length - 2);
    BasicAttribute attribute = new BasicAttribute("unicodePwd");
    attribute.add((byte[]) bytes);
    attrs.put(attribute);
    ctx.createSubcontext("CN=test1,OU=Users,OU=CEL", attrs);
    ctx.close();
    catch (NameAlreadyBoundException nex)
    System.out.println("User ID is already in use, please select a different user ID ...");
    catch (Exception ex)
    System.out.println("Failed to create user account... Please verify the user information...");
    ex.printStackTrace();
    return new GblStatus();
    Any help would be much appreciated.

    Hi .,
    me too got up with same problem., can anyone help me.??
    Someone help me to create attributes in AD using LDAP
    package LDAPpack;
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.InitialLdapContext;
    import javax.naming.ldap.LdapContext;
    import java.util.Hashtable;
    class CreateAttrs {
    public static void main(String[] args) {
         Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://10.242.6.166:389/");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL, "CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
                        env.put(Context.SECURITY_CREDENTIALS, "password-1");
              LdapContext ctx =null;
              try {
                   //ctx = new InitialLdapContext(env,null);
                   try {
    ctx = new InitialLdapContext(env,null);
                   catch(NamingException e) {
    System.out.println("Login failed");
    System.exit(0);
    if(ctx!=null){              
    System.out.println("Login Successful");
    byte[] buf = new byte[] {0, 1, 2, 3, 4, 5, 6, 7}; // same data
         // Create a multivalued attribute with 4 String values
         BasicAttribute oc = new BasicAttribute("objectClassNew", "topNew");
         oc.add("personNew");
         oc.add("organizationalPersonNew");
         // Create an attribute with a byte array
         BasicAttribute photo = new BasicAttribute("jpegPhotoNew", buf);
         // Create attribute set
         BasicAttributes attrs = new BasicAttributes(true);
         attrs.put(oc);
         attrs.put(photo);
         Attributes attrs1 = ctx.getAttributes("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org");
    System.out.println(attrs1);
    Context result = ctx.createSubcontext("CN=cname,OU=Users,OU=Dealer,OU=Community,DC=test2,DC=org", attrs);
    //i got error here; i attach the error below.
         ctx.close();
    System.out.println("close");
         catch(NamingException e){
              e.printStackTrace();
    ERROR:
    Login Successful
    javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - 00000057: LdapErr: DSID-0C090B38, comment: Error in attribute conversion operation, data 0, vece
    ANYONE HELP ME PLS.
    Edited by: vencer on Jun 19, 2008 12:38 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need Help with New User

    I have recently had the problem where my I am unable to play any quicktime video off the internet. This includes movie trailers and itunes music video previews. Quicktime works fine with all other videos off my mac. The only solution that I found was that it works if I login as a different user.
    So my question is how can I create a new user that will EXACTLY mirror my current user settings and folders?
    Please help.
    Lawrence

    Well I only get the error message when I try to run video off the itunes music store or off safari. itunes videos i purchase i am then able to view and can view all other videos already saved locally. When trying to play online videos the program (safari and itunes) simply closes and i get the message the the program unexpectetly quit. this is the report that shows when i ask for more details:
    Date/Time: 2006-08-19 21:30:03.125 -0700
    OS Version: 10.4.7 (Build 8J135)
    Report Version: 4
    Command: iTunes
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Parent: WindowServer [865]
    Version: 6.0.5 (6.0.5)
    Build Version: 7
    Project Name: iTunes
    Source Version: 6052001
    PID: 909
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x08fd4232
    Thread 0 Crashed:
    0 com.apple.HIServices 0x9184db18 ICMapping::CompareExtensions(unsigned char const*, ICMapEntry const*) + 28
    1 ...ple.CoreServices.CarbonCore 0x90b921fc GetHandleSize + 36
    2 com.apple.HIServices 0x9184da9c ICMapping::MapFilename(unsigned char const*, ICMapEntry*) + 112
    3 com.apple.HIServices 0x9184d150 ICMapFilename + 136
    4 ...uickTimeStreaming.component 0x99a17bf4 HTTPDataHandler_GetMacOSFileType + 140
    5 ...ple.CoreServices.CarbonCore 0x90bda19c CallComponentFunctionCommon + 1044
    6 ...ple.CoreServices.CarbonCore 0x90bd9d24 CallComponent + 260
    7 com.apple.QuickTime 0x94786390 DataHGetMacOSFileType + 40
    8 com.apple.QuickTime 0x947857d4 GetMovieImporterForDataRef_priv + 452
    9 com.apple.QuickTime 0x947125d8 NewMovieFromDataRefPriv_priv + 1412
    10 com.apple.QuickTime 0x9478a324 NewMovieFromDataRef_priv + 20
    11 com.apple.QuickTime 0x9478a2fc NewMovieFromDataRef + 64
    12 com.apple.iTunes 0x00302d50 0x1000 + 3153232
    13 com.apple.iTunes 0x002ff1cc 0x1000 + 3137996
    14 com.apple.iTunes 0x002fe4a8 0x1000 + 3134632
    15 com.apple.iTunes 0x002fd3a8 0x1000 + 3130280
    16 com.apple.iTunes 0x002a4254 0x1000 + 2765396
    17 com.apple.iTunes 0x0039e398 0x1000 + 3789720
    18 com.apple.iTunes 0x002b23f8 0x1000 + 2823160
    19 com.apple.iTunes 0x002b18f4 0x1000 + 2820340
    20 com.apple.iTunes 0x0041498c 0x1000 + 4274572
    21 com.apple.iTunes 0x00487154 0x1000 + 4743508
    22 com.apple.iTunes 0x0040a0f0 0x1000 + 4231408
    23 com.apple.iTunes 0x0040a110 0x1000 + 4231440
    24 com.apple.iTunes 0x0040a110 0x1000 + 4231440
    25 com.apple.iTunes 0x0040a110 0x1000 + 4231440
    26 com.apple.iTunes 0x0040a110 0x1000 + 4231440
    27 com.apple.iTunes 0x00424bb4 0x1000 + 4340660
    28 com.apple.iTunes 0x00336060 0x1000 + 3362912
    29 com.apple.iTunes 0x004d3e04 0x1000 + 5058052
    30 com.apple.iTunes 0x004a209c 0x1000 + 4853916
    31 com.apple.iTunes 0x004a1a88 0x1000 + 4852360
    32 com.apple.iTunes 0x0036f71c 0x1000 + 3598108
    33 com.apple.iTunes 0x004a1380 0x1000 + 4850560
    34 com.apple.iTunes 0x00002ad8 0x1000 + 6872
    35 com.apple.iTunes 0x0000297c 0x1000 + 6524
    Thread 1:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ea8dc CFRunLoopRun + 52
    5 com.apple.DVCPROHDMuxer 0x00ede1ac AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 404
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bf43a4 AsyncFileThread(void*) + 56
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9005bd20 accept + 12
    1 com.apple.iTunes 0x004d878c 0x1000 + 5076876
    2 com.apple.iTunes 0x00543404 0x1000 + 5514244
    3 com.apple.iTunes 0x00543780 0x1000 + 5515136
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ea8dc CFRunLoopRun + 52
    5 com.apple.iTunes 0x003e3bf4 0x1000 + 4074484
    6 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9001f7ac select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x98b1ab34 ReadSchedulerThreadEntryPoint + 5208
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bfeff8 AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bfc4ec TimerThread + 60
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x900551a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071828 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf4550 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c00020 DeferredTaskThread + 56
    4 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90bedf08 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x90be3b80 YieldToThread + 372
    4 com.apple.iTunes 0x004d7fc0 0x1000 + 5074880
    5 com.apple.iTunes 0x0040e1dc 0x1000 + 4248028
    6 com.apple.iTunes 0x0040dd24 0x1000 + 4246820
    7 com.apple.iTunes 0x0041ee1c 0x1000 + 4316700
    8 com.apple.iTunes 0x0041e6f4 0x1000 + 4314868
    9 com.apple.iTunes 0x004170e4 0x1000 + 4284644
    10 com.apple.iTunes 0x0040ec54 0x1000 + 4250708
    11 com.apple.iTunes 0x0040e7fc 0x1000 + 4249596
    12 com.apple.iTunes 0x004d8048 0x1000 + 5075016
    13 ...ple.CoreServices.CarbonCore 0x90bedfac InvokeThreadEntryUPP + 24
    14 ...ple.CoreServices.CarbonCore 0x90bedbcc CooperativeThread + 220
    15 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x9000b268 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b1bc mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90bedf08 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x90be3b80 YieldToThread + 372
    4 ...ple.CoreServices.CarbonCore 0x90bede50 SetThreadState + 192
    5 com.apple.iTunes 0x003f8348 0x1000 + 4158280
    6 com.apple.iTunes 0x00415c54 0x1000 + 4279380
    7 com.apple.iTunes 0x0041dfbc 0x1000 + 4313020
    8 com.apple.iTunes 0x0040edb8 0x1000 + 4251064
    9 com.apple.iTunes 0x0040e7fc 0x1000 + 4249596
    10 com.apple.iTunes 0x004d8048 0x1000 + 5075016
    11 ...ple.CoreServices.CarbonCore 0x90bedfac InvokeThreadEntryUPP + 24
    12 ...ple.CoreServices.CarbonCore 0x90bedbcc CooperativeThread + 220
    13 libSystem.B.dylib 0x9002bc28 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009184db18 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24228434 xer: 0x0000000000000000 lr: 0x000000009184da9c ctr: 0x0000000090b92564
    r0: 0x00000000000013ab r1: 0x00000000bfffa8b0 r2: 0x0000000000000000 r3: 0x00000000bfffa9c0
    r4: 0x00000000bfffab3c r5: 0x0000000008fd2e87 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x00000000024eee00 r9: 0x00000000000007d9 r10: 0x00000000000007d9 r11: 0x00000000a1838c40
    r12: 0x0000000090b92564 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x00000000bfffb56c
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000020000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000001 r23: 0x00000000bfffac3c
    r24: 0x00000000bfffab3c r25: 0x00000000bfffa9c0 r26: 0x00000000bfffab3c r27: 0x0000000000007901
    r28: 0x00000000bfffa9c0 r29: 0x000000000000ae87 r30: 0x0000000008fd2e87 r31: 0x000000009184d0d0
    Binary Images Description:
    0x1000 - 0x71ffff com.apple.iTunes 6.0.5 /Applications/iTunes.app/Contents/MacOS/iTunes
    0xd45000 - 0xdc4fff com.apple.DVCPROHDAudio 1.2 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0xdf3000 - 0xe1cfff com.apple.iSightAudio 7.1.2 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0xea8000 - 0xeb3fff com.apple.LiveType.component 2.0.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xec1000 - 0xf67fff com.apple.DVCPROHDMuxer 1.2 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x18eb000 - 0x1901fff com.apple.IMXCodec 1.0 (114) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x190f000 - 0x1aeafff net.telestream.wmv.import 2.0.2.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1b16000 - 0x1b8ffff com.apple.DVCPROHDCodec 1.1.1 (209) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x1ba5000 - 0x1c55fff com.apple.AppleHDVCodec 1.0 (129) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x1c73000 - 0x1cdcfff com.apple.AppleIntermediateCodec 1.0.1 (124) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1cf1000 - 0x1d6afff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1ffa000 - 0x1ffbfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x68a1000 - 0x6980fff com.apple.audio.codecs.Components 1.4.3 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x732b000 - 0x732dfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7476000 - 0x747dfff com.apple.DesktopVideoOut 1.2.3 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x74ca000 - 0x74e1fff com.apple.FCP Uncompressed 422.component 1.2 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x87f4000 - 0x87f8fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8a29000 - 0x8a2ffff com.apple.ATIRadeon9700GA 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GA.plugin/Contents/MacOS/ATIRadeon9700G A
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x7dbb0000 - 0x7dbb9fff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x7f950000 - 0x7f9b8fff com.apple.LiveType.framework 2.0.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8f070000 - 0x8f36afff decoder.altivec /System/Library/QuickTime/QuickTimeComponents.component/Contents/Resources/deco der.altivec
    0x8fd50000 - 0x8fd8dfff com.apple.QuickTimeFireWireDV.component 7.1.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8fe00000 - 0x8fe52fff dyld 45.1 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff com.apple.CoreText 1.0.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x9072cfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fcfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110d000 - 0x9111bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111e000 - 0x912d8fff com.apple.security 4.4 (27566) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d6000 - 0x913dffff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e6000 - 0x9140efff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91421000 - 0x9142cfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91431000 - 0x91439fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9143d000 - 0x914b8fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914f5000 - 0x914f5fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f7000 - 0x9152ffff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154a000 - 0x91617fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916fdfff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91744000 - 0x917fbfff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91838000 - 0x91896fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918c5000 - 0x918e9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918fd000 - 0x91922fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91935000 - 0x91977fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91993000 - 0x919a7fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919b5000 - 0x919f5fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a0b000 - 0x91ad3fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b21000 - 0x91b36fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b3b000 - 0x91b58fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b5d000 - 0x91bccfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91be3000 - 0x91be7fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91be9000 - 0x91c31fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c36000 - 0x91c73fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c7a000 - 0x91c93fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c98000 - 0x91c9bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c9d000 - 0x91c9dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c9f000 - 0x91d84fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d8c000 - 0x91dabfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e17000 - 0x91e85fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e90000 - 0x91f25fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f3f000 - 0x924c7fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924fa000 - 0x92825fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92855000 - 0x928ddfff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9291e000 - 0x92b49fff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c67000 - 0x92d45fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d65000 - 0x92e53fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e65000 - 0x92e83fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e8e000 - 0x92ee8fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f06000 - 0x92f06fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f08000 - 0x92f1cfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f34000 - 0x92f44fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f50000 - 0x92f65fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f77000 - 0x92ffefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93012000 - 0x9301dfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93027000 - 0x93054fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9306e000 - 0x9307efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9308a000 - 0x930f0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93121000 - 0x93170fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9319e000 - 0x931bbfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931cd000 - 0x931dafff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931e3000 - 0x934f0fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9363f000 - 0x9364bfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93650000 - 0x93670fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936c3000 - 0x936c3fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936c5000 - 0x93cf8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94085000 - 0x940f5fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9412e000 - 0x941f1fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94243000 - 0x94243fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94245000 - 0x943f8fff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444b000 - 0x94488fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94490000 - 0x944e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94683000 - 0x94692fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9469a000 - 0x946a6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946ec000 - 0x94704fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9470b000 - 0x949bffff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a83000 - 0x94af4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94b67000 - 0x94b87fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c8f000 - 0x94dbffff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e51000 - 0x94e60fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e68000 - 0x94e95fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e9c000 - 0x94eacfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94eb0000 - 0x94edffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94eef000 - 0x94f0cfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x96a54000 - 0x96a59fff com.apple.iPod 1.3 (13) /System/Library/PrivateFrameworks/iPod.framework/iPod
    0x96ec4000 - 0x96ee3fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x976e9000 - 0x976f6fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x977f7000 - 0x97812fff com.apple.AppleVAFramework 2.4.25 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98b05000 - 0x994dbfff com.apple.QuickTimeComponents.component 7.1.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x996f1000 - 0x996f4fff com.apple.QuickTimeH264.component 7.1.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x996f6000 - 0x997c9fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x999da000 - 0x99b29fff com.apple.QuickTimeStreaming.component 7.1.2 /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    Model: PowerMac8,2, BootROM 5.2.5f1, 1 processors, PowerPC G5 (3.0), 2 GHz, 2 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J4000, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J4001, 1 GB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.7.5f10, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDS724040KLSA80, 372.61 GB
    Parallel ATA Device: MATSHITADVD-R UJ-845, 2.83 GB
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: harman/kardon USB iSub, harman kardon, Up to 12 Mb/sec, 500 mA
    FireWire Device: iSight, Apple Computer, Inc., Up to 400 Mb/sec

  • Transfer iWeb site to new user

    I designed a site on one .mac account and want to move it to another .mac account I run so that the URL is different. I've set up another user on my computer so iWeb will upload to the appropriate .mac account, but... how do I import the previous iWeb-designed data over to my new user? I've tried dropping the User/username/Library/Application Support/iWeb/Domain file into the new username (same location) but when I try to upload it says "You don't have permission to make changes to that file".

    when I
    try to upload it says "You don't have permission to
    make changes to that file".
    What exactly does the "upload" mean here? When you try to publish?

  • Help needed for User-Defined Datatype

    Hi All,
    I have one table which has User-defined Column Datatype.
    Now Client wants us to rename the User-Defined Datatype for some Standardization process.
    How to do rename of it, coz Rename old to new doesnt work in Oracle 10.2.0.4G for TYPES.
    So we re-created it with the new names. Now our Problem is how do i re-assign the column datatype with the New User-Defined DataType.
    Regards,
    Prathamesh

    The Only Solution that i could found was - Create a new column with new User-Defined Datatype, copy the old column values to New Column, then drop the old column and rename the new Column to Old Column
    ORA-22859:     invalid modification of columns
    Cause:     An attempt was made to modify an object, REF, VARRAY, nested table, or LOB column type.
    Action:     Create a new column of the desired type and copy the current column data to the new type using the appropriate type constructor.

  • Need new user help

    i am trying to retrieve the length of multiple strings for a homework problem. we have to declare 5 string instance variables (string1�string5). i am wondering what the code is to retrieve any one of the five lengths. the way my code is now i can only get one.
    public int returnlength() {
    int charCount1=string1.length();
    return charCount1;
    i know i am missing something very easy here. thanks for the beginner help. i have been looking at this for over 3 hours now. i tried using parameters but i keep messing up the code.

    Here's what sounds like a start, though it seems you already did something like this and shot it down as not complying with the requirements:
    public class Homework
      public int length(String s)
        return s.length();
      // create other methods for dealing with equals(), etc
      public static void main(String[] args)
        // declare 5 strings:
        String str1, str2, str3, str4, str5;
        // initialize them somehow - the snippet from your assignment does not specify how
        // get the length of each
        Homework hw = new Homework();
        int len = hw.length(str1);
        // what are you supposed to do with the result?
        len = hw.length(str2); // invoked again on a different string
        len = hw.length(str3); // etcetera
    }

  • HELP! NEW USER IN NEED!

    Could someone tell me what im doing wrong?
    Im trying to get my companys web site off the server, I define local root folder by making an empty folder - site - manage sites - new site - add URL - edit copies on my machine - select folder to add files - FTP to connect to remote server - add ftp address - but don't know what folder is called on server - add FTP login and password - connect to the remote host - Now I right click the html page I want to edit and open it but it is not the same page as on line. Its the same name but looks like an old version of the page with images missing. Can anyone understand this?
    Lisa

    When you have the FTP setup in the Files window, click the Get (down) arrow so that you bring the files to your hard drive.  The reason the styles and images look like they are missing is because they are.  If you do not have the files on your computer while you are working on the site, then Dreamweaver will not be able to load them.  Once you download all the files, edit the files and then click the Put (up) arrow to put the files back on the server that you change.  Then you should be good to go.

  • Need help! New user

    I've recently purchased a flash site template. Everything is
    working, except I do not know how to point a SEND button for a form
    to my e-mail box. Help please!

    Natane wrote:
    > I've recently purchased a flash site template.
    Everything is working, except I do not know how to point a SEND
    button for a form to my e-mail box. Help please!
    go to kirupa.com and search for FORM , you will find detail
    tutorial on how to set it
    up in flash.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Help!  New user - I can't get rid of an application!

    Hi, there,
    I'm new to Mac and LOVE it.
    However, I just installed this thing called Earthdesk. Looks great but once I got it installed I .... well, I hate it.
    If I move it to the trash, i can't empty the trash because it's in use. I try to find a way to stop it and there isn't one. I try changing the settings on the desktop to see if that will stop it - no go, it just pops back up.
    I hate it. Someone - please tell me how to get this off my system? I'm a bit of a PC geek, but I'm new to this Mac thing and I need to know how to get rid of this stuff.
    Thanks for your help!!!

    If it says it is use just open /Applications/Utilities/Activity Monitor and kill the process there. Then throw the application out.
    Now if you want a free program to get rid of all the application's files (/Users/YourUserName/Library/Application Support/ & /Users/YourUserName/Library/Preferences/) then try out the program AppDelete a try. Just review what it finds before emptying the Trash.

  • Help needed - new to Blackberry and not very techy - calendar problems

    I love my new Blackberry Curve 9300 BUT tried to synchronise Google calendar to Blackberry calendar.  For some dates I have 100s of duplicated entries and they are recurring to infinity it seems.  Have tried everything but seems the only solution is to completely clear the calendar but unable to find out from anywhere how to do this.  I tried via desktop but states that it is read only data and so can't be deleted.  I need to delete 6000 entries LOL
    Help! Can someone just give me a phone number as have searched internet for help and no solution to problem.  Calendar completely useless now and feel like throwing it out of the window...and then stamping on it 6000 times (as many times as there are erroneous entries on my calendar!!!)
    PLEASE PLEASE PLEASE IS THERE SOMEONE I CAN PHONE WHO WILL TALK ME THROUGH THIS

    Hello 123tracye and welcome to the BlackBerry® Support Community Forums.
    Sorry to hear you are having Calendar sync issues with your BlackBerry® Curve™ 9300 smartphone.
    You can call your mobile network carrier for walkthrouh assistance with this request and if needed, they can transfer you to Research In Motion® .
    If you want to try and resolve this yourself, in your Calendar go to Menu>Options and click on your Gmail® account and clear the check from Wireless Synchronization. 
    You can then clear the Calendar database on your BlackBerry as shown in KB10167 How to clear the user content databases from the BlackBerry smartphone
    Hope this answers your question.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • I can't create mi Apple ID and can't connect into iTunes Store HELP PLEASE NEW USER

    Hi, im new with this. I just got a new MacBook Pro 13" with IOs X Lion. Im having a big trouble with my apple ID. I cant create an ID. first was the credit card security code. Somebody told me to follow the instructions in this link to solve the problem ( iTunes Store: My credit card's security code or zip code does not match my bank's records ) but i cant even connect to Itunes Store. PLEASE I NEED SOME HELP URGENT!!
    P.D: I created an ID on apple page but it seems that doesnt work for nothing. I tried using that ID on both (Itunes an App Store) but doesnt work.

    First and foremost, I agree with gdgmacguy about using the support link. That is most likely your best bet. But, I have read posts from other users that had issues with their Apple ID that you must enter your address exactly like it appears on you credit card statement. Don't abbreviate "street" or "road" - things like that - unless that matches your statement exactly. Have you moved and maybe not changed your address on your credit card statement yet...??
    I am not saying that is the reason you can't create the ID, but it has been an issue for some. You could try what I suggest, but the support link is the best way to go if you can't get it accomplished on your own.
    here is the support link.
    http://www.apple.com/support/appleid/

  • HELP NEEDED: new ipod touch not working

    i just got an ipod touch for christmas
    i previosly had and ipod nano and so allready had itunes with music and pictures on.
    i plugged the ipod into the usb on the back of my laptop.
    a camera pop up appeared which i closed.
    my ipod touch is fully charged now.
    itunes is not recognising and it is not anywhere on the menu.
    the ipod touch itself will only show what i have been told is a register screen (wire pointing towards itunes logo)
    on "my computer" the ipod is only appearing under scanners and cameras
    please help as i just recieved it

    Hello and Welcome to Apple Discussions. 
    You need to download and install the latest version of iTunes:
    http://www.apple.com/itunes/download/
    Ambie12, You should probably start a new thread for your issue if downloading iTunes 7.5 doesn't help.
    Coolmaxx, have a read of this article:
    http://docs.info.apple.com/article.html?artnum=93716
    mrtotes

  • Help needed - moved user accounts

    I did an upgrade install on my Dual G5 today, but Leopard doesn't know where my users' files are located. I have a very fast (but smaller) HDD for the OS, and moved my user files to a larger HDD. The links were not carried over in the upgrade/install.
    I believe it was a post from Kappy that helped me in moving my user folders initially. Can anyone help me with the needed command line entries needed so that Leopard knows to look to the other HDD for my users?
    Thanks-Gary

    If you've reached the limit of 5 authorisations you have the option once a year to deauthorise them all in one go and start over. By the way, this has nothing to do with the number of products you've purchased and registered. The reason for this is that you have a limit of 5 computers on which you can play purchased content: About iTunes Music Store Authorisation and Deauthorisation
    If your system crashes or your reinstall your operating system without deauthorising iTunes first, even a single computer can use up your limit of 5 authorisations. See also this article: One computer using multiple iTunes Music Store authorizations

  • IPhone 5s and iTunes Help Needed - NEW PC

    Hi, I got the iPhone 5s back in October (1st ever Apple product) and transfered my music and photos onto it via iTunes.
    What I need help with is as my laptop is in for repair (complete system restore) can I download  iTunes on mums laptop and put a few songs and pics on my iPhone WITHOUT clearing the  curent files and leaving me without nothing on it.
    Thanks
    James

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

Maybe you are looking for

  • Error in material mapping  between R/3 and CRM

    Dear community,   In our landscape we have a SAP CRM system (Release 4, SP10) and a SAP R/3 system (Release 6.20). We try to create a mapping for a standard R/3 field, from the material master with a custom defined attribe on the CRM.   The material

  • Apple display

    ok on the clear flat apple display did they all just have adc or did some have dvi

  • How to configure HA system

    Hi Expert, how to configure HA system, i am having ecc6.0 ehp4 with maxdb7.8.in my existing landscape i am having DR setup. please guide me on that. Thanks. Naresh KK

  • Designing an Airport Network

    Question 1. I have the document: "Designing Airport Networks Using Airport Utility" The cover says "Mac OSX V 10.5" I am running 10.4.11. Can I use that document? Is there another for 10.4.11? Question 2. The directions that come with the Airport Ext

  • Toolbar Drop-Down Box for rectangle etc not working

    Dropdown boxes for Toolbar (Pan, Transform, rectangle, Bezier, rectangle Mask) do not respond. The tools on right hand side of the bar (Add Generator, Behavior, Filter) are OK. I am using OSX 10.8.5 and motion 5.07.