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
0
votes
2 answers

as3, instantiate object on stage with parameters

If I have an object which extends MovieClip, for example let's say it's some kind of custom built text field class (InputField). The InputField constructor has 2 parameters(placeholderText:String = null, displayAsPassword:Boolean = false). If I drag…
Drahcir
  • 11,772
  • 24
  • 86
  • 128
0
votes
1 answer

Flash not readable in html?

I have the stupidest problem there could be in flash with a client. they asked for a banner, and I made one in cs6. they called back and said when we insert it in the html code and upload it, the flash doesn'y show and the "smart guy" from their it…
Guram
  • 147
  • 1
  • 1
  • 9
0
votes
1 answer

Set a minimum and maximum date in a calendar component flash cs6

I am trying to customize a date picker to be used in an application, that based on what type of person they are they are limited to a specific date range in the calendar. for example if they were type1 they would be able to select 30 days from the…
0
votes
1 answer

SQLite on Flash don't work?

I'm working in a Flash project to Mobile (Android/iOs), and I'm confused about the SQLite on Flash. I'm not using FLEX! I'm using only Flash Professional CS6. I am trying use: import flash.data.SQLResult; import flash.filesystem.File; import…
rochasdv
  • 539
  • 2
  • 8
  • 21
0
votes
1 answer

Export animated flash objects to Marmalade SDK

How do I export (use) my animated vector objects (made with Flash Professional) at Marmalade SDK? I don't want to program animations.
xdonko
  • 269
  • 1
  • 3
  • 8
0
votes
1 answer

Panel Color custom in FLASH CS6

I have a Flash file. I'm working on this demo project where I want to customize the color of the panels according to the thumbnails when clicked on them. The colors of the front floor must change accordingly to the color mentioned and same goes for…
Lemdor
  • 150
  • 3
  • 15
0
votes
1 answer

Creating an installer for a swf

I'm wondering what would be the best way to create an executable for my flash game I created. I think my question is pretty straightforward. Thanks for the help.
oliboon
  • 351
  • 1
  • 5
  • 19
0
votes
1 answer

AS3: Vector item isn't spliced

Hello I am creating a system with a gun that shoots bullet. The update function is processed this way: var b:Bullet; var l:uint = bulletList.length; var i:uint; for (i = 0; i < l; i++) { b =…
tversteeg
  • 4,717
  • 10
  • 42
  • 77
0
votes
2 answers

Flash CS6 Error #1009 - Button disappears

I'm starting to use Flash CS6 for the first time to try and make Scaleform UI's for UDK. I'm following this simple tutorial: http://goo.gl/yedMU. I've followed it to the letter but can't seem to get it to work. I even have tried it again in a new…
Taslem
  • 65
  • 8
0
votes
1 answer

Tweening in AS3 to make object circle each other

I'm trying to figure out how in AS3 to make 2 objects circle each other. For example lets say the 2 objects are cups. I want them to spin around each other in a circle. Another way to look at it that they each travel in the same circle but across…
jbassking10
  • 833
  • 4
  • 15
  • 42
0
votes
2 answers

Swiffy vs Flash CS6 HTML5 Export for custom fonts and standard bitmaps animations

Is it better to use the built-in CreateJS HTML5 exporter in Flash CS6 or Swiffy, for simple animations involving bitmaps and custom fonts
ina
  • 19,167
  • 39
  • 122
  • 201
-1
votes
1 answer

Exporting AVI Videos from Adobe Flash CS6 using an automated script (JSFL)

I have a bunch of .fla CS6 files that I need to export to avi (after setting up the resolution, compression settings etc) manually. I am wondering if this can be achieved via a JSFL script or similar. Appreciate the help.
-1
votes
1 answer

how to make "if condition" multiple of two

i want to make if condition. in that condition, if the condition is score = multiple of two. how to make the code? if(score >= 2){ //removeChild(Batumc); //removeChild(Batumc1); //model soal …
Tamara
  • 23
  • 7
-1
votes
1 answer

is there any substitues for charCode for cs6?

I am trying to us actionscript 3 to try and use a variable to play a separate animation but it doesn't work in flash cs6 and my school won't update it. I have tried to use it in the context of a variable but it always spits out an error message: var…
-1
votes
1 answer

Actionscript 3.0: How to create fast forward button without skipping any code written on particular frame?

I've made 3 layers. 1 layer as follows: I've created fastForward & fastPrevious buttons using ** > function whatever() { frame=currentFrame+90; this.gotoAndPlay(frame); } ** I wrote down this code in the beginning of this layer 1. Layer 2 as…