Questions tagged [actionscript-1]

a scripting language used by Adobe software

ActionScript is a programming language originally developed by Macromedia Inc. (now owned by Adobe Systems). It is a dialect of ECMAScript (meaning it has a superset of the syntax and semantics of the more widely known JavaScript), and is used primarily for the development of websites and software targeting the Adobe Flash Player platform, used on Web pages in the form of embedded SWF files.

Two important features of ActionScript 1.0 that distinguish it from later versions are its loose type system and its reliance on prototype-based inheritance. (Loose typing refers to the ability of a variable to hold any type of data. Prototype-based inheritance is the ActionScript 1.0 mechanism for code reuse and object-oriented programming. Instead of a class keyword that defines common characteristics of a class, ActionScript 1.0 uses a special object that serves as a "prototype" for a class of objects. All common characteristics of a class are defined in the class's prototype object and every instance of that class contains a link to that prototype object.)

References:

https://en.wikipedia.org/wiki/ActionScript#Timeline_by_ActionScript_version

12 questions
2
votes
1 answer

Where can I find an AS1 reference?

I need to maintain some AS1 code, but I'm having trouble finding any language references. Does anyone know where I can find one similar to these for AS2 and…
caffein
  • 575
  • 8
  • 26
1
vote
2 answers

SEO , Flash and data from external file

i have to create SWF that contains only specific parser and load text content from external file . How i can allow search engines to see this data under swf link ? Can i put this data somehow to html or js without and penalty ?
turbosqel
  • 1,542
  • 11
  • 20
0
votes
1 answer

Embed AS3 SWF inside a AS1 Flash application

Our company uses Flash software from another vendor, written in AS1. They have a plugin ability, so you can embed other SWF files. Now, we have written a AS3 flash app, to be used as plugin. We can visually see the SWF file, and all things on the…
Bart Vangeneugden
  • 3,436
  • 4
  • 33
  • 52
0
votes
1 answer

Converting Flash Perlin Function From ActionScript 1 to 3

I have some code for Flash to simulate moving clouds. It worked under AS1 and now I have updated the FLA file to AS3 and minimum Flash version 10. What is wrong with this code? Can you help see what is wrong with this function? function…
peter_pilgrim
  • 1,160
  • 11
  • 18
0
votes
2 answers

Read request URL in Flash

I am not a flash developer, but I am stuck with a flash developer, stuck with a third party program in ActionScript1. I asked him to get the request URL of the page which embeds the flash object (like reading the address bar in the browser). and…
Costa
  • 3,897
  • 13
  • 48
  • 81
0
votes
1 answer

flash as1: class creation - static functions - possible?

Can i create static function in a class in action script 1 ? please provide an example. thanks
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
1 answer

How can you create an HTTP POST request in ActionScript 1?

I have a text field that I'd like to support an arbitrary amount of text in. Right now the text is sent through an XML object request using GET. I'd like to use POST to send the data back to the server. Are there any good options in ActionScript 1?
Jon
  • 2,085
  • 2
  • 20
  • 28
0
votes
1 answer

What does 'set' do in Actionscript 2

I haven't used AS2 before and I have to fix someones code which was written in AS2 and is using flash. Here is the AS2 code: var evalOpt = eval("option"+optObj); var evalPlace =…
user2817200
  • 1,097
  • 2
  • 18
  • 38
0
votes
0 answers

What is the equivalent to NetServices in ActionScript 3

I'm working on updating a legacy system from ActionScript to ActionScript 3. Does anyone here know what the equivalent to NetServices in ActionScript 3 is? I'm looking for a class that has a setDefaultGatewayURL. I've tried googling but I haven't…
0
votes
0 answers

Actionscript 1 not in Flash IDE anymore

How come the updated version of Flash Professional doesn't have an option for an actionscript-1 fla? Is actionscript-1 that unpopular, and how much has really changed in the evolution of as1 to as2?
Cilan
  • 13,101
  • 3
  • 34
  • 51
0
votes
2 answers

Does actionscript/compiled SWF from Macromedia Flash MX still work with the new Flash plugin?

Starting a project creating a flash game and can't afford to spend money on a license for the newer Flash CSx. I have an old license of Macromedia Studio MX that comes with Macromedia Flash MX v6.0 which has Actionscript 1.0. My question is, are all…
Anthony Miller
  • 15,101
  • 28
  • 69
  • 98
-1
votes
2 answers

indexOf Not Working?

I made this so only messages starting with '/msg' or '/logout' will submit. But, users can still send messages! Is something wrong with my code? if ((msg.indexOf("/msg") != 0) && (msg.indexOf("/logout") != 0)) { return; }