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

Is there any technical or processing difference between TouchEvent.Touch and MouseEvent.Click?

I am actually not getting the difference between MouseEvent.Click event and TouchEvent.Touch"event in action script. Both are giving same output in touch based system. I wanted to know that how they differ in processing user events.
2
votes
1 answer

MovieClip alignment (a character with multiple states) without using a meta-MovieClip

I'm working on a game where there are 4 characters on screen, each with several different states and corresponding MovieClips so that my library looks a little something like this: Character 1: IdleAnimation SleepAnimation .. Character 2: …
Simon McArdle
  • 893
  • 6
  • 21
2
votes
3 answers

Objects on stage are not initialized outside constructor

Inside my Document Class I have assign to an array some objects that are placed on stage so I can call them later. When I declare the array outside the constructor the objects haven't been created and the assign values are null unlike when I declare…
giannis christofakis
  • 8,201
  • 4
  • 54
  • 65
2
votes
1 answer

How to debug Flash IDE AIR 3.4 Desktop App with FlashDevelop?

Debugging a normal Flash IDE project from FlashDevelop is as simple as clicking the debug/play button. Debugging an AIR Flash IDE project from FlashDevelop isn't working. What settings might I need to change to have it trigger Flash to public the…
Triynko
  • 18,766
  • 21
  • 107
  • 173
2
votes
1 answer

Flash movie works fine during Control+Enter preview but does not work after publishing

I am trying to embed flowplayer into flash. I was able to succesfully do so and all the configuration settings worked fine when I was testing it using the control+enter preview. But after I published it to swf/html, the player doesn't work any more.…
Bharadwaj
  • 31
  • 3
2
votes
1 answer

Error 1046:Type was not found or was not a compile-time constant

I'm trying to make a interactive flash video in CS6 for a class I am taking. I briefly talked with the professor about this and he could not figure out the issue either. The weird thing is it says the errors are on lines 2 and 3. When I remove the…
2
votes
0 answers

XCode: Looking for Tween & Morph Object solutions

I'm currently developing an iPhone app with Xcode. Part of the app requires the morph (or tween) of one shape into another shape. I know that using Adobe Flash Pro CS6 I can export a 'shape tween' to an iOS app using the built in AIR. The problem is…
Thurstan
  • 21
  • 1
2
votes
1 answer

What is the best way to streamline the process of publishing Flash CS6 AS3 code for android, iphone, swf and air from a single flash project?

I have a flash project (AS3) that I am developing using Flash CS6. I am developing for iOS devices, Android devices, desktop (air) and web browser (swf). So far I have been able to use a single codebase making only a few modifications when…
undefined
  • 5,190
  • 11
  • 56
  • 90
2
votes
0 answers

Trace function is not working in Actionscript 3 Flash CS6

I recently upgraded to Flash CS6, and now my trace statements in Actionscript 3 are not writing to the output window. If I create a simple document with this Actionscript... trace("test!"); ...I get no results in the output window. I don't know why…
Steve C.
  • 577
  • 1
  • 6
  • 19
2
votes
1 answer

AS3 MouseEvent.RIGHT_MOUSE_UP doesn't work

I am trying to create a boolean where it checks if the right-mouse button is pressed or not. With the left mouse button this method works, but with the right mouse button the boolean stays true, how do I fix this? public var mDown:Boolean =…
tversteeg
  • 4,717
  • 10
  • 42
  • 77
2
votes
1 answer

AIR ArgumentError: Error #2004: - Android

Getting this Error: ArgumentError: Error #2004: One of the parameters is invalid. at Error$/throwError() at flash.filesystem::File/set nativePath() at flash.filesystem::File() at…
Papa De Beau
  • 3,744
  • 18
  • 79
  • 137
2
votes
1 answer

SimController (device simulator window) disappears when I debug my SWF

This strange problem is happening for a few days, but it's wasn't before. Knowing how to show/open it would be great, I haven't found anywhere.
Marcelo Assis
  • 5,136
  • 3
  • 33
  • 54
1
vote
1 answer

AS3 tryin to make a function with hitTestObject using if statement

i have a function with code function ball3test() { if (ball3.hitTestObject(ball1_t)) { goodmc.alpha = 1; removeChild(ball3); sw = sw + 1; ball3t.alpha = 1; setTimeout(hidhap, 1000); ss = ss +…
1
vote
1 answer

How do you make a MovieClip inside a scrollPane move to a new location using AS3?

I have an MC that is a list and it's inside a scrollPane. I want to make the list jump to a new location by clicking an object inside the MC. I do not want the user to manually scroll the list. However, I'm not sure how to reference the MC in the…
1
vote
0 answers

Fit width of TLFTextField to length of its html content in AS3

I'm going to create a "news ticker" using adobe flash. I have a single line and dynamic TLFTextField with html content. The problem I have is fitting the width of the TLFTextField to the html text length. There is a "autoSize" property that I set to…
mohammad fatemi
  • 327
  • 2
  • 15