Why won't this fill with any color

i can draw on both pictures but on the second graphic i would like to fill with the color of my choosing but for some reason i can not
Attachments:
picturecntrl3.vi ‏40 KB

Try this. I didn't try to spend too much time straightening out wiring.
I had to fix up a few things in it.  For instance, on mouse down, I did a move pen so that it wouldn't draw the first line from 0,0 or last end point all the time.  It only works as a free hand drawing.  It would be possible to do a point to point to point so that you could draw straight line objects (i.e. triangles, squares, etc.) , but you would have to come up with an alternate way to stop creating the array of points to be filled besides mouse up.  Perhaps another button such as draw.
Message Edited by Ravens Fan on 11-14-2007 04:56 PM
Attachments:
picturecntrl5.vi ‏48 KB

Similar Messages

  • Why won't icloud work with windows vista anymore?

    why won't icloud work with windows vista anymore?

    I had to re-install after the newly released iTunes - for Vista it does work with iClud 2 - not 3. You can download from this site.

  • Why won't my Mac with Mountain Lion OS recognise my external Samsung hard drive?

    Why won't my Mac with Mountain Lion OS recognise my external Samsung hard drive?

    Launch/Utilities/Terminal and enter this command at the prompt:
    diskutil list
    Press return.
    If it sees the disk, note the number of the disk (far left column) you want to mount.
    Then, enter this command:
    mount /dev/(number of disk)
    Put in the number no parenthesis.
    Press Return.
    If that doesn't wortk try the same with this command...
    mount force /dev/(number of disk)

  • Regarding Lightroom Slideshow module: When I click on the preview button I get the following error: An internal error has occurred: ?:0: attempt at index a nil value. This occurs with any group of images I select in my catalog.

    Regarding Lightroom Slideshow module: When I click on the preview button I get the following error: An internal error has occurred: ?:0: attempt at index a nil value. This occurs with any group of images I select in my catalog.

    Jeannine,
         If you follow the advice of the previous poster Julie Kmoch and then gradualy add presets back in one at a time you might be able to find the one that is causing the issue. I may be guessing, but I believe the issue has something to do with either an incompatible Preset setting (eg a older preset in newer version of LR) or a corrupt Preset.
    Say you bought LR2 and imported a bunch of Presets from the internet, cuz 'Hey these effects are cool and I don't have to recreate the wheel', and then you upgraded to LR3 (not a clean install) and now one of the Presets that calls a certain slider setting or value that is different in LR3 doesn't work anymore. This might be why it throws the error, but again I am just speculating.
    Location of LR Preset folder in Windows Vista/ Windows 7
    C:/Users/<YourUserName>/AppData/Roaming/Adobe/Lightroom/Develop Presets
    If you do not see the folder AppData, you may need to change the settings in Windows Explorer to 'Show Hidden Files and Folders'. To do that in Windows Vista/ Windows 7, open a Windows Explorer window, Click on Organize, then Foler and Search Options. Then click on the View tab and select the option button next to Show hidden files, folders and drives.
    Hope this helps a bit,
    Glenn

  • I purchased the new gen 7 ipod nano and needed to update itunes to 10.7 but my current software says its up to date and won't download 10.6.8 Currently I have 10.5.8 Why won't this update?

    I purchased the new gen 7 ipod nano and needed to update itunes to 10.7 but my current software says its up to date and won't download 10.6.8 Currently I have 10.5.8 Why won't this update?

    The first generation Intel-based Mac's were released in January 2006.
    Snow Leopard requires an Intel processor:
    General requirements
    Mac computer with an Intel processor
    1GB of memory
    5GB of available disk space
    DVD drive for installation
    Some features require a compatible Internet service provider; fees may apply.
    If you go to the Apple menu & "About this Mac" this will tell you what type of processor you have:

  • Why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    why facetime does not working with any carrier in u.s expect att although the iphone is factory unlocked

    Facetime only works via WiFi. Are you trying to set up Facetime with a T-Mobile account?

  • Functions in a For Loop defining objects from an Array. . .Why Won't This Work?!

    I'm trying to put these functions into a Loop to conserve
    space. Why won't this work?
    .

    Yeah, sly one is right. You can not have the "i" inside the
    onRollOver function, what you have to do is: As the movieClip class
    is dynamic you can create a property of the movieClip which stores
    the value if the "i". And then, inside the onRollOver function, you
    have to make reference to that property.
    for (i=0; i<2; i++) {
    this.regArray
    .iterator = i;
    this.regArray.onRollOver = function () {
    showRegion(regArray[this.iterator]);
    this.regArray
    .onRollOut = function () {
    hideRegion(regArray[this.iterator]);

  • Help...Why won't this compile?

    Why won't this compile?
    Here is my code:
    import java.util.Calendar;
    import javax.swing.JOptionPane;
    public class GetAge{
    public static void main(String[] args){
    int month=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what month(MM) you were born:"));
    int day=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what day(dd) you were born:"));
    int year=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what year(yyyy) you were born:"));
    Calendar rightNow = Calendar.getInstance();
    int year2 = rightNow.get(Calendar.YEAR);
    int day2 = rightNow.get(Calendar.DATE);
    int month2 = rightNow.get(Calendar.MONTH)+1;
    int years = year2-year-1;
    int months = month2-month+12;
    if(day2 >= day)
       int days = day2-day;
    else
       days = day-day2+8;
    JOptionPane.showMessageDialog(null,"You are: " + years
    + " years " + months + " months and " + days + " days old.");
    }

    What you're doing is using days after the if statement; without curly braces only a valid statement is allowed.
    But if you add curly braces, days will be available only in the if block.
    So what you should do is:
    import java.util.Calendar;
    import javax.swing.JOptionPane;
    public class GetAge{
    public static void main(String[] args){
    int month=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what month(MM) you were born:"));
    int day=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what day(dd) you were born:"));
    int year=Integer.parseInt(JOptionPane.showInputDialog
    (null,"Enter what year(yyyy) you were born:"));
    Calendar rightNow = Calendar.getInstance();
    int year2 = rightNow.get(Calendar.YEAR);
    int day2 = rightNow.get(Calendar.DATE);
    int month2 = rightNow.get(Calendar.MONTH)+1;
    int years = year2-year-1;
    int months = month2-month+12;
    int days = 0;      //declare here
    if(day2 >= day)
       days = day2-day;  //...and use here
    else
       days = day-day2+8;   //..and here
    JOptionPane.showMessageDialog(null,"You are: " + years
    + " years " + months + " months and " + days + " days old.");
    }

  • FM Transmitter used to work fine but stopped working, bought 2 new ones and neither work, they work with other Ipods in the house, IPOD Usb syncs fine with Computer, why won't it work with the FM transmitters anymore?

    FM Transmitter used to work fine but stopped working, bought 2 new ones and neither work, they work with other Ipods in the house, IPOD Usb syncs fine with Computer, why won't it work with the FM transmitters anymore?

    Are the other iPods models, same version as yours. The 2 New FM Tx may need a new iPod software, which you can update via iTunes.
    Good Luck!

  • Ringtones showing in itunes in in this iphone with grey color and a circle in front how bring back to iphone?

    ringtones showing in itunes in in this iphone with grey color and a circle in front how bring back to iphone?

    pls help me

  • Why won't adobe deal with my query?

    why won't adobe deal with my query?

    What is your query?? We are not mind readers, just users of software like you.

  • Why won't YouTube work on any of my computers?

    why won't YouTube work on any of my computers?

    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • HT203796 Why won't icloud work with outlook 2013 on a PC anymore?  It worked prior to windows 8.1 update.

    Why won't icloud work with outlook 2013 on a PC anymore?  It worked prior to windows 8.1 update.

    Would like to add that I have tried unloading outlook 2013, reinstalling itunes and icloud and still get the "install could not start do to unexpected error" when trying to install icloud controll panel and sync.

  • Why won't this song play even after I authorized the computer? It says that I need to authorize the computer, then I enter my username and password and it says the computer is already authorized. But then the song still won't play. What do I do?

    Why won't this song play even after I authorized the computer? It says that I need to authorize the computer, then I enter my username and password and it says the computer is already authorized. But then the song still won't play. What do I do?

    Use the Apple ID support -> http://www.apple.com/support/appleid/ - click through the contact information and select the iTunes, etc., hot button. You can have Apple call you or email them.
    Clinton

  • Why won't itunes work with windows 8.1?  i tunes can not locate my music.

    Why won't windows 8.1 let itunes locate my music?  I deleted and downloaded, still won't do it.  But like majic after I installed windows 8.1 my computer had a XBOX music player appear, that found my 3200 songs and it was able to play the entire library no problem.  Any ideas on how i get itunes to start working with windows 8.1?

    Hi zachwill10,
    Welcome to the Support Communities!
    To resolve this issue you may need to uninstall iTunes and all of it's components, and reinstall the latest version as explained in this article:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    I hope this information helps ....
    - Judy

Maybe you are looking for

  • SQL Error while running a report

    Hi Experts, I am getting an error like below while running a report for particular sales Organization and Company code combination *SQL Error: 83-* *SQL0083C A memory allocation error has occured* *Errors occured during parellel processing of query 3

  • How to file auto number in save for web ?

    Hi All, how to file auto number in save for web ? I have make an action script in Photoshop cs5 that change the image resolution and SaveForWeb... (but at this point user need to supply the file name) so, How to write the code/action such that when t

  • Where did I loose my movie

    I have made a movie at length 31 min. The size is 1.19 GB, but when I copy it in explorer from iPhone folder to PC folder the size left is 0KB. Where did 1.19 GB go? What happens? The file is stored as a .MOV, but empty and not playable. Frustrated!

  • Photos too big for desktop

    I could always just choose a photo to use as a desktop and it would work fine. Now they all seem to display at full resolution meaning that I only get a small segment of the picture. I have tried cropping to the display dimensions but it is still too

  • Curriculum Developer for Systems - ORACLE

    Curriculum Developer for Systems Products – Direct Hire with Oracle - IRC1818445 – Santa Clara, CA The Systems Hardware Curriculum Development team is part of the Systems Product Development organization and is responsible for developing training for