Won't display the path im drawing

when i select the pencil tool and draw a path it doesn't show it until i release the mouse button!
why? how can i fix that?
(got the same problem in illustrator)

Are you using Windows Vista? If so and you have Aero turned on that sometimes causes strange things like that. It used to happen to me in Fireworks. The way I got around it was having it launch Fireworks in compatibility mode that would revert the display from Aero to standard.

Similar Messages

  • Doesn't display the path im drawing with the pencil tool

    when i select the pencil tool and draw a path it doesn't show it until i release the mouse button!
    why? how can i fix that?
    (got the same problem in illustrator)

    Are you using Windows Vista? If so and you have Aero turned on that sometimes causes strange things like that. It used to happen to me in Fireworks. The way I got around it was having it launch Fireworks in compatibility mode that would revert the display from Aero to standard.

  • Displaying the path of the file selected by a FileChooser in a TextField

    I'm just getting started with Swing. I developed a simple dialog box that has two text fields and two buttons. The objective is to open two files using those two buttons. I used FileChooser to select the files. Now, I want to display the path of the selected files in their corresponding TextFields. I use the following code to do that.
    final FileChooser fc1 = new FileChooser();
    final FileChooser fc2 = new FileChooser();
    final TextField tf1 = new TextField();
    final TextField tf2 = new TextField();
    private void button1ActionPerformed(ActionEvent evt)
                int returnVal1 = fc1.showOpenDialog(labelPhpFile);
                if (returnVal1 == JFileChooser.APPROVE_OPTION)
                    File file1 = fc1.getSelectedFile();
                    String fileName1 = file1.getName();               
                    String filePath1 = file1.getPath();
                    tf1.setText(filePath1);
    private void button2ActionPerformed(ActionEvent evt)
                int returnVal2 = fc2.showOpenDialog(labelPhpFile);
                if (returnVal2 == JFileChooser.APPROVE_OPTION)
                    File file2 = fc2.getSelectedFile();
                    String fileName2 = file2.getName();               
                    String filePath2 = file2.getPath();
                    tf2.setText(filePath2);
    }The above code works fine only for the first file. Mean the path of the file selected using fc1 is getting displayed in the tf1 TextField. But, the file selected using fc2 is not getting displayed tf2 TextField. Please help me.
    Thank you :)

    h1. The Ubiquitous Newbie Tips
    * DON'T SHOUT!!!
    * Homework dumps will be flamed mercilessly.
    * Have a quick scan through the [Forum FAQ's|http://wikis.sun.com/display/SunForums/Forums.sun.com+FAQ].
    h5. Ask a good question
    * Don't forget to actually ask a question. No, The subject line doesn't count.
    * Ask once
        - Don't Crosspost!
        - Two people answering one question independantly is a waste of there time.
    * Don't even talk to me until you've:
        (a) [googled it|http://www.google.com.au/] and
        (b) looked it up in [Sun's Java Tutorials|http://java.sun.com/docs/books/tutorial/] and
        (c) read the relevant section of the [API Docs|http://java.sun.com/javase/6/docs/api/index-files/index-1.html] and maybe even
        (d) referred to the JLS (for "advanced" questions).
    * [Good questions|http://www.catb.org/~esr/faqs/smart-questions.html#intro] get better Answers. It's a fact. Trust me on this one.
        - Lots of regulars on these forums simply don't read badly written questions. It's just too frustrating.
          - FFS spare us the SMS and L33t speak! Pull your pants up, and get a hair cut!
        - Often you discover your own mistake whilst forming a "Good question".
        - Many of the regulars on these forums will bend over backwards to help with a "Good question",
          especially to a nuggetty problem, because they're interested in the answer.
    * Improve your chances of getting laid tonight by writing an SSCCE
        - For you normal people, That's a: Short Self-Contained Compilable Example.
        - Short is sweet: No-one wants to wade through 5000 lines to find your syntax errors!
        - Often you discover your own mistake whilst writing an SSCCE.
        - Solving your own problem yields a sense of accomplishment ;-)
    h5. Formatting Matters
    * Post your code between a pair of {code} tags
        - That is: {code} ... your code goes here ... {code}
        - This makes your code easier to read by preserving whitespace and highlighting java syntax.
        - Copy&paste your source code directly from your editor. The forum editor basically sucks.
        - The forums tabwidth is 8, as per [the java coding conventions|http://java.sun.com/docs/codeconv/].
          - Indents will go jagged if your tabwidth!=8 and you've mixed tabs and spaces.
          - Lines longer than 80 characters should be wrapped.
          - Proper indentation illustrates program logic.
    * Post your error messages between a pair of {code} tags:
        - That is: {code} ... errors here ... {code}
        - To make it easier for us to find, Mark the erroneous line(s) in your source-code. For example:
            System.out.println("Your momma!); // <<<< ERROR 1
        - Note that error messages are rendered basically useless if the code has been
          modified AT ALL since the error message was produced.
        - Here's [How to read a stacktrace|http://www.0xcafefeed.com/2004/06/of-thread-dumps-and-stack-traces/].
    * The forum editor has a "Preview" pane. Use it.
        - If you're new around here you'll probably find the "Rich Text" view is easier to use.
        - WARNING: Swapping from "Plain Text" view to "Rich Text" scrambles the markup!
        - To see how a posted "special effect" is done, click reply then click the quote button.
    If you (the newbie) have covered these bases *you deserve, and can therefore expect, GOOD answers!*
    h1. The pledge!
    We the New To Java regulars do hereby pledge to refrain from flaming anybody, no matter how gumbyish the question, if the OP has demonstrably tried to cover these bases. The rest are fair game.

  • How to display the path of selected node of a tree table.

    Hi,
    I have one use case where I have to display the path of node of tree table which is selected one.
    e.g.
    Suppose the tree table is like this.
    Folder1(root)
              ->folder2
              ->folder3
                        ->folder4
    Now when I select this folder1 then path display should be "/folder1(root)"
    when i select the folder4 then path should be "/folder1(root)/folder3/folder4"
    Hope this one will help to understand my use case..
    Thanks

    Hello,
    try this:
    jsp page:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:messages id="m1"/>
          <af:form id="f1">
            <af:tree value="#{bindings.RootNodes.treeModel}" var="node"
                     rowSelection="single" id="t1" expandAllEnabled="true"
                     rowDisclosureListener="#{Test.testDisclosureListener}"
                     selectionListener="#{Test.SelectionListener}">
              <f:facet name="nodeStamp">
                <af:panelGroupLayout id="pgl0">
                  <af:outputText rendered="#{empty node.Link}" value="#{node.Edesc}"
                                 id="ot1"/>
                  <af:goLink rendered="#{!empty node.Link}" targetFrame="_blank" text="#{node.Edesc}" destination="#{node.Link}"  id="gl1"/>
                </af:panelGroupLayout>
              </f:facet>
            </af:tree>
            <af:outputText value="#{bindings.Id.inputValue}" id="ot2"
                           partialTriggers="t1">
              <af:convertNumber groupingUsed="false"
                                pattern="#{bindings.Id.format}"/>
            </af:outputText>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    code:
    package testing;
    import java.util.Iterator;
    import java.util.List;
    import model.businessObjects.view.ZamerTreeMenuViewRowImpl;
    import oracle.adf.view.rich.component.rich.data.RichTree;
    import oracle.jbo.Row;
    import oracle.jbo.uicli.binding.JUCtrlHierBinding;
    import oracle.jbo.uicli.binding.JUCtrlHierNodeBinding;
    import org.apache.myfaces.trinidad.event.RowDisclosureEvent;
    import org.apache.myfaces.trinidad.event.SelectionEvent;
    import org.apache.myfaces.trinidad.model.CollectionModel;
    import org.apache.myfaces.trinidad.model.RowKeySet;
    public class Test{
        public Test(){
        public void testDisclosureListener(RowDisclosureEvent rowDisclosureEvent){
            RichTree tree1=(RichTree)rowDisclosureEvent.getSource();
            CollectionModel model = (CollectionModel)tree1.getValue();
            JUCtrlHierBinding treeBinding = (JUCtrlHierBinding)model.getWrappedData();
            JUCtrlHierNodeBinding start = null;
            List focus = (List)tree1.getFocusRowKey();
            tree1.setRowKey(rowDisclosureEvent.getAddedSet().iterator().next());
            System.out.println("testing.Test.testDisclosureListener>>"+treeBinding.getPath());
            start = (JUCtrlHierNodeBinding)tree1.getRowData();
    //        ZamerTreeMenuViewRowImpl temp = (ZamerTreeMenuViewRowImpl)start.getRow();
            JUCtrlHierNodeBinding parent=start.getParent();
            String path="";
            ZamerTreeMenuViewRowImpl  r = (ZamerTreeMenuViewRowImpl)start.getRow();
            path+="/"+r.getAdesc();
            while(parent!=null){
                r = (ZamerTreeMenuViewRowImpl)parent.getRow();
                if(r==null){
                    break;
            System.out.println("testing.Test.testDisclosureListener>>"+path);

  • Over half my albums in iPhoto won't display the enlarged photo. How can I correct this?

    Over half my albums in iPhoto won't display the enlarged photo. How can I correct this?

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/ Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help: As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • My iTunes won't display the artwork

    My iTunes on a jukebox setting won't display the artwork. It currently has an error message of "iTunes is unable to browse album covers on this computer".
    It was working fine the other day. I have updated it version when I received the error message but still nothing.
    However when i select the middle view option, it shows the artwork.
    Please help. The black screen is annoying!

    ....it's my cover flow view that is not working!!!!!!

  • HT1600 update Apple TV via settings general update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    update Apple TV via settings>general>update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    only the following macs support airplay mirror
    http://support.apple.com/kb/ht5404

  • Motion Paths won't display the whole path!

    You see the sun in the middle of the frame, the path is only shown for about 30 sec of movement but the path actually goes from bottom right all the way to top left over 3 min. It is impossible to adjust the curve of the path with this limitation, does anyone know why AE is doing this?
    Thanks, Mark

    Found it in the display preferences,

  • I knew there was a reason I didn't really want to upgrade, but I did & now the FF15 won't display the htm which my old version did perfectly

    Actually it does display the page, but it doesn't display some of the elements which 3.6 did perfectly & even lowly old IE9 still does
    Where do I post the 2 screenshots? - the 1 of IE9? & the other of FF15? - which, it should be obvious, isn't displaying the blue lines down the sides

    cor-el wrote:
    Do you know what (CSS) code is responsible for those lines?
    After you asked your question, I did some experimentation by varying
    the size of the jpg displaying the long blue bar
    & came to a startling conclusion
    FF15 has changed its ability to display jpgs, if said jpg is even slightly greater
    than 30K on its long (vertical) side
    You see, the blue bar isn't generated by FF - it's an independent 8x35Kblubx.jpg,
    an 8 x 35,000 pixel blue line, which was custom created in a drawing prg
    I can send you the file if you want to see it, but the bottom line is,
    the old version of FF used to display it perfectly & in virtually any paint type
    or jpg display prg (preferably such as IrfanView or ACDSee etc),
    it still will, but NOW, in FF15 it doesn't work
    Thus whoever's responsible for finalizing the code at Mozilla/FF (whether it's a committee
    or a person making a decision for a committee), they've decided some type of jpgs
    just won't display, if they're greater than some arbitrary # of pixels
    on its long (vertical) side
    So, here it is ; even FF15 runs the HTM perfectly, *if* I restrict the 8x35Kblubox.jpg
    to its shorter `brother', which is 8x30Kblubox.jpg
    Why 30K is acceptable to FF15, but even 30.5K or certainly 34K isn't,
    is completely upto whoever's responsible for deciding what will display on FF15
    All right, why the change? - Even IE9 still displays the 35Kblubox
    & all the way upto 60K & maybe more (I decided 60K was as big as I'd need
    at the time they were created), but FF15 jams out at 30.5!
    Clearly it's a FF15 `issue' & should be restored to its former ability to run at least 60K
    pixel or greater jpgs (along the long upright edge)
    frebe

  • Nokia 6288 won't display the caller ID

    When a call comes in it just says 'call' it won't display either a number or the caller's name if the caller is someone in my contact list.

    1) Ensure that you have CLIP enabled on your SIM. Call your network provider and confirm this.
    2) Ensure that you do not have the same number used on more than one contact in your phone book.
    Knowledge should be your Advisor when you need help.
    1610»2110»8110»5110»3310»6210»7250i»6220»6230»6230i»6233
    Love me or hate me, its still an obsession. Love me or hate me, that is the question. If you love me then Thank you! If you hate me then ...

  • Pavilion g6 updated to windows 8.1 now tv won't display the screen

    I cracked the screen of my HP Pavilion g6, so I usually connect it through HDMI to my Coby TV and it usually worked fine. Now, after updating to Windows 8.1, my TV won't display anything. I believe it is because the screen is black, and my TV never displayed a black screen before, it only showed the screen once the laptop has started up. I've tried pressing f4 and i can see that the screen is blue in the small area of my screen that still works, but it still isn't showing through my TV so I don't know how I can fix this problem because I cannot see the screen. Please help!

    Hi ke11ie,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that after upgrading to Windows 8.1 your external display(CobyTV) is not working.   Just to rule out the TV if you connect to a different display does it work?
    Here is a link to Connecting a Monitor, Projector or TV (Windows 8).
    Here is a link to Display Quality Issues, that may also be of aid.
    I hope this helps.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Final stage of the installati​on bombs ... won't display the webpage with IE9

    Multiple retries for automatic, tried re-typing, won't display last setup dialogue either way.

    so return it for another one if its within the 14 day return policy.  If not, bring it in for repair.

  • Project/Albums show as having pictures, but won't display the pictures.

    I have a Project and it has two albums listed (indented) underneath it.
    I have moved them around a bit to put them in different folders, and now the pictures won't display.  By that I mean that if I mouse over the project, a popup (or flyover) says there are 129 versions, but no pictures show up in the browser window.  Same thing for the album.
    The files are referenced files and the files are still in the folder in the same location on my hard drive so I could delete and then re-import, but I'd lose my keywording, any other metadata tags (ratings), and my adjustments.  I really don't want to lose those.
    Any ideas?

    Sometimes moving projects around can create invisible filters, check Frank Caggiano's User Tip:                   Images not appearing in browser, search filter is cleared
    But your long loading time is suspicious: Have you imported any new images recently? Long loading times can be caused by a corrupted image or video in your library; then you need to identify the broken image and remove it.
    Also can long loading result from a corrupted Aperture Library that needs fixing. DId you have a recent Aperture crash?
    Have you already tried to repair or rebuild your Aperture Library? See:
    Aperture 3 User Manual: Repairing and Rebuilding Your Aperture Library
    Regards
    Léonie

  • Firefox 3.6.2 won't display the CSS correctly in VBulletin 4.1. Safari, Explorer and Firefox 4 beta work fine!

    My upgraded site: http://www.thesabrehood.org/thehood/forum/ has CSS that displays fine with Safari and IE and the new Firefox Beta 4... but it won't display with the latest upgrade of FF3.6x. Obviously you fixed some code in V4 beta.. how about fixing 3.6x while you're at it!!!!

    I also have this problem and it just started in the last week or so. It seems to be dependent on my home network and the problem only exists with firefox. I have used chrome and IE8 with no issues. I can verify tomorrow that it only exists in my network but one thing I was able to test is that the problem exists even on my linux boot. I am totally dumbfounded with this problem and I can't find anything that will allow the gmail page to load. All other pages I have tried load fine, all be it a little slower than normal but they load. If anyone knows of a difference between firefox and all other browsers on how it goes through the router I would appreciate the info cause I don't know of any differences.

  • Php page won't display the first record

    I have the following code, but it always skip the first row of the records pull from an Oracle table:
    include "utility_functions.php";
    // Form the query and execute it
    $sql = "select * from dept where cid=".$_GET['q'];
    $result_array = execute_sql_in_oracle ($sql);
    $result = $result_array["flag"];
    $cursor = $result_array["cursor"];
    if ($result == false){
      display_oracle_error_message($cursor);
      die("Client Query Failed.");
    // Display the query results
    echo "<ul class=\"nav\">";
    $values = oci_fetch_array ($cursor);
    //echo $values[0];
    // Fetch the result from the cursor one by one
    while ($values = oci_fetch_array($cursor)){
      $did = $values[0];
      $dname = $values[1];
      echo("<li><a href=\"showdetail.php?did=$did\">$dname</a></li> ");
    oci_free_statement($cursor);
    echo "</ul>";
    for example, I have the following in dept table:
    did    dname
    1     Business
    2     Education
    3     Math
    4     English
    It will only list: education, math, and english.  Any clues?

    What does execute_sql_in_oracle() do?
    Try following example code, such as from:
            http://www.php.net/manual/en/oci8.examples.php
            http://www.php.net/manual/en/function.oci-fetch-array.php
            http://www.php.net/manual/en/function.oci-bind-by-name.php
    It's extremely insecure (and slow) to do a query made up with string concatenation like:
      $sql = "select * from dept where cid=".$_GET['q'];
    You probably need to first sanitize $_GET to remove anything malicious.  Then you must use a bind variable on the sanitized result.

Maybe you are looking for

  • WBS validation while creation of PO

    Hi Experts, I have a typical scenario. I am procuring manpower services. First, I create service master records for all employees available in the HR master records. In the HR master Data, for each employee there is one WBS element for their Projects

  • How do I change the downloaded file default from protected mode

    Word and pdf show up in protective mode - how do I change the default to allow editing?

  • Downloaded trial version, indesign crashes now

    I downloaded the trial version of CS6 and now I can't open any InDesign file.  I had CS5 from my employer on my old computer, which transferred over to my new computer when I set everything up.  Is the old suite causing these problems?  Nothing will

  • Dock behavior

    Is there a way to change the behavior of the Dock so when I hold down on an application it doesn't zoom the window out in Expose and just shows the contextual menu? I just don't find secondary button command on my track pad comfortable and I'd prefer

  • Epson xp-400 airprint works ... sort of....

    New Epson xp-400 with Airprint has good wifi connection to ipad2 (as well as my Windows 7 laptop).  No problem printing photos from ipad2....very nice.  However, when attempting to print from Safari and/or E-mail the result is either blank page or pa