Need a simple program equivalent to the PC paint

I need a simple program that is equivalent to the Windows paint program thats free.

Does Paintbrush do what you want?
(30512)

Similar Messages

  • I need to open programs made with the old Appleworks v6. Is there a program i can obtain to open them?

    I need to open programs made with the old Appleworks v6. Is there a program i can obtain to open them?

    Hello Ian Shaw,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    AppleWorks: Document Recovery Techniques
    http://support.apple.com/kb/TA22029?viewlocale=en_US
    Best of luck,
    Mario

  • I need a simple program to convert flac files to mp3 with album art

    Is there a fairly simple program that will convert files and imbed album art by track? All of my music files are flac with album art included in the album folder.

    Not sure of any software that will do the conversion and automatically embed album art, but LameDropXPD is a free, super-simple drag and drop conversion tool that will accept flac input: http://www.rarewares.org/mp3-lamedrop.php#lamedrop-current and MP3Tag (also free) has an option to do batch embedding of album art.

  • Still needing help downloading program and using the redemption code given to me on the card I purchased at Home Depot two days ago.

    Still need ing help downloading and installing program from card I purchased at Home Depot two days ago.

    It isn't a good idea to start a second thread on the same topic. You have had responses under the first post. I suggest you go there and continue this discussion.

  • Need a simpler way to answer the phone!

    The iPhone 4s requires 1 of 2 things to answer a phone call, depedning on whether the phone is locked or not.  If the phone is unlocked, I'm presented with a couple of buttons to accept or reject the call.  If the phone is locked, I'm required to swipe a slider on the display to answer the call.
    There are a couple of problems with these UI behaviors.  First, if one has gloves or mittens on, the touch screen doesn't work and one has to take off one's gloves to use the display and answer a call.  The second problems is that in many cases, swiping a slider requires two hands - one to hold the phone and one to swipe the slider.  If the phone isn't locked, the situation is a bit better, since pressing a button on the display can be done one-handed, more easily than moving the slider.  I could set auto-lock to "never" so the slider doesn't come show up, but this also keeps the display on and runs down the battery rather rapidly.  So ideally, I need:
    1.  A way to use the Home button to answer calls.  Our iPhones live in Otter Boxes and it takes intent to actually press this button.  It's not easy to do it by accident.
    -- OR --
    2   A way to auto-dim the display after a set period of time without auto-locking the unit.  This would be a 2nd best solution, since I'd much rather just push the Home button to answer calls.
    Maybe there are some apps that can help with this.  Any solutions will be appreciated.

    fmouse wrote:
    Meg St._Clair wrote:
    Was your old phone a touch screen phone?
    No.  It was an LG flip-phone.  If it rang, I could just flip it open with one hand and mash it to take a call.  Very handy!
    I'm not sure why you expect a touch screen phone to work like a basic flip phone. If that sort of feature is important to you, touch screen phones are not the device for you. It sounds as if you failed to consider what features were important to you and then properly research your phone purchase. While it's possible Apple may add other buttons to the phone in the future, there is no indication that current phones will ever be answerable any other way (the same is true of every Android phone I've used as well, by the way). So, you can either decide that the many other features that an iPhone has that your old LG didn't are worth this small inconvenience or you can return/sell the iPhone and go back to a phone with buttons. You can also try one of the several options for solving your problem that have been offered.

  • Even a simple program is not working ?

    Hi there,
    I typed a simple program to display the customer details. The program goes like this :
    import java.lang.*;
    public class Customer
         String custname;
         String custID;
    public Customer()
         custname = "Bob";
         custID = "S20010";
    public void displaydetails()
         System.out.println("Customer name is " + custname);
         System.out.println("Customer ID is " + custID);
    public static void main(String a[])
         Customer cust = new Customer();
         cust.displaydetails();
    The compilation went right. But, when I executed the program the following error message is displayed :
    c:\>java Customer.java
    Exception in thread "main" java.lang.NoClassDefFoundError: Customer/java.
    Please help !!

    Don't cross-post.
    http://forum.java.sun.com/thread.jspa?threadID=576890&messageID=2891064#2891064

  • Need help with a simple program (should be simple anyway)

    I'm (starting to begin) writing a nice simple program that should be easy however I'm stuck on how to make the "New" button in the file menu clear all the fields. Any help? I'll attach the code below.
    ====================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Message extends JFrame implements ActionListener {
         public void actionPerformed(ActionEvent evt) {
         text1.setText(" ");
         text2.setText("RE: ");
         text3.setText(" ");
         public Message() {
         super("Write a Message - by Kieran Hannigan");
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         setSize(370,270);
         FlowLayout flo = new FlowLayout(FlowLayout.RIGHT);
         setLayout(flo);
         //Make the bar
         JMenuBar bar = new JMenuBar();
         //Make "File" on Menu
         JMenu File = new JMenu("File");
         JMenuItem f1 = new JMenuItem("New");f1.addActionListener(this);
         JMenuItem f2 = new JMenuItem("Open");
         JMenuItem f3 = new JMenuItem("Save");
         JMenuItem f4 = new JMenuItem("Save As");
         JMenuItem f5 = new JMenuItem("Exit");
         File.add(f1);
         File.add(f2);
         File.add(f3);
         File.add(f4);
         File.add(f5);
         bar.add(File);
         //Make "Edit" on menu
         JMenu Edit = new JMenu("Edit");
         JMenuItem e1 = new JMenuItem("Cut");
         JMenuItem e2 = new JMenuItem("Paste");
         JMenuItem e3 = new JMenuItem("Copy");
         JMenuItem e4 = new JMenuItem("Repeat");
         JMenuItem e5 = new JMenuItem("Undo");
         Edit.add(e5);
         Edit.add(e4);
         Edit.add(e1);
         Edit.add(e3);
         Edit.add(e2);
         bar.add(Edit);
         //Make "View" on menu
         JMenu View = new JMenu("View");
         JMenuItem v1 = new JMenuItem("Bold");
         JMenuItem v2 = new JMenuItem("Italic");
         JMenuItem v3 = new JMenuItem("Normal");
         JMenuItem v4 = new JMenuItem("Bold-Italic");
         View.add(v1);
         View.add(v2);
         View.add(v3);
         View.addSeparator();
         View.add(v4);
         bar.add(View);
         //Make "Help" on menu
         JMenu Help = new JMenu("Help");
         JMenuItem h1 = new JMenuItem("Help Online");
         JMenuItem h2 = new JMenuItem("E-mail Programmer");
         Help.add(h1);
         Help.add(h2);
         bar.add(Help);
         setJMenuBar(bar);
         //Make Contents of window.
         //Make "Subject" text field
         JPanel row2 = new JPanel();
         JLabel sublabel = new JLabel("Subject:");
         row2.add(sublabel);
         JTextField text2 = new JTextField("RE:",24);
         row2.add(text2);
         //Make "To" text field
         JPanel row1 = new JPanel();
         JLabel tolabel = new JLabel("To:");
         row1.add(tolabel);
         JTextField text1 = new JTextField(24);
         row1.add(text1);
         //Make "Message" text area
         JPanel row3 = new JPanel();
         JLabel Meslabel = new JLabel("Message:");
         row3.add(Meslabel);
         JTextArea text3 = new JTextArea(6,22);
         messagearea.setLineWrap(true);
         messagearea.setWrapStyleWord(true);
         JScrollPane scroll = new JScrollPane(text3,
                                  JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                                  JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         //SpaceLine
         JPanel spaceline = new JPanel();
         JLabel spacer = new JLabel(" ");
         spaceline.add(spacer);
         row3.add(scroll);
         add(row1);
         add(row2);
         add(spaceline);
         add(spaceline);
         add(row3);
         setVisible(true);
         public static void main(String[] arguments) {
         Message Message = new Message();
    }

    persiandude wrote:
    Topic: Need help with if, else, and which statements and loops.
    How would I display 60 < temp. <= 85 in java
    System.out.println("60 < temp. <= 85 in java");
    another question is how do I ask a question like want to try again (y/n) after a output and asking that everytime I type in yes after a output and terminate when saying No.Sun's [basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    Sun's [New To Java Center|http://java.sun.com/learning/new2java/index.html].Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    [http://javaalmanac.com|http://javaalmanac.com]. A couple dozen code examples that supplement [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance].
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's [Thinking in Java|http://mindview.net/Books/DownloadSites] (Available online.)
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/ref=pd_bbs_1?ie=UTF8&s=books&qid=1214349768&sr=8-1]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance].
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806].

  • Can you please test a simple program on the PDA for me

    Hi,
    I am attaching a simple code for writing an array on the serial port of the PDA. The serial port is configured for 57600, 8, 1 stop, no parity.
    I need to know if you get the following sequence in the display "Checkstring 3" : 03,08,00,01,03,00
    On my PDA (IPAQ 5450) the "00" is not displayed or transmitted. Hence I wish to know if LV has a bug or I need to write a DLL to do this operation.
    Please help me, because this is the last thing that I expected LV to go wrong.
    Thanks in advance.
    Attachments:
    UnderDev_SerialPortCommandWrite.vi ‏70 KB
    Serial_Port_Initialize.vi ‏27 KB

    Hello �
    I tried your program in an iPAQ H3845 and I was able to see the 00 in the sequence.
    S Vences

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • I can't open pages because it tells me that I need a new program. I have 08 and 09 installed on my new Mac bookair but 08 seems to be the default.

    I have a new mac book air and it shows that it has pages 08 and the newer version pages 09 installed, but it only opens in pages 08. Now pages tells me I need to update the progammbefore I can open pages again. Even documents that I have created only yesterday won't open anymore. Any ideas?

    I bought the computer and pages 09 via the apple store online and both programs were on the computer when it came. Up to the error message I hadn't even checked which one of the pages program I was working with.

  • Good morning a few weeks ago  I send the request for the replacement program of my ipod nano 1st generation and they sent me the shipping box but I did not get the label to go back,  and I can not  return it , i need to you sent me again the box for retu

    Good morning a few weeks ago  I send the request for the replacement program of my ipod nano 1st generation and they sent me the shipping box but I did not get the label to go back,  and I can not  return it , i need to you sent me again the box for return the ipod

    Best thing would be to call Apple up again, and let them what has happened and they'll help you!

  • I am using a program that opens a document in adobe and I need to save it back in the program.  I get this message: this document is trying to connet to: fill://index.cfm?event=vendorsonly.submiteventform.  Help

    I am using a program that opens a document in adobe and I need to save it back in the program.  I get this message: this document is trying to connet to: fill://index.cfm?event=vendorsonly.submiteventform.  Help

    Have you contacted the people who make the program? It sounds like something special from that program.

  • I downloader all the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    I downloadedall the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    HI There,
    It seems that Presenter is not fully downloaded. Please check you have downloaded .exe and .7z files successfully. In case you are still facing the issue then please click on the following link to chat with the support :  Chat
    with an Expert
    Regards,
    Mayank

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • I have a 2T apple time capsule and router. I bought a Hauppauge WinTV extender which allows regular TV to be broadcasted on a PC. The program allows streaming to a Mac or iPad, iPhone, etc. I need to open a port on the router to allow this to work.

    I have a 2T apple time capsule and router. I bought a Hauppauge Win TV extender which allows TV to be broadcasted on a PC. The program allows for the TV to be streamed on a Mac, Iphone, Ipad. I need to access the router set up options to open a port on the router to allow this program to stream the TV to the Mac and Iphone. I do not know how to access the apple time capsule router to change the settings to open a port on the router. help please.

    Firstly you do not need to open ports to stream locally.. there is no port block in local LAN.. only WAN to LAN. So there is a good chance it is not needed at all..
    Opening ports on the TC I strongly recommend a v5 airport utility.. you can download one for windows if you don't have a Mac.. iOS version of the utility I am not sure but it will not work to do complex things.
    In the v5 utility go to the NAT area, and click on port mappings.
    Sorry I don't have a screen shot at the moment of the actual mapping page.. but simply put the IP of the device you want opened and the port.
    There are plenty of posts with this info if you google.
    But as noted.. this is purely WAN to LAN.. nothing else.

Maybe you are looking for

  • Itunes on external hard drive - some mp3s stalling and crashing - HELP!

    Hi, I hope somebody can help me. I've had my itunes library on a western digital external hard drive for nearly a year now. i have upwards of 17, 000 songs. Recently after a few seconds playback of certain songs the hard drives starts to click, the s

  • Error Code 50 - Cloud disappeared from desktop

    Still appears in Control Panel > Programs...

  • StageDisplayState.FULL_SCREEN_INTERACTIVE failing

    I'm having some issues with the fullscreen mode in AIR and hopefully you guys can point me in the right direction. Our application is a pure actionscript project that's published as an AIR file. When the app starts it should jump into full screen mod

  • IDOC to XML SOAP Scenario

    Hi All, I want to implement IDOC to XML SOAP scenario for 3 different IDOC types. Should i implement it under same namespace or use different namespace for each IDOC to XML scenario. Thanks, Vishal

  • Regarding Connection Pooling in Struts

    Hi All, I m using Struts for my web application. Now I want to use the Connection Pooling for my applicaiton. I m using JBoss, and Oracle 10gXE. My question are : 1. Do I need to use Oracle Specific Connection Pooling or commons DBCP & Pool. 2. Do I