onLastExit

English main discussion
Post Reply
  • Author
  • Message
Offline
Posts: 7
Joined: Sun Feb 27, 2011 4:52 pm

onLastExit

Post 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

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

also
Sessions plugin.
Read the documentation: Sessions-Eng.txt

Offline
Posts: 7
Joined: Sun Feb 27, 2011 4:52 pm

Post 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

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

also

Code: Select all

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

Offline
Posts: 7
Joined: Sun Feb 27, 2011 4:52 pm

Post 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
Post Reply