Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Script to zoom in and out' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Script to zoom in and out
Authored by: GrahamAJones on Jun 06, '06 07:54:35AM

Hi,

Great hint!

This script will prompt you for a Tiny buddy list or a Normal one (paste into Script Editor and run, or save from there as an appplication):

display dialog ¬
"Would you like a tiny iChat window or a normal one?" buttons {"Cancel", "Tiny", "Normal"} default button "Normal"
set theResult to button returned of result
if theResult is "Normal" then
tell application "iChat" to tell (a reference to the bounds of window "Buddy List") ¬
to set contents to (items 1 thru 3 of (get contents) & (item 2 of (get contents)) + 302)
else if theResult is "Tiny" then
tell application "iChat" to tell (a reference to the bounds of window "Buddy List") ¬
to set contents to (items 1 thru 3 of (get contents) & (item 2 of (get contents)) + 94)
end if



[ Reply to This | # ]