tags:

views:

697

answers:

1

Hi i have to load another swf from my swf and i need to give them flashvars attributes, how can i do that?

i tried this but not working loader.load(new URLRequest(url+"id=33"));

A: 

Aren't you missing a question mark?

loader.load(new URLRequest(url+"?id=33"));

Chetan Sastry
no i missed here only, typed badly. But i looked up, this pattern never will result flashvars...
Please see this - http://stackoverflow.com/questions/407858/passing-flashvars-style-parameters-to-a-loaded-swf
Chetan Sastry