
Originally Posted by
xBear Grylls
Thanks for your help!
Ill compile this now..
Keep posting tho

---------- Post added at 08:00 PM ---------- Previous post was at 07:48 PM ----------
@
DawgiiStylz
------
When I go to load the .swf it doesn't load into the movie?
Okay, I assume you want the user of the program to be able to load games by putting a link or loading the file onto the program right?
(Put down the Shockwave Flash Object in form1)
So, first of we will let the user load .SWF files onto the program so they play games they downloaded. So drag 2 buttons and a list box down. Rename button 1 to Open and button 2 to Use. Put the listbox in the middle of the two. Double click on open and put
Dim open As New OpenFileDialog
open = New OpenFileDialog
open.Filter = "SWF Files(*.swf)|*.swf"
If (open.ShowDialog() = DialogResult.OK) Then
ListBox1.Items.Add(open.FileName)
Next click on use and put Me.AxShockwaveFlash1.LoadMovie(1, ListBox1.SelectedItem)
Now the user will be able to open up the desired .SWF file and load it onto form1. Now just for looks I would right click on your project name and add another form, then drag a button down on form1 and double click on it and type Form2.Show()
Next drag a button and 2 textboxes and 2 labels down, rename the button to load and rename label 1 to SWF and put it next to textbox1 and rename label2 to base and put it next to textbox2, double click on load and put
Me.AxShockwaveFlash1.Movie = TextBox1.Text
Me.AxShockwaveFlash1.Base = TextBox2.Text
Me.AxShockwaveFlash1.Play()
If you need anymore help add me on skype: AqworldThunder
I'll guarantee this will work, I've made 12 trainers/updates so I know what I'm doing.