Peter T. Evensen wrote:
My projects consist of multiple (main) stacks. It would be nice if the IDE had a "save all" option so I could save all the changes without having to switch to each stack or quit revolution to see if I get "Save changes?" dialog. Does Rev have this? Just wondering if I overlooked something.

You can make a plugin for it easily enough:

on mouseUp
  repeat for each line tStack in the windows
   -- Exclude IDE stacks:
   if char 1 to 3 of tStack = "rev" then next repeat
   -- do the deed:
   save stack tStack
  end repeat
end mouseUp

--
 Richard Gaskin
 Fourth World Media Corporation
 ___________________________________________________________
 [EMAIL PROTECTED]       http://www.FourthWorld.com
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to