Making applescript save variables?

I have a problem where i need to pass the variable from one script to another.
This problem solves easily in applescript editor using this code:
main.scpt(sets the var. info)

display dialog "sdg" buttons {"yes", "no"}
if button returned of the result is "yes" then
	set info to "black" as string
end if

shower.scpt(displays the var. info)



set loader to load script ("/Users/Mardanov/Desktop/ghgjjgjjgjgj.app/Contents/Resources/Scripts/main.scpt")
--> Set your path	
set final to POSIX path of loader's info

display dialog final

But same thing (exept for the paths) doesn’t work for ASS.

I have notised that in order to make it work in applescript editor i need to:

  • run the “main.scpt”
  • save “main.scpt”
    So this two things are automaticaly done by mac if ill just save this script as an app and then run it.

But ASS doesnt save the variable after closing and “shower.scpt” says “cant make the info in to type reference”

So what should i do?
May be there someother ways to pass the variables?

Not sure if it will be of any help since it’s not directly related to ASS but have a look here: http://applescript.bratis-lover.net/library/plist/ I’ve been using this method to set variables in a plist file and passing them between different scripts.