vb6 Flash How to Put A Flash Game To vb6 ProgramI just Read Some tuts here that have been posted about Flash Last Night so I think If How can i put some Flash Game To vb6 form Cause i try to Cheat the game Flash TD(tower Deffence) using Mozilla and Mostly Happen is my browser Is always malfunction so i try to put it in vb6 Program and Its work

now I will Share it how to make it

Needed Vb6
Now Open VB6 and Make A new Form

After Clicking OK it will Look Like This One

Now what we Have to Do is Make A new Components Here How
Moust 2 In the toolbar
Then this One will shown Up

Just click Component and this one will Show

Now Find this Component that we will Use

After That it will shown Up in you tool Now Click that And Drag It to the Form to begin

Now We are done In our Form so we Will Now begin with the code
Now double Click the form so we can type in the code i choose the Form_load so when the user Open the Program it will Automatically load but you can also Put it in a Command button to load now here is the code that will load the Flash TD game Im not good In Flash

The code I put is this one
Private Sub Form_Load()
With ShockwaveFlash1 'name of the Flash Or shockwave that i put
.Stop
.AllowNetworking = "all"
.AllowFullScreen = True
.AllowScriptAccess = "always"
.Menu = False
.FlashVars = "allowFullScreen=true&autostart=true"
.SetVariable "allowFullScreen", "true"
.LoadMovie 0, "
http://novelconcepts.co.uk/FlashElementTD/FlashElementTD.swf"
' The Code above this One will Load the Flash Game
.Play
'This Will Play The Flash

End With
End Sub
Now run It and it will Load Like this One or run Like this One


Tamad Mag Basa

you can also Download this one i create this last night

http://www.2shared.com/file/6852885/7022e0b4/Flahs_TD_vb6.html