How do i set a Variable?-Put a button or whatever.
-In the buttons coding put
Code:
Call ShockwaveFlash1.SetVariable("variable here",value)
How Do i put a use a Textbox to set a Variable Value?-Make a Textbox.
-Make a button.
-Double click the button.
-Put this in your buttons code.
Code:
Call ShockwaveFlash1.SetVariable("variable here", Textbox1.Text)
How do i set a variable with user definable Variable and Value?-make 2 textboxes.
-Make a button.
-Put this code in the button
Code:
Call ShockwaveFlash1.SetVariable(Text1.Text,Text2.Text)
How do i Get the value of a Variable? (Textbox)-Make 2 Textboxs and a Button.
-Double click the button and put in its coding
Code:
On Error Resume Next
Text1.Text = ShockwaveFlash1.GetVariable(Text2.Text)
If you want it to show the value in a Label put
Code:
Label1.Caption = ShockwaveFlash1.GetVariable(Text2.Text)
How Do i use a Input Box to Set a Variable?-Make a Button
-Double Click the Button
-Put in this code. (Using Money as a Example)
Code:
Dim Money As String
Money = InputBox("How Much Money You Want?", "Set Money")
Call Flash.SetVariable("_root.TotalMoney", Money)
This Would show up as this.

Another simpler way is to use this.
-Double click a Button.
-Put this in the coding
Code:
Call ShockwaveFlash1.SetVariable("Variable Here", InputBox("Your Message", "InputBox Title")
How do i make a Drop Down Menu?-Click CTRL + E.
-Type in Caption what you want the Tab to say.
-Type in the Name what you want the Tab to show up as in the code.
How do i make a Sub Drop Down Menu?-Click CTRL + E.
-Click the down arrow in the interface. You should be below the origional Drop Down Menu caption.
-Click the Arrow going right.
-Type in the Caption and Name.
It should look like this when you click on the Main Tab.
How do i make a Message Box?-Make a button.
-Double Click it.
-In the code put
Code:
MsgBox "Put Your Text Here"
This will look like.
How do i Force Load?-Double Click a button or your form.
-in the code put
Code:
ShockwaveFlash1.Playing = True
How do i set a custom SWF?-Make a Textbox.
-Make a Button.
In the Buttons coding put
Code:
ShockwaveFlash1.LoadMovie 1, Text1.Text
How do i load a SWF from inside a folder where my trainer is?Code:
ShockwaveFlash1.LoadMovie 1, App.Path & "\SWF.swf"
How Do i Save My Project as a .EXE?-Click FILE.
-Then click Make Project1.Exe
How do i make another form?-Go to Project.
-Click New Form.
How do i put a Password on a program i made?-Make 2 Forms.
-Make a Textbox and Button on Form1.
-Double click the button and put
Code:
If Text1.Text = password here Then
Form2.Visible = True
Form1.Hide
End If
How do i freeze a variable using a checkbox?-Make a checkbox
-make a timer double click it and put
Code:
Call ShockwaveFlash1.SetVariable("variable",value)
-Set the timers interval to 1
-double click the checkbox and put
Code:
If Check1.Value=1 Then
Timer1.Enabled=True
End If
If Check1.Value=0 Then
Timer1.Enabled=False
End If
How do i unload multiple forms when i click exit on form1?-Double click Form1.
-Change the funtion so it says
Code:
Private Sub Form_Unload()
-Put below it
Code:
Call Unload (Form2)
Unload Me
You can use this on any form. So it could go up to Unload Form13.
How can i have a different button from the normal ones?-Download this
http://uploaded.to/?id=brn858-Go to VB
-Click CRTL + D
-Select all the contents of the Styler Buttons folder.
-Click the icon thats now in your tool bar.
Is there a different way to have customized buttons?-You can make your own.
-Go to Paint, Gimp, Photoshop etc.
-Make a button.
-Go to VB.
-Click the picture button.
-Put in your code.
-By -Pineapple!-