0

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 it's not working:

loader.load(new URLRequest(url+"id=33"));
Kirell
  • 9,228
  • 4
  • 46
  • 61

1 Answers1

0

Aren't you missing a question mark?

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

Chetan S
  • 23,637
  • 2
  • 63
  • 78
  • no i missed here only, typed badly. But i looked up, this pattern never will result flashvars... –  Jan 28 '09 at 09:02
  • Please see this - http://stackoverflow.com/questions/407858/passing-flashvars-style-parameters-to-a-loaded-swf – Chetan S Jan 29 '09 at 05:59