/***************************************************************

	(c)1993 Asimware Innovations

	This ARexx script will set the palette of the current frame
	from the file	"t:ExportPalette"

 ***************************************************************/

options results
address 'AsimVTR_ARexx.1'

setpalette "t:ExportPalette"
if rc ~= 0 then do
	say 'Failed with 'rc'.'
	exit
end

say 'The palette has been set.'

exit
