Hi,
I'm pulling my hair out over this. Development env is the CS 21.1 with the latest version of the SDK. I'm trying to write WebReport subtags as Oscript to avoid having to add a complicated file transfer in my module. This should be the right way to do sub-tags based on what I've read elsewhere. I can write the tag objects no problem, but my issue has to do with inheritance. I have a series of utility functions I want to make available to my subtags. In normal oscript, you would write an object like so:
public Object MasterSubTag inherits RKTENGINE::AllTags::#'Sub-Tags'#
public function Frame GetCategoryFrame()
// My code here
return myFrame
end
end
I then write my sub tag as
public Object MySubTag inherits MasterSubTag
override function Object Execute(List args={})
Frame myFrame = .GetCategoryFrame()
end
end
Code when run ALWAYS crashes on the .GetCategoryFrame() call above. What am I missing here????
-Hugh