Thursday, March 26, 2009

Apps: iPrint, BannerZest, TextExpander

Apps: iPrint, BannerZest, TextExpander
iPrint 2.0 ($15) allows users to select data within an application that they would like to print. The selection of data can be done through the use of a keyboard shortcut or a popup Dock menu and allows users to print only the material they desire to print. A new Preferences window has been added which allows users to set a default option of always displaying both the Page Setup and Print dialog b...



CULV notebooks to come in 15.6-inch sizes?
Systems based on Intel's CULV budget ultraportable platform may be used for systems with displays as large as 15.6 inches, sources in the industry have reportedly told DigiTimes. Intel is officially defining the typical size for one of the budget ultraportables as between 11 and 13 inches, but "several first-tier" notebook makers that include Acer, Dell and HP are all believed building ultra-thin...



iPhone App Refund Policies Could Bankrupt Developers
We reported yesterday about Apple’s alleged delay in payments to iPhone app developers, but there is more alarming news from iPhone developers about Apple’s refund policies.

Photo leak shows Samsung Alias2, dynamic keys
An image leak confirms rumors that Samsung has been working on a successor to the Alias handset. The updated device, known as the Alias2, provides a similar dual-hinge design to the earlier model but with several changes. The keypad features dynamic keys that show numbers when the handset is used in portrait mode, but switch to QWERTY letters when the phone is opened in the landscape orientation....



Lite-On to Launch 24x DVD Burners in Europe

Lite-On started distributing in Europe a new series of DVD burners. Beside this new record in performance, Lite-On brings also new features to make its units defferent than models from competitors. One of hte feature is the new technology Smarterase.

It allows users to definitely burn and erase a disc without any chance of recovery of hte storeed data, as the laser burns deeply all tracks.

Two new models will also arrive in May. The first one will be compatible with the LightScribe technology, while the second will support LabelTag.

This new process allows you to burn letters on hte data stirage side of the disc. It will reduce the capacity of the disc, but it will not require specific media.



AppleScript: Exploring the power of Folder Actions, part III

Filed under: , ,

So far in this AppleScript feature we've covered what folder actions are and how to create them. In this AppleScript post, I'm going to tell you how to create your own custom scripts and add them to your folder actions list.

If you work with file permissions a lot, then you know how crazy it can get when you need to change a ton of files to their correct permission types. With this AppleScript folder action, you can easily change the permissions just by dragging and dropping files in their correct folder.

Creating the Script
To get started, we'll open the Script Editor (located in /Applications/Utilities). Once you have the editor opened, copy/paste the following script:

on adding folder items to this_folder after receiving added_items
tell application "Finder"
set fold_name to the name of this_folder
try
repeat with i from 1 to number of items in added_items
set new_item to item i of added_items
set the item_path to the quoted form of the POSIX path of new_item
do shell script ("/bin/chmod -R +r " & item_path)
end repeat
end try
end tell
end adding folder items to

This script will change the dropped files to a permission of "0644" meaning that everyone can read the file. For information about chmod and command line permissions strings, visit the Wikipedia page.

Continue reading to learn more about this AppleScript and folder actions.

Continue reading AppleScript: Exploring the power of Folder Actions, part III

TUAWAppleScript: Exploring the power of Folder Actions, part III originally appeared on The Unofficial Apple Weblog (TUAW) on Thu, 26 Mar 2009 08:00:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments

Apps: iPrint, BannerZest, TextExpander
iPrint 2.0 ($15) allows users to select data within an application that they would like to print. The selection of data can be done through the use of a keyboard shortcut or a popup Dock menu and allows users to print only the material they desire to print. A new Preferences window has been added which allows users to set a default option of always displaying both the Page Setup and Print dialog b...



CULV notebooks to come in 15.6-inch sizes?
Systems based on Intel's CULV budget ultraportable platform may be used for systems with displays as large as 15.6 inches, sources in the industry have reportedly told DigiTimes. Intel is officially defining the typical size for one of the budget ultraportables as between 11 and 13 inches, but "several first-tier" notebook makers that include Acer, Dell and HP are all believed building ultra-thin...



iPhone App Refund Policies Could Bankrupt Developers
We reported yesterday about Apple’s alleged delay in payments to iPhone app developers, but there is more alarming news from iPhone developers about Apple’s refund policies.

Photo leak shows Samsung Alias2, dynamic keys
An image leak confirms rumors that Samsung has been working on a successor to the Alias handset. The updated device, known as the Alias2, provides a similar dual-hinge design to the earlier model but with several changes. The keypad features dynamic keys that show numbers when the handset is used in portrait mode, but switch to QWERTY letters when the phone is opened in the landscape orientation....



Lite-On to Launch 24x DVD Burners in Europe

Lite-On started distributing in Europe a new series of DVD burners. Beside this new record in performance, Lite-On brings also new features to make its units defferent than models from competitors. One of hte feature is the new technology Smarterase.

It allows users to definitely burn and erase a disc without any chance of recovery of hte storeed data, as the laser burns deeply all tracks.

Two new models will also arrive in May. The first one will be compatible with the LightScribe technology, while the second will support LabelTag.

This new process allows you to burn letters on hte data stirage side of the disc. It will reduce the capacity of the disc, but it will not require specific media.



AppleScript: Exploring the power of Folder Actions, part III

Filed under: , ,

So far in this AppleScript feature we've covered what folder actions are and how to create them. In this AppleScript post, I'm going to tell you how to create your own custom scripts and add them to your folder actions list.

If you work with file permissions a lot, then you know how crazy it can get when you need to change a ton of files to their correct permission types. With this AppleScript folder action, you can easily change the permissions just by dragging and dropping files in their correct folder.

Creating the Script
To get started, we'll open the Script Editor (located in /Applications/Utilities). Once you have the editor opened, copy/paste the following script:

on adding folder items to this_folder after receiving added_items
tell application "Finder"
set fold_name to the name of this_folder
try
repeat with i from 1 to number of items in added_items
set new_item to item i of added_items
set the item_path to the quoted form of the POSIX path of new_item
do shell script ("/bin/chmod -R +r " & item_path)
end repeat
end try
end tell
end adding folder items to

This script will change the dropped files to a permission of "0644" meaning that everyone can read the file. For information about chmod and command line permissions strings, visit the Wikipedia page.

Continue reading to learn more about this AppleScript and folder actions.

Continue reading AppleScript: Exploring the power of Folder Actions, part III

TUAWAppleScript: Exploring the power of Folder Actions, part III originally appeared on The Unofficial Apple Weblog (TUAW) on Thu, 26 Mar 2009 08:00:00 EST. Please see our terms for use of feeds.

Read | Permalink | Email this | Comments

No comments:

Post a Comment