
How do I add a variable to my block in an extension for this. What code i need?

How do I add a variable to my block in an extension for this. What code i need?
Do you mean a parameter?

From App Inventor Sources here -
@SimpleEvent (description = "Event indicating that the contents of the file have been written.")
public void AfterFileSaved(String fileName) {
// invoke the application's "AfterFileSaved" event handler.
EventDispatcher.dispatchEvent(this, "AfterFileSaved", fileName);
}
yes I meant that 
thanks for it!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.