home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / Flash_And_1876474132005.psc / @PSC_ReadMe_59995_1.txt
Text File  |  2005-04-16  |  2KB  |  35 lines

  1. Title: Flash And Action Script With VB6(
  2. Description: This code demonstrates how to use macromedia flash files in vb6...this means that with it you 
  3. can send the flash player values...I've done this here with setting the value of a variable which was 
  4. declaired and used in the ".fla" file from within the vb programme,and flash player can also send 
  5. values to your vb programme.You'll have to use the Shockwave Flash Component...and set the 
  6. "Allow Action Script" to "alwaya" which is the default value i think...In this example I have a flash 
  7. file...when you click the "Walk" button the vb programme tells the flash player to move the
  8. character...and when the character reaches the "Finish" thingy the flash player tells vb that so...
  9. Its my first submission here,and i've seen few things like this here, but they were all just 
  10. examples of how to use flash files in vb and thats all...whereas this examples tells how to use 
  11. the action script of the flash file from vb6.This a part of an another project which i'm doin'...and 
  12. being a beignner I find ths quiet usefull! :)....SPACIAL THANX TO THE isButton..which i'm using 
  13. in this programme..ITS AWSOME!..if u don't have downloaded it already then please do so from 
  14. this site...this gives you programme very cool look ;)
  15. I've updated this submission with the "*.fla" file this time,and now you can view the flash code if it is not deleted by PSC :)
  16. anyways here is the Action Script
  17. Paste This Code On The First Frame
  18. walk=a Movie Clip...The Walkin Character
  19. fin= A Movie Clip...The Finish Thing At The Bottom
  20. var Move;
  21. Move=0
  22. _root.onEnterFrame = function() {
  23.     if(Move==1)
  24.         {
  25.         walk._y=walk._y+2;
  26.         }
  27.         if(_root.walk.hittest(_root.fin))
  28.                 fscommand("fin", "true");
  29. }
  30. By Aryan Sinha
  31. This file came from Planet-Source-Code.com...the home millions of lines of source code
  32. You can view comments on this code/and or vote on it at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=59995&lngWId=1
  33.  
  34. The author may have retained certain copyrights to this code...please observe their request and the law by reviewing all copyright conditions at the above URL.
  35.