[Maya-Python Club:1100] Maya listener Plugin

2008-09-15 Thread ChrisChia
Hi all, I need some advice here. I wish to write a program (either inside or outside maya) to record the list of maya actions created by a user. For example, Assuming that an user were using Maya, I wish to have all his actions recorded. How can I write such a plugin? --~--~-~--~~

[Maya-Python Club:1101] Re: Maya listener Plugin

2008-09-15 Thread yury nedelin
maya already does it for you . just log the script editor output into a text file. yury On Mon, Sep 15, 2008 at 2:54 AM, ChrisChia <[EMAIL PROTECTED]> wrote: > > Hi all, > I need some advice here. > I wish to write a program (either inside or outside maya) to record > the list of maya actions

[Maya-Python Club:1102] Re: Maya listener Plugin

2008-09-15 Thread Taylor Carrasco
Can you provide an example on how to log it? On Mon, Sep 15, 2008 at 8:56 AM, yury nedelin <[EMAIL PROTECTED]> wrote: > maya already does it for you . > > just log the script editor output into a text file. > > yury > > > > On Mon, Sep 15, 2008 at 2:54 AM, ChrisChia <[EMAIL PROTECTED]> wrote: > >

[Maya-Python Club:1103] Re: Maya listener Plugin

2008-09-15 Thread Ravi Jagannadhan
There's also journalling, that might help. On Mon, Sep 15, 2008 at 5:03 PM, Taylor Carrasco <[EMAIL PROTECTED]> wrote: > Can you provide an example on how to log it? > > On Mon, Sep 15, 2008 at 8:56 AM, yury nedelin <[EMAIL PROTECTED]> wrote: >> >> maya already does it for you . >> >> just log th

[Maya-Python Club:1104] Re: Maya listener Plugin

2008-09-15 Thread yury nedelin
I did not have time to look much into it but try this command in mel cmdFileOutput I think it will do what you need Yury On Mon, Sep 15, 2008 at 5:04 PM, Ravi Jagannadhan <[EMAIL PROTECTED]> wrote: > > There's also journalling, that might help. > > On Mon, Sep 15, 2008 at 5:03 PM, Taylor Carra

[Maya-Python Club:1105] Re: Maya listener Plugin

2008-09-15 Thread ChrisChia
how can I write a plugin if i don't intend to use MEL? any advice on the class that i should use? can MCommandMessage work in this case? On Sep 16, 8:31 am, "yury nedelin" <[EMAIL PROTECTED]> wrote: > I did not have time to look much into it but try this command in mel > cmdFileOutput > I think