Help Function in Rf

Post Reply
User avatar
Otuama
Posts: 162
Joined: Sun Jun 27, 2010 2:29 pm

Help Function in Rf

Post by Otuama » Thu Jan 19, 2012 6:33 pm

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

User avatar
enrique
Site Admin
Posts: 42
Joined: Fri Jun 17, 2011 9:44 am

Re: Help Function in Rf

Post by enrique » Thu Jan 19, 2012 7:09 pm

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

User avatar
Otuama
Posts: 162
Joined: Sun Jun 27, 2010 2:29 pm

Re: Help Function in Rf

Post by Otuama » Thu Jan 19, 2012 11:55 pm

Thanks for the reply.

-Sean
Otuama - Vimeo
'Strength does not come from physical capacity. It comes from an indomitable will.' - Gandhi

Post Reply