Added prompts to various file-select dialogs
Renumbered resources to above 512
diff --git a/Mac/scripts/EditPythonPrefs.py b/Mac/scripts/EditPythonPrefs.py
index 3e14ff3..2ed6045 100644
--- a/Mac/scripts/EditPythonPrefs.py
+++ b/Mac/scripts/EditPythonPrefs.py
@@ -18,7 +18,7 @@
 # resource IDs in our own resources (dialogs, etc)
 MESSAGE_ID = 256
 
-DIALOG_ID = 131
+DIALOG_ID = 512
 TEXT_ITEM = 1
 OK_ITEM = 2
 CANCEL_ITEM = 3
@@ -85,7 +85,7 @@
 		if n == REVERT_ITEM:
 			return [], pythondir
 		if n == DIR_ITEM:
-			fss, ok = macfs.GetDirectory()
+			fss, ok = macfs.GetDirectory('Select python home folder:')
 			if ok:
 				pythondir = fss
 	tmp = string.splitfields(GetDialogItemText(h), '\r')