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


Click here to return to the 'Let's try again :)' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Let's try again :)
Authored by: jimhoyt on Feb 02, '02 04:21:00PM
This'll keep it from using your disk name...
-- added this line:
property this : ""

tell application "Finder"
get the exists of the front Finder window
if the (exists of the front Finder window) is true then
try
set newWindow to target of front window
set oldView to current view of front window
-- added this line:
set windowBounds to bounds of front window
make new Finder window to newWindow
set current view of front window to oldView
-- added this line:
set bounds of front window to windowBounds
end try
else
try
-- changed this line:
make new Finder window to alias this
set the current view of the front Finder window to column view
end try
end if
end tell


[ Reply to This | # ]