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.

Linking proc's

Old posts that have not been replied to for several years.
Locked
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!!
Locked