Robert asked:
> How can one make a disk image with the fancy App --- > Applications (icon)?
Robert,
The trick is to create a symbolic link to the Applications folder, rather than
simply making an alias to the Applications folder on your drive.
This snippet will create the symbolic link which will appear on your Desktop
as an alias to the Application folder. Simply drag it to the DMG.
Ken
/*
Create Symbolic Link to Applications Folder
for Inclusion on DMG
Ken Shmidheiser
Feb. 15, 2012
*/
dim as Str255 t
open "Unix", 2, "ln -s /Applications ~/Desktop"
do: line input #2, t
until eof(2) : close 2
RunApplicationEventLoop()