Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
General Discussions
Switcher Hangout (Windows to Mac)
Me & Macbook, our 1st week together.
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Brown Study" data-source="post: 408310" data-attributes="member: 3889"><p>When you grow more comfortable with the Mac, search the web for</p><p></p><p>applescript primer</p><p></p><p>or words to that effect. AppleScripts (the Script Editor's English is U.S.) can be very complicated or very simple, but it can perform useful tasks even if you don't use all its complications. Knowing a little about AppleScript helps with Automator, too.</p><p></p><p>Paste this into Script Editor and click Run:</p><p></p><p>display dialog "Macs misspell dialogue." buttons "OK" default button "OK"</p><p></p><p>Or this one that I use all the time, so a new folder doesn't display the icon view.</p><p></p><p>tell application "Finder"</p><p> make new folder at folder "Desktop" of folder "your log-in name here" of folder "Users" of startup disk with properties {name:"Empty Folder"}</p><p> make new Finder window to folder "Empty Folder" of folder "Desktop" of folder "your log-in name here" of folder "Users" of startup disk</p><p> set current view of Finder window 1 to list view</p><p> set toolbar visible of Finder window 1 to false</p><p> close Finder window 1</p><p>end tellIf in Firefox, for example, you drag the bottom right corner to fill the screen, the green button at the top left will toggle the page between the page's default size and full-screen.</p></blockquote><p></p>
[QUOTE="Brown Study, post: 408310, member: 3889"] When you grow more comfortable with the Mac, search the web for applescript primer or words to that effect. AppleScripts (the Script Editor's English is U.S.) can be very complicated or very simple, but it can perform useful tasks even if you don't use all its complications. Knowing a little about AppleScript helps with Automator, too. Paste this into Script Editor and click Run: display dialog "Macs misspell dialogue." buttons "OK" default button "OK" Or this one that I use all the time, so a new folder doesn't display the icon view. tell application "Finder" make new folder at folder "Desktop" of folder "your log-in name here" of folder "Users" of startup disk with properties {name:"Empty Folder"} make new Finder window to folder "Empty Folder" of folder "Desktop" of folder "your log-in name here" of folder "Users" of startup disk set current view of Finder window 1 to list view set toolbar visible of Finder window 1 to false close Finder window 1 end tellIf in Firefox, for example, you drag the bottom right corner to fill the screen, the green button at the top left will toggle the page between the page's default size and full-screen. [/QUOTE]
Verification
Name this item. 🍎
Post reply
Forums
General Discussions
Switcher Hangout (Windows to Mac)
Me & Macbook, our 1st week together.
Top