ActionScript 3.0 :: Duplicate Bitmap Without Losing Data?
Nov 22, 2010
I'm creating a mosaic application from facebook images and I have all of the coding working, my problem is I'm duplicating (cloning) Bitmap's in the final mosaic because obviously there aren't enough images on everyones facebook to make up the 1000+ images in a mosaic
See in the upperleft how all the images are very well defined, but then as the grid continues to the bottom and right each image gets less and less accurate until it is just one color...The code I am using is just,
ActionScript Code:
var myClone:Bitmap = new Bitmap(arrayBMD[index]);
addChild(myClone);
where arrayBMD is an array that holds each BitmapData for each Image.
View 7 Replies
Similar Posts:
Jul 13, 2011
I'm using Flash uploader(uploadify, swfupload) with CodeIgniter, want to get the session data. I have found out that the flash does not send the session data, so I have set $config['sess_match_useragent'] = FALSE;
Now for example i have set session value myname in session and I can get it on my backend PHP script using Internet Explorer.[code]...
View 1 Replies
Feb 3, 2009
I'm cutting my teeth in actionscript 3 on a game that has a character running through a world. So, I have set up my Hit Testing by using the bitmap data hit test method, since I figured my world is going to be destructible - it'd be nice to update the level and then redraw it and have the character interact with the new change. (That works beautifully) I am however; a bit confused as to how I have my hit Testing set up. I've been messing around with it, and it works for now - but I'm not sure why.. currently, I have a character set up by using a class I built and using a series of animations I created. So, this character has a walking and falling animation, etc. This is a movie clip.
Then there's a bitmap 'emptyBitmap' with bitmap data created - however; I never really added this as a child to the character. This is sized to the dimensions of my character. My level is created as a movielip, then it's drawn to a bitmap - when the level movieclip is changed, the bitmap redraws, and that's how this updates.
[Code]....
View 1 Replies
Oct 22, 2009
Here's what I'm trying to do: http:[url].....It's basically a form with 6 pages that you can scroll through back and forth, in case you missed some information and want to go back to review.I think the concept is good, but I'm unsure how to actually make it work.Here's a screenshot of the timeline so you get a feel of how I made it (but you probably already know...): http:[url]....
What I did was create a mask and the form scrolls through.... it goes forward until frame 45, then it goes backwards.For example, if we are on the page 2 of 6 and hit back, it plays the "backwards" animation and jumps back to frame 1 (of course not playing backwards, but with a "gotoAndStop(1);" command).The problem is that if I fill up, let's say all the info in the page 1 of 6, and then scroll through.. when I come back to that page, the info is lost.Here's what the form looks like: http:[url].....
I have named every input text and checkbock accordingly but am unsure how to make the input data actually stick to each field so that the "going back and forth" actually works.... how to get this done? The next step is to actually send out the form to a php script.. but first things first .My *guess* is that a script has to be added when I hit the "next" button - so that it sticks the field values (what the user typed) into each field, and stays there. This would also help gather info from each page for when it's ready to be sent.
View 38 Replies
Jun 2, 2010
I have developed a script that loads a few images and rotates them based on a timer. Well now I want to use those same loaded images for some thumbnails across the bottom.
Here is some of the code from my initial attempt:
//CREATE ARRAYS TO HOLD BITMAP DATA
var loadedImages:Array = new Array();
var loadedThumbs:Array = new Array();
[Code].....
View 6 Replies
Mar 8, 2010
I'm modifying someone's old AS 2 Flash application and I need to pass numeric data in as a string OR have a properly formatted USD currency string in the end.
Currently, I might pass something like Data1=$34,000.00&Data2=$12,344.18&etc...
in via FlashVars. Assuming I show Data1 in a dynamic input field, I'd get something like "$34,0"
I'm not too concerned whether this is a super clean, proper solution or a functional hack-like solution with this application. It's needed, but only for a short time.
View 1 Replies
Feb 4, 2010
I've some strange behavior using ObjectUtil.copy() and ByteArray.writeObject/readObject(). I clone an ArrayCollection and sometime the result is two identical instance of the class. Example :
[Code]...
View 1 Replies
Jan 31, 2009
I am parsing data from an xml file into an array within my flash file. The nodes within the xml file have common data between them. What I am attempting to do is dynamically push the data in the array without duplicating data already contained in the array. For example I may have an xml file that looks like this:
<videos>
<video>
<title>video1</title>
<thumb>file1.jpg</thumb>
<group>group1</group>
[Code] .....
Say I want to push the "group" data into an array. When it gets to the third "video" node I want the array to see that "group1" already exists so instead of pushing a second reference of it into the array to actually push the secondary data ("title" and "thumb"> into a new array for "group1". I will later use that array to pull up a list of "group1" videos.
View 2 Replies
Dec 30, 2009
I have a mc (squareContainer) that can be dragged around. It also contains other mc's that uses hittest and changes colour on mouseDown.I want to add another squareContainer (eg squareContainer2) that contains the same mc's with a couple of extra ones.. what is the best way to do this without duplicating instance names, functions and variables?
View 0 Replies
Aug 3, 2009
mySQL called by PHP writes info to my xml file for feeding into flash. The movie displays x number of randomly called bits of info - an image, name and link - this is all handled by the sql query and php commands. It forms a nice wee xml file - good so far. In flash, I am using the duplicate movieclip function to display my info in a grid style and all encapsulated in a scrollable window. What I want to move on to do is have these "tiles" in the grid then fading out after x number of seconds and fading back in with a different set of results pulled from the xml file. I have made a few attempts but just can't seem to get my head around the arrays and ways I need to manipulate my existing code (below) to my requirements!
[Code]...
View 2 Replies
Dec 8, 2010
I'm working in Flash CS5 w/ActionScripting 3.0. I have a content box w/scroller that calls dynamic html on one page/part of my project's timeline.
I want to duplicate the exact same content box w/scroller, but need it to contain different data (call a different .htm doc), for another part of my site.
View 1 Replies
Jul 26, 2011
I'm working on a Flex application that uses MVVM. I understand that it's recommended to have a 1-to-1 mapping between views and view-models. How then do I avoid performing the same calculations and storing the same data multiple times if it is needed in multiple views?
For example, imagine I have a program that can load project files consisting of a list of items. The main tab of my application has an export button that should only be enabled if the project is valid so I create an isExportEnabled property on the view-model for the main tab. The calculation for this involves validating the project by iterating though every item in the project and verifying some attribute on each. I have another tab which has a "Print Project Summary" button so the view-model for this tab has isPrintEnabled. The value for this flag is based on the same criteria, whether or not the project is valid.
I could put the logic for determining these values in their respective view-models, but then I end up calculating the same value twice when a project is loaded. I could move isValid to the domain model but then the model becomes denormalized. What if a saved project is edited without updating the "isValid" flag? I could make a global "Project View-Model" for the entire project which calculates whether the project is valid and then have isExportEnabled and isPrintEnabled delegate to that. However, then I end up with a hierarchy of view-models which this article recommends avoiding: Applying the Presentation Model in Flex
View 1 Replies
Aug 1, 2010
I've created a prototype that will copy the pixel data from a movie clip then create a JPG image from it via PHP. It works perfectly. But when the MovieClip (called mcImage) contains a Video Object loaded with a streamed FLV, it won't copy the pixel data to the Bitmap object. The image generated is white. Here's a sample code:
var oBitmap:BitmapData = new BitmapData(nW, nH, true);
var oMatrix = new Matrix();
var oColorTrans:ColorTransform = new ColorTransform();
[Code].....
View 4 Replies
Oct 24, 2011
i did a function the captures the stage and save it to bitmap datai want to display that bitmap data on a different frame what code should i do (the bitmap changes becuse the capture function triggerd alot);
View 3 Replies
Aug 5, 2010
I want to save a screenshot from my Flex app on the Webserver (LAMP). Here is the Flex code:
[Code]...
View 1 Replies
Mar 1, 2009
Is there any easy way to crop my BitmapData without converting it to Bitmap (I only want the first 300x200 pixels).
View 9 Replies
Dec 16, 2009
I have made a little drawing program for my daughter, and I have worked in the ability to save and load images that you have made. It's a simple line drawing thing, but she's 3, and it works.Whatand I'm still new with Flash and AS3) is that I can "addChild" to put the jpeg on the stage, but it's on (or over top of) the drawing area. That means that when I start to draw, I don't really add to the picture, instead, it's drawing behind it. I used the line drawing tutorial as the basis for this little app, the basic code is :
Code:
public function DrawMain(){
graphics.lineStyle(theLine,0x000000); //default to black lines
[code]....
View 2 Replies
Jun 19, 2009
I am trying to do an image capture while in full screen, however the full image area is only partially captured, or the coordinates are off. In the source files you will see a few of my attempts commented off.
View 6 Replies
Sep 29, 2009
I'm trying to create sort of an eraser to remove sections of a bitmap on stage.
I have achieved this by creating a MovieClip in flash that is a circle and exporting it as a Class called Hole.
Now I use this MovieClip to erase a circle section of the image using the following.
var mat = new Matrix();
var ct = new ColorTransform();
var hole = new Hole();
mat.translate(x,y);
image.draw(hole, mat, ct, "erase");
Now what im trying to do is scale the size of the circle depending on a certain variable but no matter what I try the scale doesn't seem to change and. The size seems to stay the same as I drew it in Flash. I tried adding the following line
hole.width = hole.height = size;
I even created a class file called Hole and the size as a parameter
var hole = new Hole(200);
This didn't work either it still appeared to have the same size. I have even tried altering the scaleX and Y values with no success.
View 2 Replies
Jan 25, 2010
I am adding a bunch of bitmap data (images) inside a canvas bitmap (using copyPixel) which is added to the stage (addChild(cavasBitmap)) how can I remove a bitmap data from a canvasBitmap?
View 5 Replies
Sep 24, 2010
I have to take a snapshots form my webcam every 5 minutes. Now my script is whit a button and its working but my file have to take the picture alone and then again whitout button to send them? I saw something on the net but when I try to do it its not working.
View 1 Replies
Jan 18, 2010
Is it possible to get the bitmap data from a component using ActionScript? I dynamically load an image. onComplete I create a Flex Image component and add the loaded image to the source
[Code]...
Later I want to create a new Image component and get the bitmapData from the first Image. I have tried this canvas.getChildAt(0) Which seems to give me the Image, but I can not figure out how to get the bitmap data. canvas.getChildAt(0).bitmapData; gives me a compile error "... undefined property" how ot get the bitmap data so I can use it in my new Image component?
View 3 Replies
Feb 23, 2010
I captured screenshot of my ui element, and would like to send it to server, using httpService.
Currently I am doing the following:
var httpService:HTTPService = new HTTPService();
httpService.method = "POST";
httpService.url = "/admin/compositions/add/";
[Code].....
View 1 Replies
Apr 13, 2010
I import my images with
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
imageLoader.load(imageRequest);
and then try and cast as a movieclip:
[code]....
View 2 Replies
Jan 17, 2011
extract bitmap data from an flv stream?
View 2 Replies
Oct 14, 2011
Can anyone point me to demos or source code for creating reflections in actionscript? I want to create the effect of an object sitting on a reflective surface.
View 2 Replies
Mar 26, 2012
I would like to extract the most common color of a bitmap. My first idea was to do this by looping through the bitmapData and extracting every pixel color and storing it in an array. But the function has to be as light as possible so my question is; Is there a more lightweight approach to achieve this? The function is used to extract background color of a Bitmap.
View 4 Replies
Aug 4, 2009
I am working on somethign at the moment which allows a user to use a local connection to send and receive bitmap data. But I am havign a slight problem. Ok so at the moment I am using code from the bytearray live jpeg encoder to encode bitmap data as jpeg and then send it on to another swf opened at the same time when I click on an mc in the send swf.
So here is my code:
ActionScript Code:
// CODE INSIDE OF SENDER
var localConnection:LocalConnection = new LocalConnection();
import asfiles.encoding.JPEGEncoder;
[Code].....
But what ends up happening each time is that it seems to draw only the bottom right quadrant of the mc I am targeting. As shown by the screenshot I have provided. When the user clicks the first of the blue buttons it should send the whole bitmap.
View 4 Replies
Nov 12, 2009
I'm working on developing a casual FB game in AS2 where one of the features is that the user can put on a cropped version of their FB profile pic on the sprite's head. I don't know how to send bitmap data over the wire in AS2, and since I'm sadly not using AS3 (which supports ByteArray), am looking for an alternative way out.
View 4 Replies
Sep 19, 2011
Is there a way to draw two bitmap datas together, composited with a particular blend mode?
View 4 Replies