Help with my eraser tool please

I got a new laptop and installed a copy of fireworks on it. It seems to work differently on this new computer than my older one. The Eraser tool is all jittery and jumpy and will even continue on after I have released the mouse button. This sure makes it hard to erase small details. Can anyone help to identify what may be causing this?
PS. I just noticed that the brush tool has this jittery aspect also but the other tools seem fine.

If your new laptop is running Windows Vista and your Fireworks is CS3, then the problem is that the bitmap tools in CS3 don't run well with the transparent Aero theme.
You can change a setting (for Fireworks) so that Aero turns off when you launch Fireworks.
1) Go to where Fireworks is installed, usually C:\Program Files\Adobe\Adobe Fireworks CS3
2) Right-click on Fireworks.exe and select Properties
3) Select the the Compatibility tab
4) Under Compatability mode label, select the checkbox for Run this program in compatability mode for: and select Windows XP (Service Pack 2) from the drop down box.
5) Under the Settings label, check Disable desktop composition
6) Click OK.
Now, when you start up Fireworks, your system should flicker as Aero is disabled (there's a message, which you can disable), but your bitmap tools should work. When you close Fireworks, your system will flicker as Aero returns.

Similar Messages

  • Need help with log4j logging tool (org.apache.log4j.*) to log into database

    Hi,
    I need help with log4j logging tool (org.apache.log4j.*) to log into database using JDBCAppender. Have look at my logger code and corresponding log4j.properties file stated below. I'm running this program using Eclipse IDE and it's giving me the following error (highlighted in red) at the end:
    log4j: Parsing for [root] with value=[debug, stdout, Roll, CRSDBAPPENDER].
    log4j: Level token is [debug].
    log4j: Category root set to DEBUG
    log4j: Parsing appender named "stdout".
    log4j: Parsing layout options for "stdout".
    log4j: Setting property [conversionPattern] to [%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "stdout".
    log4j: Parsed "stdout" options.
    log4j: Parsing appender named "Roll".
    log4j: Parsing layout options for "Roll".
    log4j: Setting property [conversionPattern] to [%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "Roll".
    log4j: Setting property [file] to [HelloWorld.log].
    log4j: Setting property [maxBackupIndex] to [10].
    log4j: Setting property [maxFileSize] to [20KB].
    log4j: setFile called: HelloWorld.log, true
    log4j: setFile ended
    log4j: Parsed "Roll" options.
    log4j: Parsing appender named "CRSDBAPPENDER".
    {color:#ff0000}
    Can't find class HelloWorld{color}
    import org.apache.log4j.*;
    public class HelloWorld {
    static Logger log = Logger.getLogger(HelloWorld.class.getName());
    public static void main(String[] args) {
    try{
    // Now, try a few logging methods
    MDC.put("myComputerName", "Ravinder");
    MDC.put("crsServerName", "ARNDEV01");
    log.debug("Start of main()");
    log.info("Just testing a log message with priority set to INFO");
    log.warn("Just testing a log message with priority set to WARN");
    log.error("Just testing a log message with priority set to ERROR");
    log.fatal("Just testing a log message with priority set to FATAL");
    catch(Exception e){
    e.printStackTrace();
    ------------------------- log4j.properties file ------------------------------
    #### Use three appenders - log to console, file and database
    log4j.rootCategory=debug, stdout, Roll, CRSDBAPPENDER
    log4j.debug=true
    # Print only messages of priority WARN or higher for your category
    # log4j.category.your.category.name=WARN
    # Specifically inherit the priority level
    # log4j.category.your.category.name=INHERITED
    #### stdout - First appender writes to console
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern=%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### Roll - Second appender writes to a file
    log4j.appender.Roll=org.apache.log4j.RollingFileAppender
    ##log4j.appender.Roll.File=${InstanceName}.log
    log4j.appender.Roll.File=HelloWorld.log
    log4j.appender.Roll.MaxFileSize=20KB
    log4j.appender.Roll.MaxBackupIndex=10
    log4j.appender.Roll.layout=org.apache.log4j.PatternLayout
    log4j.appender.Roll.layout.ConversionPattern=%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### CRSDBAPPENDER - third appender writes to the database
    log4j.appender.CRSDBAPPENDER=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.CRSDBAPPENDER.Driver=net.sourceforge.jtds.jdbc.Driver
    log4j.appender.CRSDBAPPENDER.URL=jdbc:jtds:sqlserver:/arncorp15:1433;DatabaseName=LOG
    log4j.appender.CRSDBAPPENDER.USER=sa
    log4j.appender.CRSDBAPPENDER.PASSWORD=p8ss3doff
    log4j.appender.CRSDBAPPENDER.layout=org.apache.log4j.PatternLayout
    log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ('%X{myComputerName}', '%X{crsServerName}', '%d{dd MMM yyyy HH:mm:ss,SSS}', '%p', '%t', '%F', '%L', '%m')
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG(COMPUTERNAME,CRSSERVERNAME,LOGTIME,LOGLEVEL,THREADNAME,FILENAME,LINENUMBER,LOGTEXT) select host_name(),'${CRSServerName}${InstanceName}','%d','%5p','%t','%F','%L','%m%n'
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ("%X{myComputerName}", "%X{crsServerName}", "%d{dd MMM yyyy HH:mm:ss,SSS}", "%p", "%t", "%F", "%L", "%m")
    ------------------------------- end of log4j.properties file ------------------------------
    Here is the directory structure of my program. My log4j.properties file and HelloWorld.class file are residing in folder HelloWorld\bin.
    HelloWorld\bin
    HelloWorld\lib
    HelloWorld\src
    Please note - The same program works fine for console and file appender when I comment the database appender part in my properties file.
    Thanks
    Ravinder

    try this :
    log4j.appender.PROJECT.Append=false

  • Need Help with the Clone Tool

    I need help with the clone tool, in that when I clone (let's say grass as example),  the new cloned area does NOT come out as sharp as the area selected.  It comes out much softer and somewhat blurred.  I have the opacity and flow both set at 100%.  This is very frustrating since I can not get a true clone.

    what "tip" do you have selected? where are you sampling from ( found in top option bar) ALSO make sure MODE is normal
    http://helpx.adobe.com/photoshop/using/retouching-repairing-images.html
    -janelle

  • Help with Secure Erase

    I need help with Secure Erase 7-pass in the utility disk. It keeps getting stuck at 25% and a pop up comes out saying not enough memory in the start up disk. Can someone tell me whats going on? After the pop up come on the erase will not proceed.

    Hello,
    moving files from your computer
    You can delete files, folders, and other items on your disk that you no longer need.
    You may want to store a backup copy or an archive of important items if you are trying to clear space on your hard disk for other things.
    Drag the items to the Trash (at the end of the Dock).
    Any files or folders you drag to the Trash remain there until you empty the Trash. If you change your mind about something, you can still retrieve it from the Trash if you haven't emptied it yet. Click the Trash icon to open the Trash window, then drag items back to your home folder.
    Choose Finder > Empty Trash.
    Even after you empty the Trash, deleted files may still be recovered by using special data-recovery software. To delete files so that they cannot be recovered, choose Finder > Secure Empty Trash. Files deleted in this way are completely overwritten by meaningless data. This may take some time, depending on the size of the file. To prevent the recovery of files you deleted previously, open Disk Utility (in Applications/Utilities), choose Help > Disk Utility Help, and search for help on erasing free disk space.
    If an item is locked, you cannot put it in the Trash. Select the item and choose File > Get Info, then deselect the Locked checkbox in the General pane. If you do not own the item, you may need to provide an administrator's name and password to put the item in the Trash.
    Press the Option key when you choose Empty Trash to prevent the warning message from appearing. You can also turn off the warning in the Advanced pane of Finder Preferences.
    Also... using the Erase Free Disk Space button:
    Erasing free disk space
    When you delete files by emptying the Trash, Mac OS X deletes the information used to access the files but doesn't actually delete the files. Although the disk space used by deleted files is marked as free space, deleted files remain intact until new data is written over them. Because of this, deleted files can be recovered.
    You can use Disk Utility to erase the "free" space used by deleted files by having zeros written over the space once, seven times, or 35 times. If you have a lot of free space on your disk, overwriting the free space several times can take a long time.
    Erasing free disk space does not erase the other files on your disk.
    In Disk Utility, select the disk or volume in the list with the free space you want to erase.
    Click Erase, then click the Erase Free Space button.
    Select an option, then click Erase.
    After the process begins, you can interrupt it without harming your data.
    You might see a message saying that you are running out of disk space, but you can ignore that warning. When this operation is complete, you will have the same amount of free space as you did when it started.
    You can also erase free space when you empty the Trash in the Finder. Choose Finder > Secure Empty Trash.
    Carolyn
    Message was edited by: Carolyn Samit

  • Need help with threads?.. please check my approach!!

    Hello frnds,
    I am trying to write a program.. who monitors my external tool.. please check my way of doing it.. as whenever i write programs having thread.. i end up goosy.. :(
    first let me tell.. what I want from program.. I have to start an external tool.. on separate thread.. (as it takes some time).. then it takes some arguments(3 arguments).. from file.. so i read the file.. and have to run tool.. continously.. until there are arguments left.. in file.. or.. user has stopped it by pressing STOP button..
    I have to put a marker in file too.. so that.. if program started again.. file is read from marker postion.. !!
    Hope I make clear.. what am trying to do!!
    My approach is like..
    1. Have two buttons.. START and STOP on Frame..
    START--> pressed
    2. check marker("$" sign.. placed in beginning of file during start).. on file..
         read File from marker.. got 3 arg.. pass it to tool.. and run it.. (on separate thread).. put marker.. (for next reading)
         Step 2.. continously..
    3. STOP--> pressed
         until last thread.. stops.. keep running the tool.. and when last thread stops.. stop reading any more arguments..
    Question is:
    1. Should i read file again and again.. ?.. or read it once after "$" sign.. store data in array.. and once stopped pressed.. read file again.. and put marker ("$" sign) at last read line..
    2. how should i know when my thread has stopped.. so I start tool again??.. am totally confused.. !!
    please modify my approach.. if u find anything odd..
    Thanks a lot in advance
    gervini

    Hello,
    I have no experience with threads or with having more than run "program" in a single java file. All my java files have the same structure. This master.java looks something like this:
    ---master.java---------------------------------------------------
    import java.sql.*;
    import...
    public class Master {
    public static void main(String args []) throws SQLException, IOException {
    //create connection pool here
    while (true) { // start loop here (each loop takes about five minutes)
    // set values of variables
    // select a slave process to run (from a list of slave programs)
    execute selected slave program
    // check for loop exit value
    } // end while loop
    System.out.println("Program Complete");
    } catch (Exception e) {
    System.out.println("Error: " + e);
    } finally {
    if (rSet1 != null)
    try { rSet1.close(); } catch( SQLException ignore ) { /* ignored */ }
    connection.close();
    -------end master.java--------------------------------------------------------
    This master.java program will run continuously for days or weeks, each time through the loop starting another slave process which runs for five minutes to up to an hour, which means there may be ten to twenty of these slave processes running simultaneously.
    I believe threads is the best way to do this, but I don't know where to locate these slave programs: either inside the master.java program or separate slave.java files? I will need help with either method.
    Your help is greatly appreciated. Thank you.
    Logan

  • Problems with "Background Eraser Tool" and "Blur". The tools don't affect the whole area but just connect the start and the last points.

    Hello!
    I have some issues with Photoshop CC 2014. The tools "Background Eraser Tool" and "Blur" won't work correctly. When I’m holding down the left mouse button and trying to erase or blur some area, the tools don’t affect the whole area but just connect the start and the last points – like drawing a line. These troubles exist with mentioned tools only, other tools work correctly.
    I’ve restored each tool separately, restored all the tools together, installed new drivers for tablet, re-installed Photoshop and even Windows. Nothing helped. These tools worked correctly earlier with the same adjustments, but one day something went wrong.
    How can I make the tools work correctly?
    Some information about my computer:
    • Notebook Lenovo Y560
    • Windows 7 Home Basic SP1 x64
    • Intel Core i5 2.53 GHz
    • 4Gb RAM
    • ATI Mobility Radeon HD 5730 1Gb
    • Tablet Wacom Bamboo CTL-470

    Hi,
    I have a similar problem with the Background Eraser tool as well. It's the same both on my PC and on my laptop, both running Win 8.1 and PS CC2014. Would be great to have a solution for this. Did you managed to find a fix?

  • Help with Oracle Scripting Tool

    Hello all, I am currently new to using the Oracle Scripting Tool. I can already launch the scripting author and develop some basic scripts using PL/SQL commands and test them using the scripting user responsibility. My main problem is with this one requirement in one of the panels of the script.
    In the first panel, there is a multi-list select box with a number of options. The user will select any number of these options then click continue to the next panel. Now here is my problem, if say the user selects 3 options in the last panel, the next panel should show 3 text fields. These text fields will correspond to each option selected meaning if I select 2 options in the last panel, 2 text fields will appear in the next panel or if I select 5 options in the last panel then 5 text fields will apper in the next panel. I dont know how to implement this using the Oracle Scripting tool, please help.. Any advice on this would be of greatly appreciated..

    Neither can be affected by the user.  The first is a long-standing, frustrating, bug.  Please report it via Aperture feedback at "Aperture➞Provide Aperture Feedback".  (I make thousands of crops a week, and make hundreds of details from crops (re-cropping smaller).  The current set-up, which "helpfully" over-rides _my_ setting, is extremely frustrating.)
    The second is not changeable.  You could recommend larger and/or more visible sizing handles by filing a second feedback request.
    Sorry for the unhelpful news.

  • Help with elements 6 - tools

    I have been working with both elements 5 and CS4 without any problems.  Yesterday I purchased a wacom tablet and elements 6 was part of the package.  I loaded it and tried to start to edit some photos.  I am unable to get the clone tool, healing tool, eraser tool and most of the others to work.  I have been able to straighten and crop, but that is all.
    Has anyone else encountered this problem?  It very well could be a user error issue, but I can't seem to figure out how to get these tools to work.
    Help!

    You may have to go to the Wacom site and update your drivers. You might have a look through this thread as I believe CS4 has/had issues:
    http://forums.adobe.com/thread/373269
    I don't have E6 but I seem to recall in Elements there's a box that needs to be ticked that says "Tablet Support". It should be somewhere in the Options bar...most likely under one of those tiny arrows...when the brush tool is selected.

  • Need some help with the colour profile please. Urgent! Thanks

    Dear all, I need help with the colour profile of my photoshop CS6. 
    I've taken a photo with my Canon DSLR. When I opened the raw with ACDSee, the colour looks perfectly ok.
    So I go ahead and open in photoshop. I did nothing to the photo. It still looks ok
    Then I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    And the colour started to get messed up.
    And the output is a total diasater
    Put the above photo side by side with the raw, the red has became crimson!!
    So I tried the other option, Use the embedded profile
    The whole picture turns yellowish in Photoshop's interface
    And the output is just the same as the third option.
    Could someone please guide me how to fix this? Thank you.

    I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    always use the embedded profile when opening tagged images in Photoshop - at that point Photoshop will convert the source colors over to your monitor space correctly
    if your colors are wrong at that point either your monitor profile is off, or your source colors are not what you think they are - if other apps are displaying correctly you most likely have either a defective monitor profile or source profile issues
    windows calibrate link:
    http://windows.microsoft.com/en-US/windows7/Calibrate-your-display
    for Photoshop to work properly, i recall you want to have "use my settings for this device" checked in Color Management> Device tab
    you may want to download the PDI reference image to check your monitor and print workflows
    and complete five easy steps to profile enlightenment in Photoshop
    with your settings, monitor profile and source profiles sorted out it should be pretty easy to pinpoint the problem...

  • Need Help with the Mesh Tool

    I'm having trouble adding a gradient mesh to this image:
    http://img237.imageshack.us/my.php?image=picture1xi9.png
    I would like to make it look a little more 3D or shiny with a white gradient. When I click inside the shape with the mesh tool, it creates some crazy mesh lines.. I'm pretty new to this and would really, really appreciate some help. Thanks! :)

    I see the problem as well you may have to make an clipping mask of a rectangle or other shape that is more regular using this shape as the mask and grouping them.
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1wekWFXbGiN7ixwI4ulbOLsAZQRp0k" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1wekWFXbGiN7ixwI4ulbOLsAZQRp0k_thumb.png" border="0" />

  • Help with the Spiral Tool, controlling decay

    I am attempting to use the spiral tool to create a spiral that gradually increases in the size of the spacing (decay) between segments as it opens up outward. My problem with the spiral tool is that it offers little control of when, where and how much decay between segments occurs...
    I've drawn an example of what I'm trying to achieve:
    Abuzeedo has done something similar by "holding ALT" however I can't replicate it on my system (CS5, Mac).
    reference: http://www.webdesign.org/vector-graphics/adobe-illustrator/spiral-tool-mysteries-solved.76 94.html

    There is no Alt key on mac, the equivalent is uslaly option, but most likely you are looking for CMD.  The keys on the mac you want to try though are CMD, Up & Down Cursors
    Click once and let go to get the options for making spiral, this will help you filgure out
    To get the spider web shape, you want to afterwards
    Object >> Path >> Add Anchor Point (about 2 times)
    Effect >> Distort >> Pucker & Bloat (I used -10)

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • Help with css3 rollover tag please

    Hey guys I'm stumped and need help with positioning some big picture buttons.
    Here is the link o the home page http://ceramic-planet2.businesscatalyst.com/
    As u can see I have four picture buttons using css3 roller but I want all four buttons next to each other
    2 buttons next to each other with the next 2 directly below .
    Now orgininally I used the dreamweaver rollover button and everything was inline so flowed across the page no problem. These are divs and I've tried to make 2 panels side by side among other hings but I'm not getting there so I thought one of u clever guys would have no problems telling me what to do.
    Please help I'm not getting the inline or absolute placement right
    Dave

    Hey Dave,
    You need to remove the margin from #mosaicbutton, #kitchenbutton
    and then add float : left; to #bathroombutton, #floorbutton, #mosaicbutton, #kitchenbutton,
    That'll get you buttons sitting the way you want them, you may need to play with the margins after that.
    Pat

  • Some help with the 10g install, please.

    Hi,
    We want to install 10g, we are currently running 9i. We want to do this in silent mode since we have so many databases to move to 10g. We've got a few questions & concerns about the procedures that are supposed to be done.
    If someone could kindly read over some of our concerns, we'd appreciate it.
    First, we used the -record method to create a response file. How much do we have to manually edit that file once Oracle creates it for us? Or is it ready to go after we exit the OUI.
    When we tried to do the install, it said it successfully installed 10g, but it failed on some of the configuration assistants. Do we need to run all of the configuration assistants? I mean, TNS is already configured. Does it change for the 10g install?
    Additionally, once the 10g software is complete, the environment is still set to 9i. How does that get changed for the silent install to continue with the DBUA? I mean, we do have databases that need upgrading.
    Any help with steps would be very helpful to us. We're getting error messages like this:
    The installation of Oracle Database 10g was successful, but some
    optional configuration assistants failed, were cancelled or skipped.
    Please check
    '/ora2/app/oracle/oraInventory/logs/silentInstall2006-10-26_01-26-39PM.log'
    for more details.
    UnsatisfiedLinkError exception loading native library: njni10
    java.lang.UnsatisfiedLinkError: jniGetOracleHome
    at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed. The exit code is -1
    Thank you in advance for your help.

    Hi,
    You are installing in same ORACLE_HOME?
    Your Operation System is UNIX?
    Eder

  • Need help with the brush tool.

    I just got Illustrator yesterday, and I'm trying to ink a sketch. So I open the file of the sketch, Save it as an adobe Illustrator document, then I create a new layer, then when I go to trace the sketch I get a symbol saying I cant use the brush tool. How do I fix this? Thanks in advance.

    Have you actually selected a brush stroke from the Brushes palette? Brusches are differnt from normal line strokes, the latter of which you can create with the Pencil tool...
    Mylenium

Maybe you are looking for

  • HR-PA. Issue when hire in future period. Transaction PA48.

    Hi, Guru! May be somebody help me. When i hire candidate from transaction PA48 on hire > sy- datum, object BP not created for new object CP, because in the function module 'RH_ALEOX_INTG_CP_FILL_CONT in the line 102 'perform sync_cp_collect_objects'

  • CPU overheat? Thermal Temperature in BIOS? Serious problem..

    My computer: Athlon 64 3000+ 754 BOXED MSI K8T Neo FIS2R with latest BIOS PowerColor Radeon 9600 256MB (passive cooling from retail) Corsair 512MB PC3200 ValueSelect Maxtor 160GB SATA (old drive) Seagate 200GB SATA (new drive) DVD-burner CD-ROM Flopp

  • How to Run both UCM Server and Webcenter Portal Services on single Weblogic

    Hi, First i have installed Oracle UCM and configure it on Weblogic Server successfully. But after the installation of Webcenter Portal on same machine and Weblogic Server. UCM Server is not running it shows Forcefully shutting down error. Kindly help

  • A solution to the 10810 problem

    Some weeks ago I started having problems with my computer: it kept giving me the error message 10810. After having the computer running for some time (12-24 hours) it refused to start applications and gave the error message -10810. Quitting running a

  • Screen sharing posible at start with FileVault on

    I  have a blind MM  running normal OS, but it functions in my network as print server, fax machine, Time machine BU etc.  If FV is off I can get in to it before it is logged in and enter the password to start it up.  Is this possible if FV is on?