Page 1 of 1

Help Function in Rf

Posted: Thu Jan 19, 2012 6:33 pm
by Otuama
Hi all.

Because I'm in a breaking mood I decided to try this in Rf2012.

Code: Select all

import os

help(os)
Realflow has crashed. Is there any way I can bring up the help for a function in Rf? It's not needed, I could use IDLE but I'm curious.

Thanks,

Sean

Re: Help Function in Rf

Posted: Thu Jan 19, 2012 7:09 pm
by enrique
Hi Otuama,

Maybe this could help you

Code: Select all

import os
scene.message(os.__doc__)
If you are really going to use it, wrapping it in a function could be helpful:

Code: Select all

def myHelp(arg):
    print arg.__doc__
cheers

Re: Help Function in Rf

Posted: Thu Jan 19, 2012 11:55 pm
by Otuama
Thanks for the reply.

-Sean