This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Old posts that have not been replied to for several years.
-
J
Jimbo
Post
by Jimbo »
How can i call upon a proc whilst inside a proc. Or how can i loop proc's?
-
R
Roze
Post
by Roze »
proc firstproc {arg} {
some code
}
proc secondproc {} {
firstproc $arg
}
-
J
Jimbo
Post
by Jimbo »
Cheers!!!!
It worked..been trying to do that for ages!!