USERS  
  Log-In  
  Register  
  Members  

Thu Aug, 26 2004

Mac OS X's Color Picker

The blog codepoetry explores the Color Picker in OS X in great detail, helping us find all the great hidden features found within.

There are ways to use the Color Picker to choose a color anywhere on your screen. You can use external images as a custom palette, and much, much more.

One thing in the Comments is a complaint about having to go into an app's font colors to work with the Color Picker. I wrote a quick little AppleScript that does the job for you. It opens the Color Picker, and will even return a color in {R, G, B] format, if you choose one and press OK.

Here's the code:
set rgbValue to choose color default color {65535, 65535, 65535}
set rValue to item 1 of rgbValue
set gValue to item 2 of rgbValue
set bValue to item 3 of rgbValue

set the clipboard to ("{" & rValue & ", " & gValue & ", " & bValue & "}")

return rgbValue

Posted by: Krioni on Aug 26, 04 | 4:59 pm | Profile

permanent link | [0] comments (1271 views) | 
[0] Trackbacks | [0] Pingbacks

OmniWeb 5 - the best web browser

I had been hoping for a long time that OmniWeb would reach this point. Version 5.0 finally puts OmniWeb on top for serious users. It now has the stability to match its always-amazing feature set.

One unmatched feature - your browsing state is saved between re-launches. I cannot count the number of time I had many pages loaded in Safari or another browser and accidentally quit (or crashed), losing everything I had queued up to read.

I partially got around this in other browsers by making an AppleScript stay-open applet that saved the URLs of all open windows every minute. However, this leads to another area the OmniWeb excels: AppleScript support. When Apple put tabs into Safari, they did not make them accessible to AppleScript: you can only get information about the active tab for a window. This means that for my "backup web addresses" script to work in Safari I could not use tabs. It was even worse in other browsers that did not support Applescript AT ALL. OmniWeb's tabs are elements of a browser window, which means you can get every address of every tab of every browser. This is the right way to support AppleScript.

OmniWeb is definitely the best Mac web browser (which I believe makes it the best browser, period). How many hours do you spend web-browsing? If it is more than an hour per day, you need OmniWeb, and the money is well worth it. How much is your wasted time worth getting all your pages opened again? How much is it worth to be able to edit web forms in reasonable text boxes that allow Undo, etc? How much are site-specific font choices, popup-permission, cookie-permission, and more worth?

Buy it - invest in these guys and OmniWeb will only pull further ahead.

[I'm not affiliated with OmniWeb in any way except that I want this browser to stick around for a long time...]

VersionTracker.com page: http://www.versiontracker.com/dyn/moreinfo/macosx/3253
OmniWeb product page: http://www.omnigroup.com/applications/omniweb/

I'm looking forward to 5.1, which will use a more up-to-date WebCore rendering engine. I still need to dip into Safari every now and then to view a page properly.

Posted by: Krioni on Aug 26, 04 | 12:22 pm | Profile

permanent link | [0] comments (2453 views) | 
[0] Trackbacks | [0] Pingbacks
PREV page NEXT page