Tagged Questions
0
votes
0answers
6 views
Check if uploaded image is CMYK in ActionScript 3.0
Is there any way to figure this out which user uploaded image in our flex project is RGB or CMYK?
Something like using byteArray and check the specific place of CMYK/RGB header on it...
0
votes
1answer
26 views
Stop function creating bitmaps/reduce cpu overload/reduce lag
Hi I'm noticing that the following code is producing a noticeable chunk of lag when it is incorporated.
public function impassable_collisions():void { //prevent player from moving through ...
0
votes
2answers
64 views
Bitmap graph drawing, how do you add thickness to a line?
The following function will draw a Sine wave by setting the pixels on a bitmap. But how would you draw the line thicker? without resorting to the Graphics API.
function drawWave(amp:int, ...
0
votes
0answers
88 views
Flash AS3 - Displaying a section of a bitmap
---------- Solution ----------
Ok so this seems to be working perfect, here's the solution
First load the image
[Embed(source = "/resources/images/image.png")]
private var txtr_image:Class;
image ...
0
votes
1answer
67 views
how can I split an image at flex application
how can I split this image in flex application.
in fact I'm thinking to call an image from xml and split it at " flex application"
I tried a few methods.but it doesn't work!
I'll glad for your ...
2
votes
3answers
154 views
How to detect if the area was 100% painted in as3
I´m making a game that simulates an industry of pan, and one of the process is Painting.
What I want to do is to let the player paint the pan, but i don´t want it to be easy using FILL, i want that ...
0
votes
1answer
114 views
AS3 resizing bitmapData loosing alpha channel after draw()
I'm resizing a bitmapData the usual way, using a Matrix. The bitmapData has an alpha channel (it comes from a PNG), and the alpha channel is ignored...
var m:Matrix = new Matrix();
m.scale(.5, .5);
...
0
votes
2answers
148 views
Can't load image in swf
I get error with load image into swf file. Here is my code:
private var loader:Loader = new Loader( );
public function Battle()
{
...
1
vote
1answer
185 views
AS3 Wrapped-Around BitmapData Scrolling?
Does anyone have a good solution for creating a BitmapData-based scroller in AS3 that can wrap around an image while scrolling to the left and to the right (and also supports arbitrary speed, not just ...
0
votes
0answers
111 views
AS3 Bitmapping Text Using Threshold
So, I want to give an embedded font a pixelated appearance, using FlashDevelop. The method I've developed now is to create a new class, BitmappedTextField, that takes values like a string, font color, ...
2
votes
2answers
129 views
make visual clone of displayObject that's nested within other displayObjects, and add the clone to the stage layer in the same location, rotation, etc
I want to be able to grab a copy of a DisplayObject that is nested within other transformed DisplayObjects (rotated, scaled, stretched objects), and be able to stamp it back into the same visual ...
0
votes
1answer
327 views
Starling AS3 — How To Use Bitmap Objects in SWC
I'm trying to see how Starling could benefit the applications I build using as3. My knowledge thus far of Starling is that it only uses bitmap objects not symbol objects. How do I take a BitmapData ...
0
votes
1answer
175 views
saving file in actionscript 3
I previously used the shared object to save my game's progress data...
so i made a big array and saved the values of the variables and saved it into a cookie..
but this time I am using some bitmap ...
0
votes
1answer
41 views
how to draw a bitmap and call it back when u need it in actionscript 3?
I am using the bitmap data to save choices of the user in my game...but I came across a problem in it... I can ask the bitmap to draw an image...
circle_clk = new circle_big;
...
0
votes
0answers
133 views
AS3 Cropping specific sections from video
first user will see a video(mirror like) n then they will need to draw a rectangle by clicking n dragging(Mouse Down,Move,and Up) The mouse down and up position is stored in variables. So i want them ...
1
vote
1answer
108 views
as3 - passing a library image name to function which then adds to stage
I'm using the following function to add some images from the library to the stage.
function AddImage(image_name:String):void {
if(image_count == 4) return;
// change the following line so it ...
1
vote
1answer
137 views
Is it possible to add a movieclip over a bitmap of StageWebView
I want to add a simple spinnerloader(movieclip) over a StageWebView html page for that i converted StageWebView page to bitmap but that didnt work please help me to solve this problem
var ...
0
votes
0answers
196 views
Specific bitmap rendering optimizations in AS3?
I have a few questions about potential AS3 rendering optimizations, particularly concerning discrete bitmap data/objects on mobile devices. I have found surprisingly little definitive information ...
0
votes
1answer
137 views
AS3 cacheAsBitmap questions?
I'm a bit confused. If I import a png picture, drag it onto my stage, and right click > convert to bitmap. Is that the same thing is if I have a vector created in code, and then apple cacheAsBitmap = ...
0
votes
1answer
138 views
Drawing the exact region of the Bitmap in as3
I am working on a Action Script 3.0 application , in which i ill be allowed to load the image and make them draggable. Consider i am loading the deer image and making it as draggable.
Problem with ...
0
votes
2answers
587 views
as3 different between cacheAsBitmap vs CachedSprite
I have cacheAsBitmap = true
and the following class
package utility{
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.Sprite;
import ...
0
votes
1answer
104 views
bitmap hit testing error
I'm trying to get my character to bounce back when it hits an object in order to not allow it to touch the objects. My problem is when its touching 2 objects, it gets stuck and moves backwards because ...
0
votes
1answer
322 views
As3 draw bitmap + copyPixel around mouseX and mouseY
I am doing a magnifying glass effect?
I have a working version. However the performance is not good enough on the tablet.
What i have done so far:
I had a ENTERFRAME event on a mouseDown
So it ...
0
votes
1answer
104 views
rotating image using pixelbender
I have background image and smaller image. I copy the smaller image into the bigger image using copypixels like this:
destBitMap.copyPixels(img, new Rectangle(0, 0, img.width, img.height),
...
1
vote
1answer
290 views
AS3: Rotation into Vector
Hey I am rotating a bitmap in actionscript3 and after finishing the rotation I want to update the direction is facing so I stored the degress that the bitmap was rotated for example rotation = 90° and ...
0
votes
2answers
299 views
Remove Whitepixels from a bitmap
I converted a movieclip with a lot of unused space into a bitmap, but it seems alike that many white pixels have been added to the bitmap during the conversion so the background wont be displayed ...
1
vote
2answers
276 views
Is there a faster way to check BitmapData.getPixel32() using AS3?
I am using the conventional way to check if a random/single pixel on a transparent bitmap is non-zero, using bitmapData.getPixel32(x,y)!=0
But is there a faster way to do this, since this is kinda ...
0
votes
0answers
84 views
AS3: The precise algorithm in Papervision3D?
When you use Graphics.drawTriangles() and Graphics.beginBitmapFill() to draw two triangles to create a rectangle face, when the face is not square or rectangle, but rather a trapezoid, or an irregular ...
2
votes
1answer
2k views
AS3 Blitting - Copy Pixels getting some of the souce image
I am trying to draw something on the screen and then, copy that onto a bitmap which is on stage.
I have done this before, with a procedurally drawn shape like a circle but when I use a library item ...
1
vote
2answers
554 views
AS3 - Most efficient method of refreshing a bitmap
I have this function within a class that creates a bitmap of any DisplayObject I pass in.
As you will see, each time I create a new bitmap I am creating a new BitmapData object and a new Bitmap ...
0
votes
0answers
262 views
Generate transparent JPEG with alphamap RAM usage issue
I generate a transparent bitmap in flash with two jpegs. One is black and white for reading the BitmapDataChannel and the other picture is the actual image.
this is my code:
private var ...
0
votes
2answers
515 views
AS3: Getting a color value from a bitmap
I'm attempting to retrieve a color value when I click an image on the stage. I'm planning to use this to create a height map for a game I'm working on, making the character move slower over rough ...
4
votes
1answer
1k views
Rotate bitmap data in AS3 180deg for export
I have a bitmap in AS3 flash and I am sending it over to javascript using a base64 encoded jpg string.
All that works great. I need to send the img over scaled down, and rotated 180deg. The scaling ...
0
votes
1answer
129 views
BlendMode data in a bitamp
I'm working on a viewer that extracts bitmaps from a .swf file. They're all defined as classes, so I can get them with:
getBitmap = event.target.applicationDomain.getDefinition(name);
getBitmap = new ...
0
votes
2answers
954 views
Embed bitmap in ActionScript3
How can I embed a bitmap in Actionscript 3 and get the BitmapData?
public class MyGame extends Sprite {
[EMBED(source="Assets/helicopter1.png")] private static var BMClass:Class;
public ...
2
votes
0answers
2k views
AS3 / AIR / Mobile - Save bitmap to file
I have seriously looked everywhere but can't find a solution.
My app easily saves UTF bytes as XML files in the allowed cache locations for both iOS and Android.
But I can't work out how to save ...
1
vote
1answer
257 views
Bitmap text compared to native caching
I would love to have an answer to this particular question, asked at the end of the thread.
TS found the solution for transparent bitmap text him/herself, however, how does it compare to setting the ...
0
votes
1answer
354 views
Creating a SWF with Frames and Bitmaps using AS3SWF
I need to collect and import a mass of images into Flash. The cleanest way to do this seems to be using AS3SWF to create a timeline with 1 image per frame.
Does anyone have a code sample for ...
0
votes
1answer
753 views
From Loader to Bitmap AS3 Flex
i'm trying to load images from Facebook Albums to my flex app, this is the code called when i click on a FB image:
private var loaderFB:Loader;
private var immCaricata:Bitmap = new ...
0
votes
1answer
184 views
Load multiple Bitmaps with the same Function
i got a basic problem with loading a Bitmap from a URLRequest.
The problem is, that loading a Bitmap is to much code to write it every time I want to load an Image. So i thought about some function: ...
1
vote
0answers
309 views
Flex AS3 warp transform image
I am looking for an example / code /guideline to transform a bitmap like in the image bellow:
I've tried everything displacement map, matrix transform etc. but nothing even remotely works.
Please ...
0
votes
0answers
129 views
Redraw/paint section of a movieclip onto another
I need to draw a movieclip onto another.
Basically, I have a colouring puzzle. The user is given a faded color background with faded coloured movieclips . He selects the correct colour brush to paint ...
0
votes
1answer
746 views
AS3 BitmapData Copy Pixels Half Pixel?
Having trouble trying to scroll BitmapData on a half pixel here is my original code
var speed:Number = 1;
_bitmapData.copyPixels(_backgroundParallax, _screenRect, _zeroPoint, null, null, true);
...
1
vote
5answers
2k views
How to use BitmapData.fillRect()?
When I use it, the only thing that is filled is a white rectangle, doesn't matter the parameter.
This is what I do:
var map:Bitmap = new Bitmap (new BitmapData(200,200))
map.bitmapData.fillRect(new ...
0
votes
1answer
1k views
AS3 Bitmap Object Not Smoothing at Low Scale values
I need help getting a bitmap to apply smoothing properly after being scaled very small.
What I am doing now is loading a .png image with a Loader object. After loading the file I cast the ...
3
votes
3answers
132 views
How to render just a BitmapFilter to BMD?
How would you render a BitmapFilter (such as DropShadowFilter) applied to a sprite, to a seperate BitmapData Layer? which would then be placed beneath all objects.
For instance if you have two ...
2
votes
1answer
2k views
AS3 get Bitmap from Movieclip with Mask
This works:
var a:BitmapData = new BitmapData(640,480);
var b:Bitmap = new Bitmap(a);
a.draw(movieClip);
This doesn't work:
movieClip.mask = movieClipMask;
var a:BitmapData = new ...
0
votes
2answers
486 views
AS3 Removechild Addchild issue/error
I have been looking for an answer for hours:
My program:
Step I) When I click on a button, it displays a bitmap through addchild;
Step II) When I click on another button, it should remove the bitmap ...
1
vote
1answer
189 views
embed-tag for images - how to use?
I would like to know if I have to dispose an image in AS3/Flex when using the EMBED-tag:
[Embed(source="../../../../../assets/interface/pause/cancel_btn_off.png")]
public static const ...
0
votes
1answer
157 views
draw textfield caret and text selection onto bitmap
I'm drawing a textfield onto a bitmap which I use as texture for a 3D object.
I'm listening for Event.change, and so whenever the user adds a character I redraw the texture. But to really give the 3D ...


