Help with resizing paintbrush tool

Hello
I used one of the pre made brush strokes in Ai. When I tried to resize (smaller) The brush thickness stayed the same, although the length did reduce. How do I get the entire stroke to resize the same as my grouped image?
Thank You

Ohhh, thank you sooo much, I found it and it worked. Oh
my god, you just saved my whole project, I can't tell you how
grateful I am! (hug)
Mary

Similar Messages

  • 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 Resizing of column widths in a pivot

    HI all,
    I m working on resizing the pivot coulmn width in a dashboard. Could anyone please help with resizing the pivot width. Autosize() works but user doesnt want that.
    Whats the code to do that?

    I read what was written but still am confused. I am completely lost at this pointWhat is confusing you? A TreeMap is just a HashMap where the key is stored is sorted order.
    Read the Collections tutorial found [url http://java.sun.com/docs/books/tutorial/]here.

  • 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 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)

  • Why can't I use the Width tool on lines I drew with the Paintbrush tool?

    I have drawn a shape using the Paintbrush tool's new smooth fidelity with a 3 pt stroke.  But when I go to use the Varible Width tool it want allow me to modify the line.  what am I doing wrong?  Is this even possible?

    Thanks.  That seems unfortunate.
    Bruce Burton
    Kiku Obata & Company
    6161 Delmar Blvd., Suite 200, St. Louis, MO 63112
    Direct 314.505.8427  Fax 314.361.4716
    www.kikuobata.com

  • Help with resizing adjacent partitions on mirrored drives - Solaris 9 V240

    Hi,
    I need some help here. I'm very new to unix administration. I am running out of space on my /var directory. I have a set of 72G disks that are mirroring each other. The /var is mounted on /dev/md/dsk/d5 which has only 262M available out of 5.8G. Meanwhile the partition adjacent to it /dev/md/dsk/6 which has the /opt/app directory mounted has 5.8G available out of 13G.
    Is it possible for me to take space from the slice 6 and give it to slice 5? How do I do this without loosing any data?
    Here is some info about my system:
    AVAILABLE DISK SELECTIONS:
    0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@0,0
    1. c1t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@1,0
    2. c2t5d0 <Symbios-StorEDGEA1000-0301 cyl 17344 alt 2 hd 64 sec 64>
    /pseudo/rdnexus@2/rdriver@5,0
    3. c2t5d1 <Symbios-StorEDGEA1000-0301 cyl 17344 alt 2 hd 64 sec 64> APP02
    /pseudo/rdnexus@2/rdriver@5,1
    # df -h
    Filesystem      size      used      avail      capacity      Mounted on
    /dev/md/dsk/d0 15G 14G 1.5G 91%           /
    /proc      0K 0K 0K 0%           /proc
    mnttab      0K 0K 0K 0%           /etc/mnttab
    fd      0K 0K 0K 0%           /dev/fd
    /dev/md/dsk/d5 5.8G 5.5G 264M 96%           /var
    swap 16G 168K 16G 1%           /var/run
    /dev/dsk/c2t5d1s3 15G 26M 15G 1%           /u1
    /dev/dsk/c2t5d0s0 5.9G 3.0G 2.7G 53%           /u2
    /dev/dsk/c2t5d0s5 5.9G 1.2G 4.4G 22%           /u3
    /dev/md/dsk/d3 4.8G 3.1G 1.7G 65%           /opt
    /dev/md/dsk/d4 4.8G 2.8G 2.0G 59%           /tmp
    /dev/dsk/c2t5d0s3 5.9G 882M 4.8G 16%           /opt/devbkup
    /dev/dsk/c2t5d0s4 5.9G 630M 5.0G 11%           /opt/workarea
    /dev/dsk/c2t5d0s6 3.9G 2.4G 1.3G 65%           /opt/patch
    /dev/dsk/c2t5d0s7 5.7G 1.9G 3.5G 36%           /opt/app
    /dev/md/dsk/d6 13G 7.5G 5.8G 57%           /opt/app2
    /export/home/jason 15G 14G 1.5G 91%           /home/jason
    Current Disk = c1t0d0
    <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@0,0
    Volume name = < >
    ascii name = <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    pcyl = 14089
    ncyl = 14087
    acyl = 2
    nhead = 24
    nsect = 424
    Part     Tag     Flag     Cylinders     Size     Blocks
    0     root     wm     0 - 3220     15.63GB     (3221/0/0)     32776896
    1     swap     wu     3221 - 5636     11.72GB     (2416/0/0)     24585216
    2     backup     wm     0 - 14086     68.35GB     (14087/0/0)     143349312
    3     unassigned     wm     5637 - 6643     4.89GB     (1007/0/0)     10247232
    4     unassigned     wm     6644 - 7650     4.89GB     (1007/0/0)     10247232
    5     var     wm     7651 - 8858     5.86GB     (1208/0/0)     12292608
    6     unassigned     wm     8859 - 1167     13.67GB     (2818/0/0)     28675968
    7     unassigned     wm     11677 - 11685     44.72MB     (9/0/0)     91584
    Current Disk = c1t1d0
    <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@1,0
    Volume name = < >
    ascii name = <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    pcyl = 14089
    ncyl = 14087
    acyl = 2
    nhead = 24
    nsect = 424
    Part     Tag     Flag     Cylinders     Size     Blocks
    0     root     wm     0 - 3220     15.63GB     (3221/0/0)     32776896
    1     swap     wu     3221 - 5636     11.72GB     (2416/0/0)     24585216
    2     backup     wm     0 - 14086     68.35GB     (14087/0/0)     143349312
    3     unassigned     wm     5637 - 6643     4.89GB     (1007/0/0)     10247232
    4     unassigned     wm     6644 - 7650     4.89GB     (1007/0/0)     10247232
    5     var     wm     7651 - 8858     5.86GB     (1208/0/0)     12292608
    6     unassigned     wm     8859 - 11676     13.67GB     (2818/0/0)     28675968
    7     unassigned     wm     11677 - 11685     44.72MB     (9/0/0)     91584
    If this isn't possible, it looks like I have about 12G of free space. Partition 7 is only using from 11677-11685 while I could take it up to 11677-14086. I would then have to create the mirror metattach for that partition and then would I just unmount /var and remount it on the new /dev/md/dsk/d7? I'll need help with that. Then what would I do with the unused d5?
    A step by step response would be great! Thanks!

    # metadb
    flags first blk block count
    a m p luo 16 8192 /dev/dsk/c1t0d0s7
    a p luo 8208 8192 /dev/dsk/c1t0d0s7
    a p luo 16 8192 /dev/dsk/c1t1d0s7
    a p luo 8208 8192 /dev/dsk/c1t1d0s7
    # metastat | more
    d0: Mirror
    Submirror 0: d20
    State: Okay
    Submirror 1: d10
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 32776896 blocks (15 GB)
    d20: Submirror of d0
    State: Okay
    Size: 32776896 blocks (15 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s0 0 No Okay Yes
    d10: Submirror of d0
    State: Okay
    Size: 32776896 blocks (15 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s0 0 No Okay Yes
    d1: Mirror
    Submirror 0: d21
    State: Okay
    Submirror 1: d11
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 24585216 blocks (11 GB)
    d21: Submirror of d1
    State: Okay
    Size: 24585216 blocks (11 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s1 0 No Okay Yes
    d11: Submirror of d1
    State: Okay
    Size: 24585216 blocks (11 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s1 0 No Okay Yes
    d3: Mirror
    Submirror 0: d23
    State: Okay
    Submirror 1: d13
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s3 0 No Okay Yes
    d13: Submirror of d3
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s3 0 No Okay Yes
    d4: Mirror
    Submirror 0: d24
    State: Okay
    Submirror 1: d14
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 10247232 blocks (4.9 GB)
    d24: Submirror of d4
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s4 0 No Okay Yes
    d14: Submirror of d4
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s4 0 No Okay Yes
    d6: Mirror
    Submirror 0: d26
    State: Okay
    Submirror 1: d16
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 28675968 blocks (13 GB)
    d26: Submirror of d6
    State: Okay
    Size: 28675968 blocks (13 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s6 0 No Okay Yes
    d16: Submirror of d6
    State: Okay
    Size: 28675968 blocks (13 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s6 0 No Okay Yes
    d5: Mirror
    Submirror 0: d25
    State: Okay
    Submirror 1: d15
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 12292608 blocks (5.9 GB)
    d25: Submirror of d5
    State: Okay
    Size: 12292608 blocks (5.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s5 0 No Okay Yes
    d15: Submirror of d5
    State: Okay
    Size: 12292608 blocks (5.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s5 0 No Okay Yes
    Device Relocation Information:
    Device Reloc Device ID
    c1t1d0 Yes id1,sd@SSEAGATE_ST373207LSUN72G_3532DM4K____________3KT2DM4K
    c1t0d0 Yes id1,sd@SSEAGATE_ST373207LSUN72G_4032QM28____________3KT2QM28
    I thank you for any help you can give! Thanks!

  • Help with Resizing LUNS on Hitachi 9980

    Hi everyone, I need a little help here resizing my LUNS on our Hitachi 9980. I currently have a 1 TB and I want to increase or resize this to 2 TB. I am wondering if someone can help me here. This is something I haven't done before. Is there a step by step way of doing this. I was told that it could be done off line or online. Which is safer? Do I also need to reboot the Host after the resizing? Thanks for your assistance.
    JC

    Hi everyone, I need a little help here resizing my LUNS on our Hitachi 9980. I currently have a 1 TB and I want to increase or resize this to 2 TB. I am wondering if someone can help me here. This is something I haven't done before. Is there a step by step way of doing this. I was told that it could be done off line or online. Which is safer? Do I also need to reboot the Host after the resizing? Thanks for your assistance.
    JC

  • 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

  • Help with resizing document

    Hi guys,
    I am trying to resize my current document.  It is currently 1000px and I want to make it 1300px but when I do that, all the elements that is near the top becomes off the screen to the top...Why is that?  I only want the document to be longer in height from the bottom but not sure what it is affecting the elements on the top?
    Any help appreciated.

    Check you publish settings html scale, you might already have "No Border" selected, try publish with "Show all" or "Exact fit".
    You may also edit the scale from html <param name="scale" value="noborder", try change it to showall or exactfit.
    The swf scale can also be controlled by actionscript Stage.scaleMode
    Don't give up, it is not difficult if you already know the way

  • Help with resizing rectangles

    I am very new to adobe and have been struggling with a project that I need to do. I have one rectangle the size of 8.5 x 11 and I need to copy the rectangle and then reduce it to 80% of the orginal rectangle. Can anyone help me with this, I have been struggling with this for days.
    Thank You
    Nicole

    To be clearer than what has been written.
    Select the rectangle path and double click the scale tool in the tools panel.
    Enter 80% uniform and click the copy button copy.
    Hitting the copy button alone is all that is necessary to make the copy no need to do this before entering the scale tool options dialog.
    I think Jacob posted this above but put in n extra step that you should not use which is to first copy the rectangle and the enter the scale tool options dialog.
    leave that step out just hit copy when in the scale tool dialog.
    Sorry Jacob it was Larry not like either one of them to add a step both re usually very direct with the lest amount of steps.

  • 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.

  • 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.

Maybe you are looking for

  • Ack Requirement

    Hi All, I have two scenarios. 1. IDOC to File 2.File to IDOC. My requirement is to get the acknowledgement in both the cases. 1. Scenario (IDOC to File) – I have ALEAUD message type for Source and user defined message type for target. 2. Scenario (Fi

  • How to get records from different tables

    Here is my Database diagram and my scenario is that When a user enter number of person and amount, amount/person let suppose 4/1000=250 and now 250 is , match in Product_Price Field in RstProductDetails, and select only Restaurant where 250 is matche

  • Where are temporary internet files kept

    I am trying to change the location to where the temporary internet files are kept. I want to put them on another drive. Can you give me the path to them so I can change it? Thanks

  • Circular Arrow - direction

    Hi, I have the question about smart object - circular arrow. How can I change the arrow direction? Best regards

  • Crash when making index update.

    When I update the index Indesign crashes on me. needs fixing.