ActionScript 3.0 :: Capture Only A Portion Of The Stage?

Oct 23, 2010

I have done this a million times in AS but not quite getting it in AS3.. maybe my brain is just fried..i have a rectangle_MC that is moving around the stage.. inside that rectanlge_MC i want to constantly redraw the stage, well only the portion of the stage that is covered by the rectangle..o if my rectangle for instance is currently at x:60 and y:80, and its demensions are 200x200, want it to redraw just the ares of the stage that starts a x:60, y:80 and goes to x:260 and y:280..

View 4 Replies


Similar Posts:


Professional :: Make The Stage Height Shorter By "cropping Out" The Bottom Portion Of The Stage?

Sep 21, 2010

Right now my stage dimensions are 980 X 800 px. I need to cut or "crop out" the bottom portion of the footer because its height is too long. So I changed the stage dimensions to 980 X 600 px (and changed the corresponding dimensions in the embed tag in the index.html file to match). Doing this seems to cut out the bottom but at the same time adds space to the top and seems to distort the overall spacing. Is there a simple way to crop out the bottom of the stage (just like cropping out a section of a photo)?

View 5 Replies

ActionScript 3.0 :: Portion Of The Stage Be Used To Display A Webpage?

Feb 3, 2011

I am working on a project and need to allow someone to access a social media site like twitter for example. I need a way to display their twitter page from within flash.

View 4 Replies

ActionScript 3.0 :: Screen Capture Of Stage

Jan 24, 2008

I'm looking for any information anyone may have on ActionScript 3.0 and capturing the area of the stage. I'm not interested in taking a picture of someones desktop, just the stage.

View 10 Replies

Actionscript 3 :: Capture Stage Area Using BitmapData?

Mar 15, 2010

I am trying to grab part of stage area using BitmapData and copyPixels method:

bmd = new BitmapData(stage.stageWidth, stage.stageHeight);
bmdRect = new BitmapData(320, 240);
rectangle = new Rectangle(360, 20, 320, 240);
bmdRect.copyPixels(bmd, rectangle, new Point());

[Code].....

The result i get is an empty .jpg I m pretty sure that the error is in the Bitmap procedure and not the saving one...

View 2 Replies

ActionScript 3.0 :: Screen Capture A Particular Position In A Stage?

Jun 26, 2010

basically i would like to screen capture a part for the stage. but i got no idea how to do it as i am very new to flash programming.i am using the PNGencoder to do the process, but i cant actually screen capture the position i want. this is tje sniplet of the code for the process. It is taken from a tutorial with some changes, but it is still lacking of the position of the stage i want to screen capture.

