Why are my brushes lumpy and skipping!

I just got Elements 12 on trial to use on my Wacom companion tablet (Windows 8) and all of the brushes look lumpy and skiping. I have a document 16x12 inches at 300dpi and I am trying to sketch. The pencil and brushes are all jittery at the smaller size, even the soft brushes. I do not think it has anything to do with my tablet driver because sketchbook pro and Corel paint are working nicely. Is there some kind of smooth feature that is not 'on' by default in PS Elements? I hope someone can help me with this before the trial runs out.

Before you do that, try this. Go to the editor preferences>general, click this button and restart the editor:

Similar Messages

  • Why are all my movies and tv shows now on my ipad with the icloud icon?  How can i get rid of them?

    Why are all my movies and tv shows from my library now on my ipad with the icloud icon?  I have turned off all icloud related services. I have never used it.  On top of that, my ipad now gets stuck on step 5 of the sync - waiting for changes to be applied and never finishes.
    Help

    Hi, go in Settings, under Videos turn off "Show all videos"  this will remove the purchased videos to be displayed in the Video app.  The same can be done with the music.
    As for Step 5, connect you iPad and on the summary Tab, uncheck
    "Sync only checked songs and videos".  Then wait, it takes a while but this made it work for me after many restore attempts.
    good luck

  • HT5085 I have found that at least 3 music videos that I had previously purchased are not available in my I-tunes music video list.  I paid for them over a year ago, why are they not accessible, and why did they just disappear from my lists?

    I have found that at least 3 music videos that I had previously purchased are not available in my I-tunes music video list.  I paid for them over a year ago, why are they not accessible, and why did they just disappear from my lists?

    Have you deleted anything from your iTunes library ? Have you checked to see if they are still on your computer, but not listed in your iTunes library ?
    If not then do they show in the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage for redownloading ? If they don't show there and others do and they are still in your country's store, then check to see if they are hidden : http://support.apple.com/kb/HT4919
    If they are no longer in your store for redownloading (or you aren't in a country where music videos can be redownloaded) then you will need to copy them back from your backup of your library/downloads.

  • Why are the threads start and terminate randomly?

    Hi there,
    I got the program below. I am wondering why are the threads start and terminate randomly? Everytime, I run the program, it produces different results.
    I know that these four threads have got same normal priority (should be 5), and under windows there is something called timeslice. Then these four threads rotate using this timeslice. How do we know what exactly the timeslice is in seconds? If the timeslice is fix, then why the results are ramdom?
    Thanks in advance!
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package mythreadone;
    * @author Administrator
    public class MyThreadOne implements Runnable {
    String tName;
    Thread t;
    MyThreadOne(String threadName) {
    tName = threadName;
    t = new Thread(this, tName);
    t.start();
    public void run() {
    try {
    System.out.println("Thread: " + tName);
    Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println("Exception: Thread "
    + tName + " interrupted");
    System.out.println("Terminating thread: " + tName);
    public static void main(String args[]) {
    // Why are the threads start and terminate randomly?
    new MyThreadOne("1");
    new MyThreadOne("2");
    new MyThreadOne("3");
    new MyThreadOne("4");
    try {
    Thread.sleep(10000);
    // Thread.sleep(2000);
    } catch (InterruptedException e) {
    System.out.println(
    "Exception: Thread main interrupted.");
    System.out.println(
    "Terminating thread: main thread.");
    1. Firstly, I set in the main function:
    Thread.sleep(10000);
    and I run the program it gives:
    Thread: 1
    Thread: 4
    Thread: 2
    Thread: 3
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Run it again, it gives:
    Thread: 2
    Thread: 4
    Thread: 3
    Thread: 1
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    And my question was why it outputs like this? It suppose to be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    Why these four threads start and finish randomly each time I run the program? I use Windows, suppose there is a timeslice (i.e. 1 second), these threads have the same priority. Then the threads should start and finish in turn one by one. Am I right?
    2. My second question is:
    When I change the codes in the 'main' function into:
    Thread.sleep(10000); -> Thread.sleep(2000);
    it gives me the results like:
    Thread: 1
    Thread: 4
    Thread: 3
    Thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    Terminating thread: 4
    Terminating thread: 3
    Terminating thread: 2
    BUILD SUCCESSFUL (total time: 2 seconds)
    Run it again:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: main thread.
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    I tried several times. The main thread always terminates before or after the first child thread finished.
    My question is why it doesn't output something like:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: main thread.
    Terminating thread: 1
    BUILD SUCCESSFUL (total time: 2 seconds)
    or
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: 2
    Terminating thread: 1
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 2 seconds)

    user13476736 wrote:
    Yes, my machine has multi-core. Then you mean that if I got a one core machine the result should always be:
    Thread: 1
    Thread: 2
    Thread: 3
    Thread: 4
    Terminating thread: 1
    Terminating thread: 2
    Terminating thread: 3
    Terminating thread: 4
    Terminating thread: main thread.
    BUILD SUCCESSFUL (total time: 10 seconds)
    ???No.
    >
    How to explain my second quesiton then? Why the main thread always terminates before some of the child threads end? Thanks a lot.

  • After syncing my music onto my iphone5, why are songs grayed out and not playable

    after syncing my music onto my iphone5, why are songs grayed out and not playable?

    If you are syncing music to the iPhone automatically, you won't be able to drag and drop tracks on to the iPhone and the music will be grayed out.
    You'll have to Manually Manage the music.
    Configure iPhone, iPad, or iPod for manual management
    If you have iTunes 7 or later*, follow these instructions:
    Connect the device to your computer.
    Open iTunes.
    Select iPhone, iPad, or iPod in the Devices list.
    Click the Summary tab and select "Manually manage music and videos".
    Click Apply.
    Even when you have enabled manual management, you can still sync some content automatically. Select any content tab, such as Video, to enable automatic syncing for that type of content.

  • Why are my AOL mail and AIM icons suddenly missing?

    Why are my AOL mail and AIM icons suddenly missing. I can still access both by passing my mouse over the area previously occupied by the icons

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    No data will be lost.
    If these don't work try Settings > General > Reset > Reset All Settings

  • Why are Bounce in Arrange and Environment not 1 & the same?

    Just wondering why (like in 8) Bouncing in the Arrange window and in the Environment are different? I noticed this again in 9, when doing stems, bouncing in the Environment (so I can solo different tracks more quickly) I was wondering why on earth LP9 was adding tracks to the Audio Bin despite the box not being ticked. I clicked on Bounce in the Arrange, and sure enough, the Add to Audio Bin button was checked.
    Does anyone know why it seems these Bounce buttons are independent of each other? The other issue is if you have a solo output (if I'm bouncing Mono) - and click on bounce in the Arrange window - it makes the file stereo (The Interleaved/Split menu is selectable) where as doing the same thing in the Environment (albeit clicking bounce on the mono output channel) Greys out that field on Split (as it should be)
    B

    Ben Collier wrote:
    Hi Erik - sorry to take so long to reply - I didn't get an email reminder - odd...
    I think they reset something on the forums, because my subscription to the forum was gone a few days ago as well, I had to subscribe again (which is not really a chore, luckily... )
    The Bnce button at the bottom of the Out 1-2 in the Environment (I don't use the mixer)
    Mixer & env mixer are the same thing, really.
    and the Bounce button at the top of the Arrange window
    Now I have to start Logic, a bounce button at the top of the Arrange window...?
    Ah, now I get it, the toolbar! (I never use that and click it away in all my projects & templates.)( That is the same command as choosing bounce from the File menu, or hitting ctrl-B (my KC for Bounce
    are not going to the same bounce window (odd I know!). I've noticed that if the Arrange-Bounce window has "Add to Audio Bin" selected and the you bounce (or press Bnce) from the Environment window, and switch "Add to Audio Bin" off in the Environment's Bouonce window - it will still add them to the audio bin because that setting is on in the Arrange Bounce window - it's driven me bonkers on many occaisions! Try it - you'll see what I mean. It's been there in 8 and it's still there in 9.
    Actually, I do not see it behave like this. Here it appears that both bounce windows are in fact identical, and that wherever the last setting was made, that becomes the setting the next time you get a bounce window, either from the Env mixer or from the Bounce command in the File menu or indeed the bounce button in the toolbar or in the 'regular' mixer. They all pop up the same window, with the last set settings still set. whether it be *Add to Audio Bin* or *Add to iTunes Library* plus all combinations of both and neither.
    I've also noticed level differences on our main rig when importing them, despite both being bounced at 96 and in realtime.
    I find it quite difficult to say this, but I think those differences have nothing to do with the method of bouncing. And it being at 96 kHz does not mean it has audibly different levels, on the contrary, a bounce at 96 is probably not discernable from one at 48, in a blind listening test.
    I'm convinced that in whatever way you give the command to bounce, it is the same process. There must be another overlooked factor responsible for those level differences. I trust you have the Normalise function Off when you bounce? And you have not changed the pan law settings between bounces? And no plugins that use some Random settings?

  • Why are "Signatures" so Unreliable and Buggy?

    Using OS 10.5.4
    Ok, why are the Mail "Signatures" so buggy and unreliable? I opened Mail today and when I go new Message my signature do not show up. They worked fine yesterday.
    I went into the Preferences and under "All Signatures" it shows that I have 2 signatures, but when I click on my 2 different mail accounts (below "All Signatures") the signatures are missing.
    I didn't change anything to make them not work so what's up?
    Also when I create a new message I can't choose a signature from the little drop down in the email. Why is that?
    Very frustrated signatures have never worked properly.
    Thanks

    Your signatures are stored as webarchive files in your <home>/Library/Mail/Signatures folder. There should be a webarchive file for each signature and they in turn are referenced in a SignaturesByAccount.plist file within the same folder. It is possible that the plist file has become corrupted and/or the signature files are corrupted. Move the SignaturesByAccount.plist file to the desktop and then re-create your signatures to see if that resolves the problem.
    Chris
    Message was edited by: 2point5

  • Why are you blocking google and how do i get it back?

    I get a blocking message about google. I need google. Why is it being blocked and how do i get it back. What other search sites have you blocked?

    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • Why are my iPhone 4S and iPad 2 so slow, and crashes after the iOS 8 updates?

    Even after the iOS 8.0.2 update, both my iPhone 4S and my iPad 2 are very slow to respond to the touchscreen. Some of my apps crash. Safari is very slow. Everything about the iPhone 4S and my iPad 2 are just overall slow, and sometimes unresponsive. I feel like I am using one of the first android touchscreen phones and tablets. They do not any longer feel like an Apple product. I wish I had never updated.

    Also forgot to mention about the syncing with iTunes. Each morning, I have to literally turn off and then turn back on the 4S iPhone and the iPad 2 to get them to be seen by iTunes and sync. Yes, I am using the updated 11.4 iTunes on my iMac.

  • Why are my apps updating and downloading slowly?

    Why do my apps update and download slowly?is there a fix for ipod 5

    Just slow internet connection/slow server.

  • Why are my mp3's and m4a files no longer recognized?

    All of a sudden, 95% of the 10,000 music tracks in my iTunes Library has become unplayable. It concerns mp3 and m4a files with music that I purchased and ripped over the years. Wifi syncing to my iPhone 4s made it worse: now the Music app on my iPhone won't play them either.
    All tracks added before Mid September 2012 are dead. They can be seen in the library and metadata can be read in iTunes. But when I click on the file, nothing happens. Newer files do play normally, though. MP3's that were not located in the iTunes library also still are playable.
    I tried opening the files with VLC player, Quicktime and even on a windows machine. All I get is a message that songitle.mp3 cannot be played because it's format is not recognised.
    It has been over a week since I first noticed the problem and I spend many late hours. What is going on? Has Spotlight messed with my music's metadata? Is Apple denying me access to my own files? HELP!
    What I tried:
    - restore files from Time Machine backup: same problem
    - play files on other machines: same problem
    - repair a file with MP3 Scan+Repair. It says: ERROR: Unknown file format!
    - decrypt HD by disabling FileVault: no improvement and Time Machine won't work anymore (Stupid)
    - do a fresh install of Mountain Lion: no improvement
    - restore files from Carbon Copy Clone: same problem (has Spotlight done this while indexing the external HDD?
    - boot from the Carbon Copy Clone (turned out impossible due to the Verbatim external drive that won't boot-should have tested that before I ran into trouble )
    - find solutions in apple discussions, google etc for almost ten days: no solution
    What struck me in Console
    Some messages in Console struck me, but did not lead me to any useful clues:
    25-11-12 22:33:48,000 kernel[0]: Sandbox: sandboxd(317) deny mach-lookup com.apple.coresymbolicationd
    26-11-12 21:06:44,919 sandboxd[970]: ([963]) QuickTime Player(963) deny file-read-data /Users/MyName/Music/iTunes/iTunes Music/Folder/Album/Song.mp3
    25-11-12 22:51:01,030 mdwrite[422]: *** Assertion failure in +[MDKeyRing _copyKeychainAtURL:canCreate:], /SourceCache/Spotlight/Spotlight-707.3/xpc-services/mdwrite/MDKeyRing.m:131
    25-11-12 22:53:18,757 mdwrite[525]: Metadata.framework [Fatal]: Couldn't add Spotlight Metadata Privacy password to keychain! [osErr:-50]
    26-11-12 21:19:59,863 com.apple.PassXPCService[1166]: PAPassValidator: _signatureIsValid failed to load signature file
    Software Versions:
    OS X Mountain Lion (10.8.2)
    iTunes 10.7 (21)
    Quicktime Version 10.2 (603.6)
    On iPhone 4S: iOS 6.0.1
    Hardware
    MBP 13" Late 2011,
    2.8 GHz Intel Core\
    6 GB 1333 MHz DDR3

    You're welcome: I am happy you are thinking along.
    We may me on to something: I could not access my account on Sep 11 and did a restore from TM. It did not go too smoothly, but it worked. That's when I decided to pick up the habit of making carbon clone copies again.
    Now if something would have been wrong with the songs in the iTunes/Music folder, it must have been copied just as wrong to the carbon clone. Hence the reason why my backed up songs won't play. So you could be right that the files were probably messed up Mid September and not just two weeks ago.
    But why haven't I noticed it before? Probably because all the music I like to hear is in my iPhone, that apperently doesn't do to many wifi syncing? It is strange though that for two months I could still play the music on my iPhone.
    What did happen just before I could not play them anymore, was the iOS update to 6.0.1. My phone's battery was draining fast and it became hot. Maybe the phone's Spotlight had to re-index? I don't know.
    FV was there since Jan, when I set up this machine. I did not run some kind of utility particularly on my music files.
    I think you are wise to stick to your OS version as long as it works well. Upgrading usually comes with some issues.
    About my setup:
    I started out on another MBP (mid 2009) with 10.5. Upgraded to 10.6 then to 10.7. Had some kernel panic issues, but solved them.The machine got stolen in January and I got my current MBP (late 2011) with 10.7 on it that I upgraded to 10.8 this summer. I started using FV in Jan with the new machine. The theft made me wonder if I shouldn't be more Utilities I use ever so infrequently:
    Onyx
    Drive Genius
    ClamAV
    Carbon Copy Cloner.
    Syncing/Backup takes place to
    Time Machine (full drive)
    iCloud (limited data)
    SugarSync (limited data)
    Dropbox (limited data)
    Google Drive (limited data)
    Carbon Copy Cloner (full drive)
    Other things:
    I put a hardware password on my laptop and a use Prey tracking software (not that it helped me to find back my old laptop btw)
    I can't remember what utility I was running at the time of the lockout in September. Maybe there was something like Drive Genius running when I had to close my MBP and leave. But since the music on my TM has the same problem, the whole lockout may not be the reason of the corrupted songs.
    Perhaps I should just accept my losses. I found an older backup with the oldest 90% of the songs that work. It's just that I am curious to know what went wrong to keep it from happening again.
    About moving to another forum: what do you think would be the best choice?  OS X Mountain Lion?

  • Why are iTunes, View, Window, and Help menu items disabled?

    I am frequently encountering an issue in iTunes 10.5 (141) where all the menu items in the iTunes, View, Window, and Help menus are disabled (greyed out). Why is this happening and can it be stopped?
    I've seen this issue on different Mac OS X 10.7.2 machines. It seems to occur during playlist manipulation, where I'm making new playlists, adding items to them and editing them and the items. In the worst cases, I'm forced to quit and restart iTunes, although I have to quit by using the context menu option in the Dock as the Quit option is disabled in the application.
    I'd appreciate any advice on workarounds for this that don't involve quitting and restarting iTunes.

    I'm also having the same issue.  It was happening with 10.5.1 and now still with 10.5.2.  I'm using a 2008 iMac running 10.6.8.  I do not use iTunes Match.  This seems to happen for no apparent reason i/o/w, I can't determine a pattern as to when it happens, but it occurs about once in every 10 times that iTunes is open and it seems to happen after it's been open for a while, but again, no particular pattern. 
    Sometimes, all the menu items are grayed out, and other times, 70% of the menu items are grayed out.  I can still use the other functionality in iTunes, but must must Quit from the dock (it quits gracefully and no Force Quit is necessary).  Relaunching restores eveything to normal for about a week. 
    I work with technical diagnostic issues and can usually pinpoint a problem, isolate an issue, or determine a pattern, but this one has me stumped. I thought 10.5.2 might fix it, but no.  Maybe 10.5.3?

  • Why are my pictures smaller and heavier on illustrator and photoshop?

    Hello everyone,
    I'm having a problem that I can't fix and it's geting in the way of my work. I'm the sole designer (and trainee) so I don't have anyone to help me at work with this.
    I work on a macbook pro (retina screen), with CSS, and when I scale pictures on Photoshop to, let's say, 1000px wide and then save them at 150dpi and to 300 dpi and open them on Illustratot, the pictures don't fit properly on an A4 board. And the 300dpi picture is much smaller than the 150dpi one (shouldn't it be the opposite?).
    And then, the real problem comes with my co-workers, who work on pc and with PhotoScape, when I asked them to scale the same pictures at the same ratio (1000px wide), when they send me the scaled pictures and I open them on the same Illustrator project, the picture is much much bigger than the one I scaled on Photoshop on my macbook pro, and at the same time much much lighter.
    My pictures are about Megas or Gigas heavy, and theirs is KB heavy.
    So each time I need to work with pictures I need to constantly ask them to scale these pictures and send it to me. Which is ridiculous.
    My projects keep being huge (very heavy) and I don't know why.
    Attached is what's happening. The biggest pic is the original one. The one on the left is the one scaled on PhotoScape, and the ones on the right were scaled on Photoshop at the same ratio as the one on PhotoScape (so they should have the same px in wide), and the one up is 300dpi, and the one down is 170dpi.

    PPI is the correct word for an image's resolution.
    As for printing: ask the service provider what's best for their workflow. It totally depends on the process, on the hardware, on the paper and on the size of the print.
    For video: use screen resolution unless you want to enlarge the footage in the video.
    Additionally:
    read the manual of the video software in use
    read about printing:
    Search for the "Creative Suite® 6 Printing Guide" in your preferred search engine.

  • Pictures - why are some pictures visible and some not?

    Why is it that some of the pics I transfered from my digital camera to my Macbook, iPad, from windows-system or from external drives and vs. are not visible on my Macbook.
    In this case my Macbook opens iPhoto and a while later indicates, that I will not be able to make the picture visible (cant remember the exact phrase that appears on my screen - its something like incompatibility of pics).
    Anyone, facing a similar situation, and please how to solve this fast?

    I am also having this issue, only difference is the playlist use to be on my iPhone but is not there now.  The playlist shows with no music in it now.  This particular playlist I downloaded all songs to my phone

Maybe you are looking for

  • Variable in Ruleset in Calc Manager

    Hi, I have created a ruleset with 4 rules. In each the rules have two real time prompts. But while executing the ruleset, both the RTPs are coming multiple times that means 4 times each. I have checked the ruleset in Calc Manager, there it shows the

  • Automate PDF Presentation stopped working

    I use the Automate -> PDF Presentation function all the time, and it suddenly isn't doing anything. It lets me into the dialogue to set everything up, and it looks normal, but when I hit "save" nothing happens. I've tried going back to files I've use

  • Help Needed To re-install my PSE 10. new OS (Win 8.1).

    I am trying to re-install my PSE 10. I am having difficulty in doing this. There are two separate files. I have a new OS (Win 8.1). The live chat person had me download both files. Now what do I do? Can someone walk me through this process? Thank you

  • Lightroom CC crash when delete image.

    Hi all I have installed Lightroom CC on my Windows 7 laptop (16 GB RAM, i5 core). When I'm in library module and press [CANC] to delete an image (not remove from catalog, delete from disk), LR sometimes crash. I must restart LR and repeat the operati

  • [Ann] HTML/CHM for CS6 Javascript

    I don't think I've ever been so fast before: http://www.jongware.com/idjshelp.html is updated, it now also contains my Friendly Help for CS6, as both HTML (separate files) and CHM (one compiled file for use with a Windows Help viewer). By way of expe