|
|
Browse by Tags
All Tags » Example » Programming
-
Check out the Downloads section: http://phrogram.com/files/17/default.aspx I've been putting them up there as we gather them
Thanks, Keep having fun
-
Program ClickAnImage Method Main() Define iconfile As Sprite iconfile.Load("Car1.gif") ...
-
Well it couldn't perform this out of bound operation but it didn't hang Phrogram, I just pressed the stop button on the menu and it was back with no issues.
Here is a function to do what you wantFunction SplitString(data As String) As String[] Define bound As Integer = ...
-
I have attached a Demo Program for testing DataTypes in string variables, I think this will answer your questions.
Thanks for the great question and keep having fun
-
I just tried your program and it works good, nice example of how to do keyboard echo.
If you are still having issues that I ddin't see please let me know, i'm using a test version of Phrogram for my testing
Thanks
-
Hi Peej, you need to remember that the targets are in a list and you need to be moving through the list in a loop or checking each item individually by item index in the list
if you take the code you have here and put it in a loop like
For i = 1 To tlist.count
your code here
Next
Or you can check each one like:
If ...
-
Here is an example of how to move targets from Right to leftHope this helps, Keep at it your doing great Program MoveTargetsExample Define Tlist As SpriteList Method ...
-
OK, you are correct in what your saying to a point, the example is correct, you can load an array with values when you define it, you can't leave the definition incomplete, so by defining an array and then loading it with values the system in setting the size of the array equal to the numbers of values you are loading.
Also Phrogram is hard ...
-
Hi Oy, Please inspect this code and comments, I have added several functions to your code and fixed your issues, I'm not trying to write this program for you just give you food for thought as you continue working on it.
features added:
Ship Roll right and left
Speed control limits for slow speed camera jitter
Camera follow ...
-
I added the turnleft and turnright features so now you can spiral also, check it out
|
|
|