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
1 answer

As3 flash error "Cannot access a property or method of a null object reference"

im trying to do a couple of basic games on flash that consist in random numbers but im receiving this error every time i run my scene: TypeError: Error #1009: Cannot access a property or method of a null object reference. at…
1
vote
1 answer

Why is my sprite cropped from the bottom?

I am generating my sprite sheet using Flash Pro and loading the sprite using EaselJS. I am noticing that if my sprite is too large, it gets cropped from the bottom (i.e. the arms get cut out). The following code demonstrates this: …
Barney
  • 2,355
  • 3
  • 22
  • 37
1
vote
2 answers

1136: Incorrect number of arguments. Expected 0 AS3 Flash CS6

main.as package{ import flash.display.*; import flash.events.Event; public class main extends MovieClip{ public function main(){ changeState(null,"menu"); } public function changeState(…
Aleksandr Sinkevič
  • 317
  • 1
  • 4
  • 15
1
vote
0 answers

Trouble starting a JSFL script from C#

I have the following code for running a JSFL script from my ASP.Net web app: Process.Start("c:\publish\build.jsfl").WaitForExit(); This code works fine locally on my Win 7 machine; Flash starts up, publishes the SWF, and closes. However, when I…
Frank Rosario
  • 2,512
  • 5
  • 31
  • 47
1
vote
3 answers

Unable to Build Code Hint Cache?

I have a very large custom class that I'm using in my Flash project (AS3, Adobe Air 3). However, I am getting this warning in the Flash Professional CS6 environment: * Unable to build code hint cache. Please save the associated FLA into a different…
CodeMouse92
  • 6,840
  • 14
  • 73
  • 130
1
vote
1 answer

How to Embed .FLV in Adobe Air Application. Flash CS6

I've got a project that needs to be packed up as an Adobe AIR application, and needs to be able to play video. The video in question is too large to be included in the timeline, so the file in question needs to be packed up as a part of the AIR…
1
vote
2 answers

Navigation based on screen orientation (landscape or portrait) in Flash CS6

I'm creating an app that will have a different menu if the phone is held landscape, or portrait. I figure I have to tell flash to move to a new frame when the phone moves from landscape to portrait or vice versa, but I'm not sure the exact code to…
1
vote
1 answer

Play pause for frame and sound as well in flash CS6

I create a movie clip of play and pause button, so that as the animation go, i just can pause at that frame and then play it to continue.But,as the cartoon character speak out voice/sound, when i pause it, the sound cannot be stopped.So, what…
user2196021
  • 11
  • 2
  • 5
1
vote
1 answer

Is there any GUI tools for flash feathers?

I found "feathers" that UIComponent library in FP11. http://feathersui.com/ but In this library's tutorial, there is only usage by coding and no any GUI tools. Is there anyone who know GUI tools for feathers? Please let me know :) thanks.…
ytkang
  • 161
  • 2
  • 13
1
vote
0 answers

IOS apps don't publish using Flash CS6 - stuck at 00:05

I am trying to publish a single square with no code. I have installed the update for flash pro CS6, and I am using AIR for IOS 3.4 Every time I try to publish it gets stuck at 00:05 I also sometimes get an error saying, "please make sure there is…
Jim
  • 3,821
  • 1
  • 28
  • 60
1
vote
1 answer

nape physics attaching a movie clip to multiple nape bodies. Implicit coercion error

i am trying to attach a movie clip to multiple nape bodies but am getting the following error. Line 118 1067: Implicit coercion of a value of type flash.display:MovieClip to an unrelated type nape.shape:Shape. and here is the block of…
Lonergan6275
  • 1,938
  • 6
  • 32
  • 63
1
vote
2 answers

as3 Air - AddChild works but is slooooooooooow

I am creating an app where when a button is pressed a very large picture is added to the stage (it is larger than the screen but can be dragged around by the user) When the button is pressed the picture (well, movieClip) does come up and it able to…
Jim
  • 3,821
  • 1
  • 28
  • 60
1
vote
4 answers

AS3 - Having trouble with a basic game class

So I am creating a space shooter game. My document class is Engine and it looks like this: package Classes { import flash.display.MovieClip; import flash.display.Stage; import flash.events.Event; import flash.events.MouseEvent; public class Engine…
1
vote
1 answer

Create expansion file for AS3 android Air App Flash cs6

I have created an AS3 mobile app and exported successfully through flash CS6. In this .apk I have included my video files (going to be a presentation for Android Tablet). The total size of the .flvs alone is 64mb. When I tried to upload to Google…
Daragh
  • 123
  • 3
  • 13
1
vote
2 answers

as3 boolean variable won't pass out of function

For some reason my value is not being updated outside of the function. I'm trying to make a button, instanced "plus", move a movie clip "topArrow" constantly upward. I figured the boolean would be an easy way to trigger this, but it isn't being…