Mysteryman
Active Member
If one where to create an object...
objectdef sample
{
function fun1()
{
}
}
from your main... how do you call that function?
I've tried 20 combo's of the following with no luck....
variable sample eObject
call eObject.fun1
call eObject:fun1
nothing seems to find it.. can you even do this?
If i make it a member or method i can call it fine, but those are both atoms, and the function I'm creating wants to span more then a single tick... So an atom won't work.
objectdef sample
{
function fun1()
{
}
}
from your main... how do you call that function?
I've tried 20 combo's of the following with no luck....
variable sample eObject
call eObject.fun1
call eObject:fun1
nothing seems to find it.. can you even do this?
If i make it a member or method i can call it fine, but those are both atoms, and the function I'm creating wants to span more then a single tick... So an atom won't work.