home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hackers Magazine 57
/
CdHackersMagazineNr57.iso
/
Software
/
Multimedia
/
k3d-setup-0.7.11.0.exe
/
share
/
k3d
/
scripts
/
script_recursion_context.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2008-01-23
|
197 b
|
16 lines
#python
import k3d
a = "context 1"
k3d.ui().message(a)
recursive_script = """#python
import k3d
a = "context 2"
k3d.ui().message(a)
"""
k3d.execute_script(recursive_script)
k3d.ui().message(a)