Help with scripting InDesign Workspaces

I have been tasked with creating a script where it saves your current workspace. Seems simple enough but it doesn’t seem like InDesign’s scripting dictionary includes that function.
Any ideas?

moxiemom,

Here’s a gui script to save the current workspace. I hope this is what you’re looking for.

tell application "System Events"
	tell process "InDesign CS"
		tell menu bar 1
			click menu item "Save Workspace..." of menu "Workspace" of menu item "Workspace" of menu "Window" of menu bar item "Window"
		end tell
	end tell
end tell

PreTech