Questions tagged [flash-cs6]

Flash CS6 is part of Adobe's Creative Suite released on 7 May 2012.

About Flash:
Flash is a multimedia platform used to add animation, video, and interactivity to web pages. Flash is frequently used for advertisements and games. More recently, it has been positioned as a tool for "Rich Internet Applications" ("RIAs").

861 questions
1
vote
0 answers

Flash Error #1009 for a Button

I'm new to AS3, and I keep getting Error #1009 when I try to add a button. From some reading I did I gather it is when I reference something I think exists but that really doesn't, except I have added a correct instance_name, and this did not happen…
15leungjs1
  • 35
  • 8
1
vote
0 answers

2D movement and hit testPoints

I'm trying to make a character able to move within the "world" movieclip, but not go through the walls. So here is the character class, pretty basic. The moving variable dictates whether the character will move or not. The issue is, when I move the…
Trows
  • 391
  • 2
  • 12
1
vote
2 answers

Can't click on a class in flash, can't add click EventListener in class .as file :C

Alright so I have laboured all day to make an Enemy appear in my flash game, one that will go away after a certain number of clicks, however I learned that I can't click on EnemyShip in the main file, so I have to add the click listener into the .as…
Fuure
  • 125
  • 1
  • 10
1
vote
1 answer

Executing a function for all instances of a class?AS3

I'm really new to AS3 and I was wondering how I can apply a function to all instances of a class I'll show you guys what I have, is there anything I can do? var cloud:Cloud; for (i=0; i<5; i++) { cloud = new Cloud(); addChild(cloud); } this…
Trows
  • 391
  • 2
  • 12
1
vote
1 answer

Drawing line collision?

I've gotten actions on a frame, what I'm trying to do is have a hitTest that triggers gotoAndStop() when the shape I am drawing collides with the touchTest. The only issue I'm having is I cannot get the hitTest to register directly when…
Trows
  • 391
  • 2
  • 12
1
vote
0 answers

TLF TextField not working on IOS

I am using Air 14.0.In Flash Professional CS6.I checked this on iPad.My app contains some external swf's.Actually IOS doesn't allow external swf's data.for this i hosted external swf's on remote server.But that external swf's library movieclips…
Usha Kommuri
  • 71
  • 1
  • 11
1
vote
1 answer

Dragging movie clips in Action Script 3

Hi so recently I have been attempting to Drag a movie clip in AS3 but I'm having some trouble picking up with the hit tests anyone got any ideas? Just to clarify, the issue is that when the movieclips hit the drag test object, they're not executing…
Trows
  • 391
  • 2
  • 12
1
vote
1 answer

How to convert swf to swc?

Am working on flash and Action Script.I want to convert my Shock wave flash to Shock wave component.how i can convert this?.Is there any possibility Please suggest me. Thanks in Advance.
Usha Kommuri
  • 71
  • 1
  • 11
1
vote
1 answer

Flash actionscript 3 function requires mouse click event?

For flash actionscript 3 running in cs6 I am having an issue in which a function will only run after a mouse click event, I don't know why this is I've tried everything I can come up with, and there doesn't appear to be any similar issues…
Flashdace
  • 33
  • 6
1
vote
1 answer

How do i control my character class with a button in AS3?

I'm pretty new to as3, so I'm sorry if my language isn't very proffesional. I'm making a game, and it's working so far, except for the controls. I want the character to be controlled by three buttons, I have on the stage. When i started making my…
Jens
  • 47
  • 6
1
vote
1 answer

How to drag a symbol only horizontally?

I'm currently trying to make a pretty simple drag and drop Flash program. I made a program in which you can drag a square with your mouse. However I would like the square only to move horizontally. I've been trying to find something on the internet…
1
vote
0 answers

Is there any possible to create apk file run on my android device without adobe air in flash cs6 tecnology?

I am Developing my first game in flash professional cs6 and as3,when i publish a apk file it need adobe air runtime to run on my android device. i need my game to run on android device which is not install adobe air. Is there any possible to create…
1
vote
1 answer

Flash - LocalConnection between Projector file and SWF file

A long time ago I created two files called alpha.exe and bravo.swf. alpha and bravo communicate to each other using a localconnection. These files were created using Flash MX with AS1 and Flash Player 6 - they worked perfectly! Now I am building new…
1
vote
0 answers

Script in Photoshop CS6 that can copy frame number and cursor coordinates into clipboard?

It is possible to open videos with Photoshop, I use this functionnality in order to measure the speed of an animation on my screen after recording it with OBS. Is it possible to write a script that, when you click on the picture, saves the…
Wicelo
  • 2,358
  • 2
  • 28
  • 44
1
vote
1 answer

Adobe Flash ActionScript 3 Slide linking and rollover effect

I have a slideshow that is fading through and each Slide links to a different page. Have a simple text rollover effect I activate with AS3 so when the slide is rolled over the text changes color. I can get it to work with just one slide but I can't…