Arcade Prehacks

Results 1 to 6 of 6
  1. #1

    Join Date
    Jul 2011
    Posts
    5

    Urgent Question about PreHacking!

    Edit: Don't answer this question. I can't find the delete button to delete the thread.

  2. #2
    Senior Member
    Join Date
    Jun 2010
    Location
    Southern USA
    Posts
    1,221

    Re: Urgent Question about PreHacking!

    Flash Games use actionscript 1 or 2 or 3.

    And actionscript is it's own language.
    "We're playing in the same sandbox. Why can't we be nice to each other?"

  3. #3
    Senior Member
    Join Date
    Jul 2008
    Posts
    1,871

    Re: Urgent Question about PreHacking!

    Flash games use ActionScript.
    1 is the oldest, 2 is the semi-old and 3 is the newest one.

    Actionscript is kinda like Javascript.
    Code:
    package com.example
    {
        import flash.text.TextField;
        import flash.display.Sprite;
     
        public class Greeter extends Sprite
        {
            public function Greeter()
            {
                var txtHello:TextField = new TextField();
                txtHello.text = "Hello World";
                addChild(txtHello);
            }
        }
    }

  4. #4

    Join Date
    Jul 2011
    Posts
    5

    Re: Urgent Question about PreHacking!

    I also have another question. Do you know where I can start learning actionscript language, When I look through it, It doesn't show what I mean!

  5. #5
    Senior Member
    Join Date
    Jun 2010
    Location
    Southern USA
    Posts
    1,221

    Re: Urgent Question about PreHacking!

    If you're looking for hacking methods, check this section.

    If you're looking for programming games, check this section.
    "We're playing in the same sandbox. Why can't we be nice to each other?"

  6. #6

    Join Date
    Jul 2011
    Posts
    5

    Re: Urgent Question about PreHacking!

    No I mean Like I want to learn how to use the variables, The action layers, Etc.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •