Control flv using cue points

is there any way to control the external flv.
lets say:

  • the main timeline play
  • in frame 5 it loads the flv
  • in frame 30, the playhead stops as well as the flv
  • in frame 31, the playhead play as we as the flv

i tried cue point as event, when i convert the “clouds” i added “stopFlv” as event.
and i gave the FLVPlayback the instance “cloud_mc”
this is my code at frame 30:
ActionScript Code:

 [LEFT][COLOR=#0000ff]stage[/COLOR].[COLOR=#000080]addEventListener[/COLOR][COLOR=#000000]([/COLOR]Event.[COLOR=#000080]ENTER_FRAME[/COLOR], con[COLOR=#000000])[/COLOR]

[COLOR=#000000]function[/COLOR] conCOLOR=#000000[/COLOR]:[COLOR=#0000ff]void[/COLOR][COLOR=#000000]{[/COLOR]
cloud_mc.[COLOR=#0000ff]stop[/COLOR]COLOR=#000000[/COLOR]
[COLOR=#000000]}[/COLOR]
[/LEFT]