// helloWorld.jsx // Copyright 2006-2008 // Written by Jeffrey Tranberry // Photoshop for Geeks Version 2.0 /* Description: This is my first script which uses the alert(); method to display the string “Hello, World!” */ // enable double clicking from the // Macintosh Finder or the Windows Explorer #target photoshop // Make Photoshop the frontmost application app.bringToFront(); ///////////////////////// // SETUP ///////////////////////// ///////////////////////// // MAIN ///////////////////////// // Display a dialog with the text “Hello, World!” alert("Hello, World!"); ///////////////////////// // FUNCTIONS /////////////////////////