You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-interest
I'm writing a lua script and I have a problem.
I'd like get the currenct file name, like this:
MyFileName = editor:getFileName()
But getFileName() function is not.
How can I get the currecnt file name in lua?
Andrew
Philippe Lhoste
unread,
Jan 1, 2011, 8:06:54 AM1/1/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-i...@googlegroups.com
On 30/12/2010 14:55, Andrew wrote: > How can I get the currecnt file name in lua?
print(props['FileNameExt']) (or 'FilePath', or 'FileName')
-- Philippe Lhoste -- (near) Paris -- France -- http://Phi.Lho.free.fr -- -- -- -- -- -- -- -- -- -- -- -- -- --
Sallai András
unread,
Jan 2, 2011, 3:34:16 AM1/2/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-i...@googlegroups.com
2011-01-01 14:06 keltez�ssel, Philippe Lhoste �rta:
> On 30/12/2010 14:55, Andrew wrote: >> How can I get the currecnt file name in lua? > > print(props['FileNameExt']) > (or 'FilePath', or 'FileName') >
Thank you very much! This resolving is perfect, is working. I did not know: props['something']