Page 1 of 1

onLastExit

Posted: Fri Aug 03, 2012 9:06 am
by also
Akelpad 4.7.4

Hi
I had a panel opened with the possibility to open all files onLastExit. The panel disappeared somehow and I cannot find how to open it. This feature is not defined in Plugin->Panel nor in Options -> Pug-ins. Anyway, is it possible to define a menu_item in menu File with "Open All Files On Last Exit" ?

Regards

Posted: Fri Aug 03, 2012 12:48 pm
by KDJ
also
Sessions plugin.
Read the documentation: Sessions-Eng.txt

Posted: Fri Aug 03, 2012 3:32 pm
by also
KDJ wrote:also
Sessions plugin.
Read the documentation: Sessions-Eng.txt
I read this file, created a menu and inserted some sub_items into it
"Projects" Index(4)
{
"Open last project" Call("Sessions::Main", 1, "%a\AkelFiles\Plugs\Sessions\OnLastProject")
"Open onLastExit" Call("Sessions::Main", 1, "%a\AkelFiles\Plugs\Sessions\OnLastExit")
}
the desired session_files exists, but it does not open anything.
Anyway, thank you very much

Posted: Fri Aug 03, 2012 3:44 pm
by Instructor
also

Code: Select all

"Projects" Index(4)
{
  "Open last project" Call("Sessions::Main", 1, "OnLastProject")
  "Open onLastExit" Call("Sessions::Main", 1, "OnLastExit")
} 

Posted: Fri Aug 03, 2012 5:04 pm
by also
Instructor wrote:also

Code: Select all

"Projects" Index(4)
{
  "Open last project" Call("Sessions::Main", 1, "OnLastProject")
  "Open onLastExit" Call("Sessions::Main", 1, "OnLastExit")
} 
Thank you !! now it works