I want to invoke a method from inside flash using ExternalInterface.
The method declaration being 'amClickedOnBullet(graph_index, value,
series, url, description)'. I plan to write the definition of this
method inside a greaseMonkey script. The problem is that the method is
not getting invoked when written inside a GM script. But I'm able to
invoke it , when added from FIREBUG console [using run option].
The method definition i used in firebug is
function amClickedOnBullet(graph_index, value, series, url,
description) {
alert(series.replace(/[<]br[>]/, " "));
}Thanks, Anuj -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/greasemonkey-users?hl=en.
