I'm following allong the example of the "plugins and parsers" pdf
(found here: using plugins and parsers technote (PDF) )
How do i access user variables (read, write) in the processEvent function?
Function pizza_ProcessEvent(event As Object)
if type(event) = "roAssociativeArray" then
if type(event["EventType"]) = "roString" then
if event["EventType"] = "SEND_PLUGIN_MESSAGE" then
if event["PluginName"] = "Pizza" then
pluginMessage$ = event["PluginMessage"]
print "received pluginMessage ";pluginMessage$
return true
endif
endif
endif
endif
return false
End Function