Multiple problems with iSync 2.4 (e.g. "Exchange" error; Nokia E65)

Hi I have three questions regarding problems with iSync at the moment.
1. I'm confused with iSync the program and iSync the '.Mac' feature in System Preferences.
2. iSync often believes I'm trying to connect via Exchange. Not true, but it's stopping my syncing contacts in particular. I never use the Office Exchange program and one of the laptop user logins uses exchange for their email account via Mail. Can this be prevented. It currently stops all four users.
3. Nokia E65 - iSync Plug-in Problem:
I have downloaded the plug-in Nokia made available from their site ( twice and when I try to install it stops at the 'select the destination' section when I supposed to select my hard drive with a green tick. However, it has a red cross and says 'installing this software requires 156kb of space. You cannot install the phone plug-in on this volume. Please update to the latest version of iSync using Software Updates.'
FYI, I have the latest versions according the my Software Update of System Preferences on my 10.4.9 MacBook. I also have 3.7Gb of free space on my hard drive, and I've tried the recommended process from Nokia three separate times.
Any tips, anyone? I've posted this on a Nokia discussion board to see if there are any Nokia specific solutions.
Many, many thanks.
PB G4   Mac OS X (10.4.9)  

I have the same issue.. am trying out the option given on http://tek-kon.blogspot.com/2010/03/phone-memory-full-phonememory-phone.html

Similar Messages

  • Having multiple problems with script - NTFS Permissions and AD Groups

    Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
    1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
    2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
    3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
    is used differently later on in the script.
    4.  Verifies the entered information and requests confirmation to proceed.
    5.  Creates the folder.
    6.  Creates an AD OU and/or security group(s).
    7.  Applies appropriate security groups to the new folder and removes undesired permissions.
    Import-Module ActiveDirectory
    $Division = ""
    $DivAbbr = ""
    $OU = ""
    $OUDrive = "AD:\"
    $FolderName = ""
    $OUName = ""
    $GroupName = ""
    $OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
    $FSRoot = "E:\"
    $FolderPath = ""
    $DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
    [bool]$Location = 0
    do {
    $userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
    Switch ($userInput)
    W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
    S {"Staffing is not yet implemented."; break}
    P {"Packaging is not yet implemented."; break}
    default {"Invalid choice. Please re-enter."; break}
    while ($DivAbbr -eq "")
    write-host ""
    write-host ($Division + " was selected.")
    $FolderPath = $Division + "\"
    write-host ""
    $choice = ""
    do {
    $choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
    Switch ($choice)
    G {$Location = $false; break}
    L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
    default {"Invalid choice. Please re-enter."; $choice = ""; break}
    while ($choice -eq "")
    write-host ""
    write-host ("Location is set to: " + $Location)
    write-host ""
    if ($Location -eq $false) {
    $FolderName = Read-Host "Please enter folder name:"
    $GroupName = $DivAbbr + " " + $FolderName
    } else {
    $input = Read-Host "Please enter two-letter state abbreviation:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter city:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter street address number only:"
    $FolderName = $FolderName + $input
    $GroupName = $DivAbbr + " " + $FolderName
    $FolderName = $FolderName + " "
    $input = Read-Host "Please enter street name:"
    $FolderName = $FolderName + $input
    $input = Read-Host "Please enter any optional information to appear in folder name:"
    if ($input -ne "") {
    $FolderName = $FolderName + " " + $input
    $OUName = $FolderName
    write-host
    write-host "Path for folder: "$FSRoot$FolderPath$FolderName
    write-host "AD Path: "$OUDrive$OU$OURoot
    write-host "New OU Name: "$OUName
    write-host -NoNewLine "New Security Group names: "$GroupName
    if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
    write-host
    $input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
    if ($input -ne "Y") { Exit }
    write-host
    write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
    if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
    Write-Host "Folder already exists! Skipping folder creation..."
    } else {
    write-host "Folder does not exist. Creating..."
    new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
    Set-Location ($FSRoot + $FolderPath + $FolderName)
    if ($Location -eq $true) {
    $tempOUName = "ou=" + $OUName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "OU already exists! Skipping OU creation..."
    } else {
    write-host "OU does not exist. Creating..."
    New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
    $GroupNameMGMT = $GroupName + " MGMT"
    if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    # $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    write-host $BIUsersSID.Value
    # out-string -inputObject $BIUsers
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
    $objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
    write-host $ADGroupName
    write-host $objUser.Value
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    $ADGroupName = "JACOBSON\" + $GroupNameMGMT
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    } else {
    $tempOUName = "cn=" + $GroupName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "Security group already exists! Skipping new security group creation..."
    } else {
    write-host "Security group does not exist. Creating..."
    New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $FolderACL.SetAccessRuleProtection($True,$True)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
    First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
    into Powershell, they work as expected.  I've tried the following methods:
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
    In the second case, I get the following error message:
    Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
    At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
    +     $FolderACL.RemoveAccessRuleAll($Ar)
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IdentityNotMappedException
    This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
    also tried the solutions given in this thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
    http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
    My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
    the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
    My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
    Thanks!

    I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
    As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
    again utilizing the -Server parameter on the Get-ADGroup command:
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    # Add the new normal users group to the folder with Read and Execute permissions
    $GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    # Add the management users group to the folder with Modify permissions
    $GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
    Still having issues with the translation of the BUILTIN\Users group, though. 

  • Multiple problems with Mail

    Here is the setup:
    iMac Intel running 10.4.8
    Mail 2.1.1
    seperate user accounts, each with their own email address
    email is valornet.com (local ISP), set up to download to Mail
    Multiple problems with one of the user accounts (not affecting the others):
    1. Multiple copies in the inbox of the same message. These are brand new, not a week old as some other threads have mentioned. When I go to Preferences/Accounts/Advanced I have already clicked the "Remove Now" button, also the "Remove copy from server..." is checked.
    2. Mail will not stop retrieving new mail. The circle thing next to the Inbox on the left just keeps spinning, and spinning, and spinning...
    3. Cannot quit Mail. Have to go in Activity Monitor and Force Quit.
    4. My trash folder is gone.
    If anyone can help me clean up this mess, I would appreciate it.

    Verify/repair the startup disk (not just
    permissions), as described here:
    Th
    e Repair functions of Disk Utility: what's it all
    about?
    Minor bitmap problem needed fixing; fixed.
    Go to Apple Menu > System Preferences >
    Network, choose Network Port
    Configurations from the Show popup menu,
    and make sure that the configuration used to connect
    to Internet appears at the top of the list.
    It was showing Bluetooth first and ethernet 2nd; I moved ethernet to the top.
    In Mail, open Window > Activity Viewer. What
    do you see Mail doing there? Actually, you may be
    able to avoid having to force quit Mail by canceling
    whatever it’s doing (by clicking on the red stop icon
    of the activity).
    "Fetching new mail
    Fetching 5 of 5: updates on buses - Haskell Middle School"
    blue bar is moving, red stop icon is bright. I clicked on the stop icon and it "grayed out" but Mail did not stop the spinning circle next to the inbox. Still had to force quit.
    What are your Mail > Preferences > Accounts >
    Mailbox Behaviors > Trash settings?
    Trash can is back! One problem solved...
    Do you have any Mail plug-ins or any system utilities
    that could interfere with Mail? In the Finder, go to
    each of the following folders (if they exist). What
    do you see there?
    /Library/InputManagers/
    ~/Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/Mail/Bundles/
    None of the above folders exist.
    In the user's ~/Library/Mail/ folder (the user with the problems), she has:
    DefaultCounts
    Envelope Index
    LSMMap2
    MessageRules.plist
    MessageRules.plist.backup
    OpenedAttachments.plist
    SmartMailboxes.plist
    and the following folders:
    Mailboxes
    [email protected]
    Signatures
    The Mailboxes folder has two more folders inside:
    Deleted Messages.mbox
    Outbox.mbox
    The POP-... folder has the following folders inside:
    Deleted Messages.mbox
    Drafts.mbox
    INBOX.mbox
    Sent Messages.mbox
    and one file:
    MessageUidsAlreadyDownloaded2
    Incidentally, I now have 9 copies of the same email in my inbox and 7 copies of another. They are multiplying like rabbits!
    Thanks for your help so far.
    17" iMac (intel)   Mac OS X (10.4.8)  

  • Multiple problems with PSE10 Organizer

    I have Photoshop Elements 10 that I am using with Windows XP with Service Pack 3, a Pentium 4 CPU with 3 GHz, 2 GB of RAM and 48.6 GB of free disk space. I have had multiple problems with Organizer since I started using it.
    When I first got PSE10, I imported 8 years of my photos into one catalog in Organizer. I'm not sure how many images were included in this catalog but from what I've read, there's no limit to the number of images that can be placed in a catalog.
    Question: Is there any limit to the number of images that can be put into one catalog?
    Catalog A
    Problem 1) People recognition didn't work. When I tried to find people for tagging, the feature didn't work. After researching the problem online, I found that others who had the same problem solved it by rebuilding the catalog a few hundred images at a time. I deleted the original catalog with all of my images and created a new catalog with just 800 images from this year. Then, people recognition worked, and I was able to tag people. The only other feature that I have used in Catalog A is that I have edited a few images to improve exposure. I have not rated images, stacked them, renamed them or created albums. With this catalog, the Organizer and the Editor still work together so when I select a photo in Organizer to fix, the Editor opens up with the photo for editing like it is supposed to do.
    Catalog B
    I created another catalog that had about 900 different images from a European tour. I deleted some of those images so there are now 760 images in this catalog. At first, all the Organizer features seemed to work fine in this catalog. I was able to pull photos from Organizer to fix in the Editor. I rated all the images, stacked and renamed some photos and created several albums under an album category.
    Problem 2) A couple of days ago, the Organizer and the Editor stopped working together. Now, when I select a photo in Organizer and click on Fix, Edit, the Editor window comes up but the photo does not appear in Editor. The only way I can get an image into Editor is to pull it directly into Editor. Then, when I want to save it as a Version Set I have to choose File> Organize Open File in order to save the image as a version set.
    Question: How do I get the Organizer & Editor to work together again?
    Problem 3) The Exif data has disappeared on quite a few of the images in Catalog B even though the Complete radio button is highlighted under the Properties panel. Some of those images were never edited or re-saved.
    Question: How do I get the Exif data back into Properties.
    Problem 4) Yellow question marks continue to appear on the top left of some images even though these images have not been moved. The Organizer searches for the "missing file" and finds it quickly but why is it "missing"? I have gone through the albums in this catalog, completed the missing file searches on all the images so that no yellow question marks appear and when I go back to the catalog the next time I find the yellow question marks are there again!
    Question: Why does Organizer think the files are missing? Why isn't the file location remaining the same?
    Problem 5) When I re-opened Catalog A with the general 2012 images, I got a message that my watched folder had new photos to import. When I clicked on ok, the next window brought up 3 photos that were already in Catalog B of my European tour that were taken in September. Somehow, the Date Created and the Dated modified had been changed from 9/12 to 11/12 so the Organizer thought they were new images when they were not.
    Questions: Shouldn't the Date Created remain constant?  The Date Created does not seem to represent the date the picture was taken, so what does that date represent? How can I keep the date created from being changed?
    Both Catalogs
    All of the images in both catalogs show creation dates that are later than the date modified, (example: date created of 6/12 and a date modified of 3/12).
    Question: How is it possible that the date created is later than the date modified?

    Hey Paysonite,
    A lot of questions hmm!!! Let me try to answer few of them.
    Question: Is there any limit to the number of images that can be put into one catalog?
    Ans: No, you can import as many images in catalog you want. Just to add, as the size of catalog grows, Organizer's perfromance will be affected.
    Question: Why does Organizer think the files are missing? Why isn't the file location remaining the same?
    Ans: As you mentioned in your comments, you have deleted some files (i assume from explorer). But these deleted files are still present in Organizer. Since the deletion happened outside the organizer, so Organizer is unaware of the deletion. So when organizer tries to read the files (which were deleted), Organizer is unable to find then and thus thinks that files are missing.
    Questions: Shouldn't the Date Created remain constant?  The Date Created does not seem to represent the date the picture was taken, so what does that date represent? How can I keep the date created from being changed?
    Ans: Date created represents the date on which the files was created on your files system (or into OS). It is not date when the images was shot (actual shot date is Date time Original in Organizer).
    Question: How is it possible that the date created is later than the date modified?
    Ans: A simple way to do it is-Suppose you have an image which was brought/copied on July (i am explaining this with the help of month only. Assume date to be 1st and year to 2012). Now change the system date to August. Edit this image in Editor (without creating a version set for easy illustration). Now date created is July and date modified is Aug.
    Copy this fine on flash drive/pen drive. Delete the original file from windows. Change the system date to Sept. Now copy the file in windows and see its properties. It has Date created as Sept and date modified as Aug, which answers you question.
    I am unable to fully understand your remaining questions. Please elaborate.
    Also please let me know if you need more info with above answers.
    ~Andromeda

  • Multiple Problems with Toshiba Satellite A505-S6980 laptop??

    Hi,
    We purchased the Toshiba Satellite A505-S6980 laptop at Best Buy about a week ago.  However, we seem to be having multiple problems with it, that I wouldn't have expected from a brand new Toshiba. 
    Problems:
    Whenever I'm in Mozilla Firefox browser, it crashes 90% of the time.  Firefox was always my favorite on our previous computer, and still is, I just can't use it because it continually crashes. 
    In Outlook, whenever I try to open a message or reply, or basically any general command, it pops up an error message that says, "Could not install the custom actions," and then does whatever I'd wanted it too.  It's a pain, as we do a lot of email and calendar through Outlook.
    In Outlook, when I tried to import our Contacts, it says that we do not have the appropriate permissions to access the files.  We are the only user account on this computer.  We don't do seperate ones for each family member; we just turn on the PC.
    It seems to me like the internet crawls on this computer.  Every time we try to play a video (e.g. ABC, CNN, Youtube), it won't buffer.  It just stops and starts all throughout the video about every 3 seconds.  HUGE nuisance.  We watch a lot of videos. 
    Minor issue:  In Firefox, before it has crashed that is, on my old computer I used to be able to type "cnet" without the quotes into the address bar, and it would take me to www.cnet.com.  If it couldn't find the page, it would take me to my default search engine's page (Yahoo) with the search results.  On this one, if I type anything into the address bar (like search terms/keywords) it bring up search results with a My Start Incredimail search engine.  I want my Yahoo search engine, and I want it to find the page if it can. 
    I cannot seem to get the Aero Flick (I think) to work.  That was one of the main things I was looking forward to, but I can't figure out how to do it.
    It seems to me like the Windows Explorer freezes a lot.
    There have been multiple times when I'm typing that the keys don't work.  Like I would have to press the A key about 10 times to get it to show up on the screen once.  It's hit and miss and doesn't do it all of the time.
    This isn't a problem - just a question.  Is it best to leave the computer plugged in all of the time if it's stationary?  Or once it's fully charged, should I unplug it and let the power run down, and then re-charge it?
    **CLARIFICATION:  It's not Outlook Express, it's Microsoft Office Outlook 2007.  The one that you have to pay for.  Surely it works with 7, considering it's Microsoft?!?!
    If you can help me answer any of these problems/questions, I would really appreciate it.
    Have a safe and Merry Christmas!

    Yes, everything was fine with Firefox.  However, I have uninstalled it, and am just using Internet Explorer for now.
    Thanks for battery info...
    I'm well within the return window, but overall really like the laptop.  I've put a lot of time into it, and just want it to work right if possible.
    Thanks for the info.
    ScottinFla wrote:Concerning Firefox, have you checked your add-on list for any faulty plug-ins or extensions? Try disabling them and see what happens. Also, that search engine you mentioned may have somehow been installed on your machine. Have you checked the "Manage search engines..." window available from the search bar? Check your add-ons as well. You could always reinstall Firefox from scratch.
    As for the battery, it may not be best to continually run down the battery - followed by a long charge. Once a month or so should be fine. Otherwise, just try to give the battery some exercise every now and then.
    Are you still within the return window? Your unit may have a bad install, some bad RAM, or...
    I have the same model and it works just fine.

  • I have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this?

    i have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this

    Try downloading the trial. It ought to detect that you have a 64-bit system.
    You aren't using Vista, are you? PSE 13 requires at least win 7 and I think a few folks with vista have gotten a similar error message on trying to install it.

  • I have problems with the 'installation of creative cloud. Error Code: 205

    I have problems with the 'installation of creative cloud. Error Code: 205 What can I do to fix this?

    Errors 201 & 205 & 206 & 207 or several U43 errors
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • Multiple Problems with 4.2.1 update

    Hi. I installed 4.2.1, and am experiencing multiple problems ever since.
    1.) battery life is horrible I can fully charge it, and three or four hours later it is completely dead.
    2.) wifi is wonky or, mostly, nonexistent
    3.) ringtones vanished, and the default rings are barely-audible.
    4.) I keep getting a random message that I need to sync my photos.
    5.) Ipod volume seems to have gone down. I can crank my car stereo up all the way, and sometimes it's still not enough to hear my music.
    I have a two year old, non-jailbroken 3GS which I run on a macbook, and I'm pretty good about updating itunes and iphone OS on a regular basis. I've searched at length to find fixes and am just at my wits' end. I loved this phone, at least pre 4.2.1 I did!
    Any suggestions appreciated. Thanks!

    Hi, Action.
    Thanks very much for the well considered, thorough answer.
    I got everything working again (though will see what the battery does today), and this is what I did. I'm not sure which thing worked.
    1.) One blog I found suggested doing TWO hard resets in a row, which I did.
    2.) I went to
    settings
    Safari
    clear cookies/history/cache
    and cleared them all, twice, to be sure.
    3.) I went to
    settings
    reset
    reset network settings
    4.) I went to
    settings
    reset
    reset all settings
    5.) I deleted all my photos one by one (I had already saved everything I wanted to iPhoto), and discovered that (and I don't know if this is normal or not, but I had never noticed this before), one of my albums was "locked". This was an album of photos and jpgs I had tinkered with using various apps, Photogene, etc. I could view only. Couldn't delete or flick to resize anything in the album. When I synced my phone, I checked "sync photos" but made sure no album or other boxes were checked. This deleted the locked album, emptied my entire "Photos" app, and consequently removed the "sync photos" message I kept getting. I took a few test photos to doublecheck, and the message hasn't reappeared.
    I note that this is not only making my camera open faster now, it's making it take photos faster, and darned if they aren't better resolution as well. I had noticed, but not connected with 4.2.1, that my photos were really grainy and poor quality lately.
    6.) I did the opposite of what someone on this forum suggested. I always selected my one ringtone, which is what their suggestion was. I only have three, so when I synced, I selected "all", and it defaulted back to giving me a choice. My ringtone, btw, was a home made one, which I am very attached to. I spent hours researching how to salvage it, and thankfully, didn't have to get into figuring out how to change the extensions and length of the the thing as other forums suggested at terrifyingly great length.
    Memos and email are also opening faster, and I have my fast wifi back again while at home.
    It's kind of like a heart failure. I didn't realize I was getting slower and more winded, it was so gradual over the past few weeks. And now I've had a miracle recovery, and am ready to go run some sprints, lol.
    Thanks very much for your suggestions and quick answer. I spent hours and hours researching my problems with 4.2.1 and my ringtones.

  • Multiple Problems with PDF InDesign, Bridge, and Acrobat Reader

    I create proof books with a blend of Adobe Bridge & InDesign.
    Here is my work flow: I will BOLD the errors I am having and need help with.
    Step 1.) I create contact sheets in Bridge and save them as PDF's
    Problem with Bridge ( I have another posting for this thread as well under Bridge) I cannot save PDF's larger than 400ish photos at 300ppi (important for my printer) without it saving as a blank PDF. COMPLETELY EMTPY! So I have to split up my photos into groups of 400 or less photos then patch them back together.
    Problem with Acrobat: If I patch those PDF’s back together with Adobe Acrobat (a suggestion from another person on here) they save great but I get an error when I try to import them in indesign. The error reading: ERROR. Cannot determine page count.
    Please open the PDF file in Acrobat, do a “Save As…” and try again. (99)
    Step 2.) I use a script (MultiPageImporter2.2.1.jsx) to import the PDF's into Indesign. (if saved as one pdf in acrobat I get the above error)
    Problem With InDesign: I run this importer script in InDesign to create my books with a template I use from my printers. Well since I have to import multiple pdf with multiple pages ( because I can’t piece them together without the above error. Then I have this problem:
    I place a pdf with 1-226 pages in. I start this on page 1.
    I place the next pdf with 1-141 pages in. I start this on page 227.
    An error pops up that says I MUST start my import on page 226!!!!!!!!!! I don’t want to import on page 226 because I have two photos on that page!
    I tried it several ways and no matter what I loose my last page of my first import.
    PLEASE someone help me! I feel like I might be doing something really silly but I’ve spent 7.5 hours today working on this books with error after error.
    I have done all the updates on my computers and nothing works. I use two macs and both have the same errors. I have a mac-book Pro | snow leopard and a Imac | snow leopard.
    Thanks much!

    All your problems seem to stem from the PDFs that you are making from Bridge.  What you are describing should be perfectly possible, but the fact that Bridge doesn't want to make a PDF with more than 400 photos and it all goes downhill from there makes me suspect Bridge.
    Here's a plugin that may help?  Looks pretty cheap for what it does.
    Apart from that I'd try to clean up the PDFs that Bridge is producing if Indesign doesn't like them.  One way would be to print to a new PDF, after you've combined them as necessary.
    As to the last pronlem you mention, where it forces you to place on page 226, have you tried creating a blank page 227 first, before you try placing?

  • Multiple problems with Firefox 3.6.6 - Java Console, Flash, PDF & opening

    running Windows XP with Firefox 3.6.6. I just upgraded to 3.6.6 & since then have been having multiple problems. 1) 3.6.6 takes a LONG time to load or hangs 2) As recommended Flash plugin updated to Flash 10.1. Subsequently Flash doesn't work. All I get when I use Firefox on any site is the F in a circle that indicates that flash is necessary to display the page. I have no problems with Flash on Google Chrome. 3) Java Console having issues. When 3.6.6 opens it says Java Console must be updated. So I update it. Then when it opens it says it's not supported & needs to be removed. Each time it wants me to restart Firefox to complete the task. If I say restart later cause I'm sick of opening & Closing again & again it pops up every 5-10 minutes & asks again. Please HELP!! 4) PDF files will not open since upgrade to 3.6.6. Having no issues with Google Chrome. It opens in miliseconds & runs everything but I prefer Firefox if it can be gotten to work right. Desperately need help.
    == Upon upgrade

    Please respond with a list of all of your Extensions.
    -type '''about:support''' in your URL/address/location bar and press the Enter key
    -click "Copy all to Clipboard"
    -paste into your reply
    <u>'''1).'''</u> Please explain "long time to load" in more detail; approximately how long? Hanging when: on startup of Firefox, during use (please list some sites/pages, if so), at shutdown?
    For hanging at exit:
    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    <u>'''2).'''</u> Could be caused by a Flash-blocking Extension (the reason for asking for your list of Extensions) or could be in your Firewall or AV/AS application. What Firewall and/or AV/AS applications to you use?
    See: [[Firewalls]]
    <u>'''3).'''</u> Again, the reason for asking for your Extensions. Is it Java Console or Java Deployment Toolkit in the error message. Need version numbers on both of the above. You may have some Java remnants from a prior Java version; Java does not clean-up after itself and we can help you remove some of those remnants, if you will supply the information. See:
    http://support.mozilla.com/en-US/kb/Java-related+issues
    http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    http://support.mozilla.com/en-US/kb/Java+Deployment+Toolkit+Blocked
    http://kb.mozillazine.org/Java
    Some users get confused about Java and JavaScript; here is some information:
    http://kb.mozillazine.org/JavaScript_is_not_Java
    http://support.mozilla.com/en-US/kb/JavaScript
    <u>'''4).'''</u> What are the results when you try to load a PDF file off of the internet? You need to check for an update of Adobe Reader (yours appears to be an older version) and after checking for updates to Adobe Reader, check your settings in Tools > Options > Applications for "Adobe Acrobat" Content Types. See:
    http://support.mozilla.com/en-US/kb/Options+window+-+Applications+panel http://support.mozilla.com/en-US/kb/Managing+file+types
    http://kb.mozillazine.org/File_types_and_download_actions
    <u>'''You'''</u> ~~red:<u>'''MAY'''</u>~~ <u>'''need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Start > Program Files, find and click Adobe Reader to open, click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Multiple problems with new retina iMac. Suspect graphics driver

    New retina IMac, top spec, with latest Yosemite, and additional Cinema Display attached. Having multiple problems which I suspect are being caused by the graphics driver:
    The long running issue with Adobe PS whereby under certain size options the tools cursor disappears and just has the arrow cursor.
    With no warning, after doing an action such as opening an application the system reverts immediately to the login screen and does not show me as logged in.
    After switching users, a blank screen other than the cursor is shown. Seems I have to power off to get past this one.
    Can anybody shed any light on any of these, at least so that I can discount my theory of a single culprit?

    So I went onto the Adobe forums and found a number of threads on this subject. A staff member replied with the following:
    It's a video card driver bug introduced in MacOS 10.10 (which looks a lot like an old bug they fixed in 10.9).
    Apple is aware of this, and the other video driver issues in 10.10, and working on solutions.
    So thanks to Adobe we now know.

  • Multiple Problems with my 3rd Reader

    I've owned the right to a Sony PRS-600 Reader for the past Two years. After my first one broke down due to unknown causes, it was returned refurbished within the month. The second time the refurbished Reader broke down (same model) I waited six months for a refurbished model that was returned to me Tuesday last week. Now, I'm experiencing multiple problems; when I log on to my account with or without my Reader plugged in, I get a message that says, "This device has been reported lost. please contact our customer support." Seeing as finding customer support has been difficult for me, I figured htis was the next best place to go to find help. The Sony Reader Library has been attached to 9 computers (unsure of how that can be, considering how I only have five) and two Reader's that named themselves Device 2 and 5. I can't authrowize my new Reader to my account for a reason I don't understand. Has one of my past readers been reported lost? Or my account? What does that even mean? Before my last Reader was sent in after it broke down, I moved some of my 150 books (which I can't afford to loose) onto an SD chip, but whenever I try to read some of the books that are on my chip in my new Reader, I get a symbol with text that says "Protected Page". I've loved my past Readers, but after all that has happened, I'm starting to give up. What am I doing wrong? What do I need to do to fix this issue?

    Thank you for your post and welcome to the forum.
    It's appears that the authorizations have got mixed up - this is something Reader Store customer support can resolve for you. Give them a call and they can get the Reader authorized and registered properly for you - their number is on the following page:
    http://ebooks.custhelp.com/app/answers/detail/a_id/93

  • Multiple Problems With 10.4.11 Upgrade

    Having just installed the 10.4.11 upgrade I am experiencing multiple problemss with permissions and file corruption since the upgrade. Files are inaccessible to users even after resetting permissions via sharing in Workgroup Manager. W e are a prepress environment running Quark with illustrations in Illustrator and Photoshop. We experience file corruption when collecting Quark files via Flighttcheck. Even copying simple Word text files to the Xraid proves troublesome as the file is reported as unreadable once on the Server. What is the problem with the latest upgrade? WE are virtually shut down until we resolve this problem.

    I also seem to have mouse problems with 10.4.11, turning off airport gets around it for now:
    http://discussions.apple.com/message.jspa?messageID=5901275#5901275
    I have also seen the error code mentioned by Jerremmy:
    http://discussions.apple.com/message.jspa?messageID=5866126#5866126
    The following is yet to be confirmed:
    http://www.ctforumgroup.com/forum/viewtopic.php?f=108&t=2190
    Also, others have seen 4SNS with TCOD and TCOP error codes, rather than TGOD:
    http://discussions.apple.com/message.jspa?messageID=5829544

  • Multiple problems with 80GB classic, don't know where to start.

    Hey guys,
    I got an Apple classic 80GB for my bday early August and lately i've been having so many problems i dont know where to start, i'll try to explain them as best as i can.
    *problem 1:* Whenever i plug my iPod into my PC, it locks up the system for about 5 minutes, then comes up with an error box saying that 'There is a problem with your iPod yadda yadda restore etc'.
    I proceed to restore the iPod, then once its restored and reconnects itself, it repeats the cycle by freezing then telling me to restore. The only way i can do a restore and have it not give me an error is if i reboot when it is disconnected.
    *Problem 2:* When i finally get it up and ready to sync, i go to sync all my files (About 2000 songs). It gets to around the 1500 song mark then says there is an error and the iPod disconnects itself.
    It then instantaneously reconnects itself and starts syncing from where it left off.
    Once it has then sync'd all of the music ad tells me its ready to be ejected. I eject the iPod and disconnected it.
    I then go into the iPod and it has no songs/videos/photos, yet it has still used up about 15gb. If i reconnect it, it will just sit there for 5 minutes not syncing, it will then randomly say the sync is done and it will eject itself.
    FINALLY after all that i have my music on there
    *Problem 3* Once the songs are on the iPod, it becomes insanely laggy. If i navigate to a song and press play, it will take about 10 seconds for the actual song to play. The delay is just as bad for next song, pause etc. Even using it in my cars head unit causes it to lag.
    *Problem 4* If i do get a song playing after all that, about 1/5 songs will just randomly skip to the next song without letting it play through.
    I have all the latest iTunes/Firmware/Drivers for everything on my PC and iPod.
    I have sent it back to Apple for repair yet they could not find anything wrong (Yeah right :|)
    If anyone out there could help me please, im at my wits end with this infernal machine.
    Thankyou

    *Outdated operating system:* Cant be, im running XP SP3 with the latest updates
    *Computer needs updates:* I've got the latest drivers for all of my hardware, including BIOS
    *Software interference:* THe only other program i have running in the background is Kaspersky Antivirus, but that is disabled when i try to sync
    *Damaged Files* Possibly, i played through the album where it froze at and even reo-imported it, it seemed to play and import fine
    *Unregistered .dll files (Windows):* Tried this fix, but it did the same problems as the original post. Such as freezing on a certain song, then reconnecting itself only to put the music on there, yet it is really laggy
    *Damaged disk structure:* Tried this fix, didn't help
    *Corrupt iPod photo Cache* I have never tried to put photos on it, so i dont see how this could be it.
    *Lost connection:* Checked it, it's very firm and unlikely to come loose.
    *Conflict with third-party hardware:* I dont have any connected, nor have i ever
    *Bad hardware:* I tried it on all of my 8 USB drives. I dont use any hubs or firewire cards so this couldn't be it.
    Also i forgot to add that 1/5 times i go to restore, it locks the computer up and windows gives me a 'delayed write failed' bubble

  • Multiple Problems with 5.5 month old MacBook

    Okay. I've had my MacBook since March 3rd of this year. I have a few problems with it. It's the 2GHz model with a "SuperDrive", 1GB of RAM and a 160GB HDD I added myself. I added it in May, well after my problems had begun.
    My first problem is that the keyboard squeaks. This started about a week after I bought it. The spacebar and "Enter" keys begin to squeak after about 20 minutes or so of use.
    The second problem is that the palm rest has been showing some discoloration, but not very noticeable.
    Now for the real hardware problems.
    First up, this problem is very random, sometimes the system will not boot right away. I mean, I'll press the power button and the screen will flicker. The little sleep/power light will come on and then nothing will happen for about 20 or 30 seconds. After that, the screen will light up and the sound will play and everything will work fine. Sometimes I will press the power button and nothing will happen. I have tried everything suggested in the help topics at this site and nothing has helped.
    The second problem is that, occasionally, my iPods will act as if they are connecting to nothing. It only happened with my 80GB iPod. But tonight it happened with my 2G 4GB iPod mini. Both using different cables. This started tonight after experiencing the problem I mentioned above. The last time I had an iPod act like it was connected to nothing was right before the motherboard in that particular computer died.
    So those two problems right there make me believe I have a faulty motherboard.
    My third problem is with the "SuperDrive". Lately it has been having problems reading discs. Randomly, I will insert a disc and it will spin it.. then spit it back out. Again, randomly, it will sometimes take 3 or 4 tries before it will finally read the disc. I can try that same disc again a few days later and I will read it no problem. This happens with professionally pressed (store bought) discs and burned discs as well. Which leads me to the next issue with the optical drive. It can write CDs fine. But DVDs are another story. Any brand of disc from any manufacturer has the same result. This happens in Windows and OS X with a variety of software, including OS X's built-in software. I cannot burn a disc successfully over 2x. If I try to burn a disc over 2x, even at 4x, it fails. What happens is that, when the burn starts, it will spin the disc at 2x while burning for about the first 10% or so. Then it will spin up to full speed. If the disc is a video, after that point (which usually translates into about 15 minutes in with a 2 hour video), the movie will skip and stutter randomly on every DVD player I try to play the disc on. If it is data, more often than not, the disc will not successfully pass the verification process. If it does pass, only the "SuperDrive" will be able to read it and nothing else will. And usually when it does pass, if I am present for the entire verification process, I can hear the disc being spun up and down at varying speeds so it can read it.
    The last time I had that happen was with a bad drive that failed at around the 6 month mark. My first DVD writer, so I didn't know then that it was the sign of a dead/dying/bad device.
    The final problem has to do with the hinge on the screen. I'm sure anyone reading this is aware of how the MacBook opens. Well, on the rounded plastic on the hinge, that goes directly into the path of the exhaust fan when the screen is open.... the plastic is starting to slightly bubble and come part. It has also slightly changed color.
    Now I really don't know what to do. I don't have a credit card, so if I call Apple Care I will have to argue with them to listen to my problems because they are not software related and, based on what I've read, they require a CC number to proceed with any help.
    And the closest Apple Store is a 75 mile round trip away, so it is not reasonable to drive there. I also cannot drive there and leave the system there because I have no other computer until the middle of next week.
    So, any advice would be great. Thanks.

    I'm definitely going to call.
    However, its definitely not the hard drive causing the issues. The problems began before the drive upgrade and continued afterwards.
    Besides, the discoloring plastic, iPods acting as if they're connected to nothing, and the DVD burner not being able to burn discs have nothing to do with the installed hard drive.
    Neither would the random booting issues. If the hard drive was causing an issue, the system simply wouldn't boot.
    I built many PCs before buying my Mac and had a couple of Windows laptops as well. I know enough about hardware to know that the problems I'm having now are completely unrelated to the drive upgrade.
    I also live in California and I'm very aware of the consumer protection laws here as I had to research them and bring them up against HP when the motherboard in my HP system died. So I'm the last person they will be able to push around

Maybe you are looking for

  • Error Message "Microsoft Access" 12514

    Oracle ODBC ORA-12514 : TNS : Listener could not resolve Service_Name given in connect desciptor (#12514) Microsoft ODBC Driver Manager Driver's SQL_Set Connection Attr Failed We are trying to connect Access 97 to the (HHRM) McKesson Horizons Human R

  • Since I downloaded the free upadted version,I cannot cut and paste

    I know that my mouse is working. but this happened since Friday. I tried to change the setting on the mouse but I still am unablea to cut and pasteed

  • How does Firefox handle xml:base when generating GET requests for SVG image elements?

    I am loading an SVG image at the following URL: http://localhost/howl/svg/id/543 The source for this SVG code is: <svg xml:base="/howl/"> <svg width="535" height="325" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <im

  • Concatenate characters to characteristic value enetered

    Hi, We need to concatenate some characters with the Cost Center data entered by users and populate the resultant data in another characteristic, for the same transaction record - this needs to be done before data is written to the cube. Some topics i

  • Font Palette

    When I have a text selected, is there a way in the font palette to scroll down one font after the other one using a key board command instead of use the mouse?