private function export():void
{
var bmd:BitmapData = new BitmapData(216.2, 468.29);

[code]....

the code are working properly for now except it captures the point from 0 x axis and 0 y axis. I need it to be like 150 on x axis and 150 on y axis.

View 3 Replies

ActionScript 3.0 :: Screen/Stage Capture Without Serverside Scripting?

Jun 2, 2010

I have a game that allows people to arrange images however they like, but I need a way for users to take a screenshot/image of their design (stage) so it can be emailed. I've found loads of examples that use server side scripts such as php (JPEGEncoder) but this particular program I�m creating is for internal office use only and don�t have access to a server to upload it.

View 3 Replies

ActionScript 3.0 :: Why Stage.addEventListener Does Not Respond When On Capture Phase

Nov 7, 2010

If I have the following code which adds an event listener to the stage, why does it not respond when the capture parameter is set to true. It works fine when it is set to Target and Bubblig (false). My understanding is that all the phases happen...

[Code].....

View 1 Replies

ActionScript 1/2 :: Screen / Stage Capture And Post Data

Feb 9, 2012

I am working on a project that requires the stage (and everything on it) to be captured, converted to a bitmap and then that data to be posted to another domain. I have looked at the .getPixel method but that creates a ridiculously long string and more often than not, will crash the swf in the browser. How I could possibly approach this. Oh, I need to do this in AS2 too.

View 1 Replies

Actionscript 2.0 :: Letting The User Capture A Region Within The Stage?

Mar 2, 2009

what I'm trying to do is allow the user to pick a section of the stage, click, and have the region defined be copied and show up on the other side of the stage. It may be better explained to think of it like a camera game. The player has cross hairs, can move the square (which tracks the mouse) around the stage, and click to capture that square's pixel information, store it to a new movieclip and display it on another area of the stage.

I've found many resources online about capturing BitmapData, including capturing from embedded FLV videos, but I haven't seem to be able to find anyone who has created something like this which captures from a moving region. However, I have seen it done before in a game that is no longer online from PBSkids.org.

Here is what I have so far. Right now, when I click the movieclip loads all white pixel data and I'm not sure why.

[flash=]import flash.display.BitmapData;
import flash.geom.Rectangle;
import flash.geom.Point;
stop();

[Code].....

View 1 Replies

ActionScript 3.0 :: SWF Sound And Make The Flash Stage The Size Of The Original Screen Capture Video Of 1024 X 768

May 24, 2010

Made a swf [URL] some viewers see and hear fine but others are having sound and size issues and I need some practical answers. SIZE: I make the Flash stage the size of the original screen capture video of 1024 x 768 and right now it is set to

[Code]...

View 2 Replies

Actionscript 3 :: In AIR Capture Image Of Whats Visible On The Stage And Save That Image As Anything Like Jpg/pdf?

Mar 1, 2012

In AIR/AS3 Flex Mobile for Android project.How can I capture an "image" of whats visible on the view then just save that image as anything like jpg/pdf to the SD card?Basically a screenshot on Android using AS3.

View 1 Replies

Flex :: Capture "screenshot" Of Flex Display Object Created With ActionScript But Not Added To Stage?

Oct 20, 2011

Is it possible to create a display object in AS and take a screenshot of it as ByteArray or whatever without adding it to stage?

View 1 Replies

IDE :: [cs5] Only Test-out A Certain Portion?

Feb 9, 2011

I am creating an animation with sound.The sound syncs with objects.Everytime I synch an object with a sound, I test the animation out by hitting cmd+enter.Is there a way to only test out a certain portion?It's a big time waste to test the whole animation every single time.

View 3 Replies

Flash :: Can't Load A Portion Of An MP3

Feb 13, 2010

The problem is not playing part of an mp3, I know that can be done. But I'd like to cut down on bandwidth by loading a specified two-minute portion of each mp3. These files can be up to 20mb, and since users will play many of these songs (and probably move on after a minute or two of listening), it would be very inefficient to load the whole mp3. Can this be done or is there another method you can suggest? Possibly a server side script that slices and/or lowers the mp3's bitrate?

View 2 Replies

ActionScript 2.0 :: Getting Portion Of A Textfield?

Apr 13, 2010

This should be straightforward, but I'm having problems getting a portion of a string from a dynamic textfield, which I need to manipulate. Say I have a dynamic textfield onstage that successfully gets populated with some data from a query string e.g.

Code:
FlashVars: 352746583part1

So basically I want to get a hold of the part after FlashVars: for further manipulation. I've tried something like this: (assuming that above text is visible in a textfield called t1)

Code:
testvar = t1.text;
testvar.toString();
finalvar = testvar.split(":");

[Code].....

View 2 Replies

IDE :: Exit The FLV And Go To Another Portion Of The Site?

Oct 9, 2009

I have a Template that I bought for a client that wanted it. It has background looping music and my customer wants to add videos (FLV), no problem. Now she wants the background music to sop when the FLVs are playing and start when I exit the FLV and go to another portion of the site. I hope I am being clear.

I need the background music to sop playing when the FLV videos are playing. I have Google and found nothing really.

View 4 Replies

ActionScript 3.0 :: Using A Portion Of An Instance Name

Jan 25, 2010

I am trying to use a MC instance name inside of a function from an event listener. How the hell do I use only part of the instance name example: MC instance names are "size1", "size2", etc. I want the numbers only. I have been looking for hours.

View 2 Replies

Get Modified Portion Of Text In A TextArea?

Dec 20, 2009

I need to know which part of the text is been modified by the user inside a Flex TextArea. I'm listening to TextArea's Event.CHANGE and my code run on everychange but i don't know what the user have done to the text and it's too long to process it again at every keypress or paste

We are still with Flex 3.5 but i may consider Flex 4 if the solution is easier.

View 1 Replies

ActionScript 2.0 :: Draw Portion Of Movieclip?

Oct 23, 2009

I'm have a huge MovieClip on the screen that I need to take screenshots for only portions of it.

Here is my functions that handle this,

This function calls a function in the camera to take a picture and then displays that picture on the screen[code]...

View 0 Replies

ActionScript 3.0 :: About Enter_frame Event On A Portion Of A Swf?

May 3, 2011

I have multimoduled application and I need to monitor when the mouse is moving or not moving on a protion of my swf file.The app is consisted of video player , text part and video list on the right.So I want monitor when the mouse is moving just over the video player not the whole swf application.I have this function

Code:
vidPlayer_mc.addEventListener(Event.ENTER_FRAME, checkMouse);
function checkMouse(e:Event):void {
if (sw==0) {

[code]....

I use vidPlayer_mc.mouseX/Y; property but i doenst seem to work.I need the functionality when mouse moves over video player the playbar on the bottom shows up and vice versa.

View 0 Replies

ActionScript 2.0 :: Loading A Portion Of Video

Mar 8, 2004

i am loading an external .swf that has a quicktime movie emedded in it. is it possible to only preload a small portion (say a quarter) of the file and then load the rest while it is playing?[code]

View 1 Replies

ActionScript 3.0 :: User Copying A Portion Of A Swf?

Jun 1, 2010

I just saw one of the Sears websites in which you can "copy" a portion of the swf using a selection window. Once they click and drag and release the selection window, another swf pops up with their selection in it. Can someone point my in a direction for this copying functionality?

View 2 Replies

ActionScript 2.0 :: Load A Portion Of Video

Mar 8, 2004

I am loading an external .swf that has a quicktime movie emedded in it. is it possible to only preload a small portion (say a quarter) of the file and then load the rest while it is playing? [code]...

View 1 Replies

ActionScript 2.0 :: Making Portion Of MC Invisible?

Mar 24, 2004

portion of a movieClip invisible with AS?For instance, make the 200 first vertical (y-pos) pixels invisible on a movieClip thats 500 pixels high?

View 3 Replies

Professional :: Portion Of Page Needs To Have Random Content?

May 27, 2011

I have a page with a "Tip of the day" section.I have at present about 30 different tips.I would like to set that section up so that every time the page loads a different tip appears, in random order.

View 1 Replies

Professional :: Make A Portion Of My Banner Stop?

Aug 2, 2011

I am currently making a banner ad. Within this there is a note about an event that happens at a certain date.Is it possible to make this note play until that date, and then stop playing while the rest goes on?

View 3 Replies

Actionscript :: Clear Just A Portion Of A Graphics Object?

May 10, 2011

I am making a Flash CS5 application in which the user draws transparent overlays on a Sprite placed on top of an image. The user needs to be able to erase his input as in MS Paint, Adobe Photoshop, or GIMP. Because the Sprite is on top of an image, there is no safe clear color I can think of to draw over the section that the user has just rubbed his eraser over

View 1 Replies

Flash :: Show A Bitmap Which Is Only A Portion Of Its BitmapData In AS3?

May 14, 2011

I am writing a screen scroller for a game I'm making. There's a BitmapData object which holds the background graphic, yet I do not want to show/render it on screen all at once.

For example, I want to show only a 500x500 section of the data but the entire BitmapData is 1000x1000. I wanted to use the scroll() method to scroll the data but my problem is that I cannot restrict how much of the BitmapData is drawn on the Bitmap. I tried setting the height/width properties of the BitmapData to 500x500 (and draw all the 1000x1000), but any data drawn beyond the boundaries I defined is not really drawn.

Another option I considered is to store a different BitmapData object which holds the entire data, and then use copyPixels() from it to the one used on the Bitmap itself, although then I cannot use scroll() and have to use different methods to achieve scrolling.

View 4 Replies

ActionScript 2.0 :: Remove A Portion Of A Multidimensional Array?

Nov 25, 2009

I am so stumped. How on earth do you remove a portion of a multidimensional array?

For example:

var myArray:Array =[];
myArray[0][0] = 0;
myArray[0][1] = 1;
//trace(myArray[0]);
//[0,1]

How do I remove the second portion ([1]) of myArray[0][1] so that when I do a trace, it produces just 0?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved