OT: What's the Mac equivalent of Microsoft Paint?

What's the Mac equivalent of Microsoft Paint?
It used to be MacPaint, but isn't that long gone?
Is it iLife? If so, in the specs I don't see any mention of
basic paint functions although maybe it has them.
Obviously I don't have a current Mac or I'd know the answer
to this.
Thanks.

http://en.wikipedia.org/wiki/MacPaint
http://en.wikipedia.org/wiki/QuickDraw
http://www.pixelpoppin.com/dorena/
http://sarwat.net/painting/

Similar Messages

  • What is the mac equivalent to adobe acrobat?

    what is the mac equivalent to adobe acrobat?

    Adobe Acrobat. http://www.adobe.com/products/acrobatpro/tech-specs.html
    Stedman

  • What is the mac equivalent to a right clic on a windows machine

    What is the Mac equivalent to a right click?  I installed Office for Mac 2011 on my macbook pro and I need to right click over a file from an ealier version of Office to make Office 2011 the default version of office.  This is all in preparation to install Lion (Lion won't support Office 2004 and I can't afford to lose access to these files).

    CTRL+click
    CTRL=control (in between the fn and alt/option keys).
    You can also go into System Preferences --> Trackpad and ensure "Secondary Click" is checked so that a two finger tap will act as a "right-click."

  • What is the Mac equivalent of the command "ctrl shift  I"  for a PC

    HI
    what is the Mac equivalent of the command "ctrl+shift + I"  for a PC to get to the cookies and delete them

    It varies depending on which browser you're using. In Safari, choose Preferences from the Safari menu, click on the Privacy tab, and then on Details.
    (101212)

  • What is the mac equivalent of the windows run command

    I am a mac virgin, always used windows based pc's. I am finding it a bit of a struggle. What is the equivalent run command on a mac?

    To launch a program, double-click its icon or CONTROL-click it and select open. In the Terminal.app (CLI program), it's open <path to application>.
    Since you're a newcomer to the Mac, peruse Switching from Windows to Mac OS X and Basic Tutorials on using a Mac
    G4 450 MP Gigabit   Mac OS X (10.4.9)  

  • What is the Mac equivalent for ALT codes?

    I want to type basic fractions. In Windows one uses ALT codes (e.g. ALT+0169 for "1/2"). What do you do in Mac?

    This page shows you the solution - the layout of the Character Viewer has changed but the principle is the same.
    http://www.macworld.com/article/1159762/real_fractions.html

  • What's the Mac equivalent of Windows Print Setup?

    I can't find where in OS 10.8.5 applications like Numbers or Pages to set margins, page orientation (portrait/landscape), etc. as in Windows Page Setup facility. I also can't find where to set printing in color or B&W.

    The choice of color vs B/W and single sided vs duplex printing is all found in the print dialog -- exactly where in the print dialog is determined by the author of the printer driver software, but it will be in one of the drop down menus in that dialog. In Apple applications such as Pages and Numbers the page setup is found in the File menu or you can access it directly with Shift+Command+P. Margins can be set by going to the View menu and selecting the option to Show Rulers or you can click on the appropriate section of the Inspector pane on the right hand side of the Window. The Pages or Numbers Help section has a lot of tutorial material that will walk you through most of what you need to know.

  • Whats the Mac equivalent to Disk Defrag?

    Newly converted PC guy....now a Mac guy. Just got my mac yesterday. I like to keep things clean on my computers.....what is the mac equivalent to disk defrag...and how do i do it?

    bp4life71 wrote:
    oh...in case your wondering why i put this here in bootcamp is because im trying to run bootcamp assistant and it tells me I have to reformat my drive to a particular format....i checked and its at that format.... So i was advised to clean my hard drive...ie disk frag to free up some space...this was the suggestion...
    There is almost never a reason to defrag a Mac. Indeed, doing so can be a negative. Defrag is defrag regardless of the OS.
    What you say above does not make much sense. Formatting and defraging are vastly different things. What is the exact wording of the message you refer to as "it tells me I have to reformat my drive to a particular format?"

  • What is the Oracle equivalent of the Microsoft Access FIRST function?

    Using: Oracle 10gR2 RAC on SUSE Linux 9 (10.2.0.3)
    In the process of converting a Microsoft Access database to Oracle, an Access query is using the FIRST function.
    What is the Oracle equivalent of the Microsoft Access FIRST function?
    In the attempt to convert, the Oracle FIRST_VALUE function was used. However, the same results was not achieved.
    Thanks,
    (BLL)
    Query:
    h2. ACCESS:
    SELECT
         TRE.GCUSNO,
         UCASE([DCUSNO]) AS DCUSNO_STD,
         *FIRST(UCASE([DNAME])) AS DNAME_STD*,
         *FIRST(UCASE([DADDR])) AS DADDR_STD*,
         *FIRST(UCASE([DCITY])) AS DCITY_STD*,
         TRE.DSTATE,
         FIRST(TRE.DZIP) AS DZIP,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT
    FROM
         TRE
    GROUP BY
         TRE.GCUSNO,
         UCASE([DCUSNO]),
         TRE.DSTATE,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT;
    h2. ORACLE:
    SELECT DISTINCT
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)) AS DCUSNO_STD,
    UPPER(TRIM(TRE.DNAME)) AS DNAME_STD,
    UPPER(TRIM(TRE.DADDR)) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DNAME)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DNAME_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DADDR)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DCITY)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DCITY_STD,
    TRE.DSTATE,
    TRE.DZIP,
    FIRST_VALUE(UPPER(TRIM(TRE.DZIP)) IGNORE NULLS) OVER (ORDER BY TRE.DZIP ASC) AS DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT
    FROM CRM.TREUP100R TRE
    GROUP BY
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)),
    TRE.DNAME,
    TRE.DADDR,
    TRE.DCITY,
    TRE.DSTATE,
    TRE.DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT;

    A slight correction to odie's post. I think you want min not max to replicate the Access first function, but see below to be sure. So:
    min(upper(trim(tre.dname))) keep (dense_rank first order by tre.gcusno) as dname_std
    user10860953 wrote:How does one ignore null values?The min and max functions will ignore nulls automatically, so if there is a null value in tre.dname, it will not be be returned, unless all of the values are null. For example:
    SQL> WITH t AS (
      2     SELECT 65 id, 'ABCD' col FROM dual UNION ALL
      3     SELECT 37, 'DEFG' FROM dual UNION ALL
      4     SELECT 65, 'DEFG' FROM dual UNION ALL
      5     SELECT 65, null FROM dual UNION ALL
      6     SELECT 70, null FROM dual UNION ALL
      7     SELECT 70, null FROM dual UNION ALL
      8     SELECT 37, 'ABC' from dual)
      9  SELECT id,
    10         MIN(col) keep (DENSE_RANK FIRST ORDER BY id) min_dname_std,
    11         MAX(col) keep (DENSE_RANK FIRST ORDER BY id) max_dname_std
    12  FROM t
    13  GROUP BY id;
            ID MIN_ MAX_
            37 ABC  DEFG
            65 ABCD DEFG
            70John

  • I'm on a  Mac and I need to know how to go one step back in Lightroom 5.   In other words, what is the Lightroom equivalent of Command Z in Photoshop?

    I'm on a  Mac and I need to know how to go one step back in Lightroom 5.   In other words, what is the Lightroom equivalent of Command Z in Photoshop?

    Command Z works for me on Lightroom - always has.
    Edit>Undo is the Menu command

  • What is the best application of Microsoft Office for the iPad?

    What is the best application of Microsoft Office for the iPad?

    RPaolo wrote:
    Can I open word, excel, and .ppt with this app?  How much does it cost?
    Is it similar to operate as Microsoft Office Word 2011 for MAC?
    Yes, of course that is why I recommend them as office-compatible apps for iOS.  That is exactly what they are designed for - to allow you to work with your MS Office documents on your iOS device.
    I'm not sure of the current price, but if you search the app store, they are very easy to find - Docs2Go and QuickOffice have been amongst the top ranked MS Office-type apps for several years now.  Both also include a means to move files from your computer to your iOS device (QuickOffice uses an embeded file server over wifi, and Docs2Go has a free companion sync app for your computer).

  • Mac equivalent to Microsoft money - any ideas please

    Mac equivalent to Microsoft money - any ideas please

    Good place to look for software:
    http://www.macupdate.com/
    And for free alternatives to some popular software packages:
    http://alternativeto.net/

  • Simple question: What's the Mac shortcut for size???

    What's the Mac shortcut for increasing the size of the online image?
    Thank you

    Safari offers only two choices, zoom page and zoom text only.
    To zoom images, you have to look for a safari extension.
    I have not tested any, so I have no information about any of it.
    Best.

  • Thinking of purchasing Illustrator 10 - what are the Mac system requirements

    Thinking of purchasing Illustrator 10 - what are the Mac system requirements. I have a G4 10.4 and a MacBook Pro OSX 10.9 Maverick!

    Hi, welcome to the forum.
    tmarie1 wrote: Thinking of purchasing Illustrator 10 - what are the Mac system requirements. I have a G4 10.4 and a MacBook Pro OSX 10.9 Maverick!
    Did you actually mean version 10, as in Illustrator 10 from 2001?
    If so:
    • Your G4 with OS X 10.4 (2005-2007) would probably run it, (using Rosetta if needed / PPC based).
    • OS X 10.9 will definitely not allow install or run it.
    Illustrator 10: System Requirements
    • Macintosh: Power PC Processor G3, G4, or G4 dual; Mac OS software 9.1, 9.2 or Mac OS X 10.1; 128 MB Ram; 180 MB available disk space; For Postscript printing, printers capable of Adobe PS levels2 or 3.
    • Windows: Intel Pentium II and above; Windows 98 and above; 128 MB Ram; 180 MB available disk space; For Postscript printing, printers capable of Adobe PS levels2 or 3.

  • What is the WinRT equivalent of MediaPlayerLauncher

    WP8 has MediaPlayerLauncher, so what is the WinRT equivalent of MediaPlayerLauncher for WP8.1?
    Hong

    Thanks, Rob. That is what I was looking for. This is a universal apps project. I tested this with the Windows version and it launched the default video player as expected.
    Hong

Maybe you are looking for

  • Error: 1002097 Unable to load database [$DM_DB$]

    What is this error ..I came across $DM_APP$ but not this _DB$?? I can stop/start, retrieve data, copy ....but not rename... When I try to rename it gives this error?? I tried restarting Essbase services ...but the same issue still... Any suggestions?

  • Create a New Contact in the same window

    Hi Folks, I want to create a New Contact from the Quick Create Link and want it function in the same way that the "New" / "Copy" Button functions Currently: Quick Create Link opens a Contact in a New Window. Requirement: Contact should open in the sa

  • How to get space after a letter section in the Index

    Hi I've created an index successfully from multiple InDesign documents and brought it into the document. Struggling to work out how to get a space to appear between the end of one letter section (eg 'A' entries) and next section (eg 'B' entries). Try

  • Select query on table rcv_lots_interface is always returning null

    Hi , I need a help on the below issue. The issue is after creating PO in Oracle 11i I receive it in MSCA application. When we receive it at that point data gets inserted in the table " rcv_transactions_interface " and we have written a trigger on it.

  • SBLW-XPWEB-W3-US downl

    I just want to say, that Creative should at least reconsider chnages into the drivers download section. First at all, it bothering to install driver and then patch over it - what about patch the drivers before install, so user can DL the latest drive