ActionScript 3.0 :: Retrieve Information About Size (in Pixels) Of Loaded FLV File?

Feb 25, 2009

how to retrieve information about size (in pixels) of loaded FLV file? Video object returns 2 pairs of parameters (width,height) which are useless because returns always parameters passed in constructor of Video() object. Another pair is (videoWidth,videoHeight) which is always (0,0). I gave up...


I need this information to scale proportionally video clip to size of area designed to display this video.

View 3 Replies


Similar Posts:


Retrieve The File Name From A Variable Loaded With An Swf?

Feb 25, 2012

I am trying to place a condition statement so that it will only do an action if the swf loaded into the varaible is the same or empty. I start of with loading the sample1.swf into the movieclip swf_holder

Code:
var loadSwf:Loader = new Loader();
swf_holder.addChild(loadSwf);
loadSwf.load(new URLRequest(sample1.swf));
loadSwf.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete);

In order for me to get the sample1.swf to play, I create a variable so that I can just call on it

[Code]....

View 1 Replies

Flex :: Retrieve Information From Sql Database

Sep 30, 2009

I use flex and php to retrieve information from my sql database. What i have been doing is formatting the result from the database query into xml and then putting the result into an arraycollection. It all works fine except one of my database fields contains a lot of text that website users enter and as xml doesn't like tags like <> so I leave it un formatted but I would like to format it. Would I be better using flashvars or text than xml? Or is there another way?

View 3 Replies

ActionScript 3.0 :: Retrieve Information Outside From Function LoadComplete()?

Aug 24, 2009

I load image - and need its width and height in global variables, i dont know the image width and high that will be loaded; does enyone can explain me why it get NaN NaN or 0 0 or how can I retrieve this information outside from function loadComplete()?

[Code]....

View 5 Replies

ActionScript 3.0 :: Retrieve Some Information Back From LMS And Into Variables In Flash?

May 26, 2010

I am trying to retrieve some information back from my LMS and into variables in Flash with AS3. I used to be able to do this without any problems in AS2, but can't seem to find a way to make this work in AS3. In AS2, publishing with the "Flash with SCORM 1.2 Tracking" option, I could call a line like the following:

fscommand("LMSGetValue", "cmi.core.student_name,_root.stuname");

This would grab the student name from the LMS and store it in Flash in the variable named stuname.

Any way to do this with AS3? I can set values back to the LMS no problem still through fscommand such as score or completion, I just can't get anything back from the LMS such as student name or lesson location.

View 2 Replies

Android :: Retrieve Objects Item Information From ArrayCollection?

Aug 26, 2011

I am currently using the latest verion of Adobe Flash Builder to create a Mobile Application. For the application one feature is to allow the users to bookmark content an this is done by storing the id of the object to be Bookmarked into an SQLite db on the device. This part has been done successfully and they are stored fine.

Now what I want to do is to pull back the bookmarked id's from the database and pass them to a WebService call which needs to be made to an External Database. When I retrieve the Bookmark id's from the local database they are contained within object, I now need to find a way to take the id's from the database objects in the ArrayCollection and store them in a new array that will be passed to the WebService, as the webservice is expecting an Array of Int's and not Objects. Below is the code I created to see if the object items are within the array list of objects:

private function loop():void
{
var index:int;

[Code]....

View 1 Replies

ActionScript 2.0 :: Performance - Retrieve Information Of Different Tables In Mysql?

Oct 4, 2004

I'm building a Flash website with database information with php>mysql>xml>Flash mx 2004. I'm having some major problems!I need to retrieve information of different tables in mysql, and was worried about performance issues.The first query gets the whole model list...The second query will be performed after a model is clicked. Something like: select * from modelinfo where modelID=modelIDinFlash.

The third query is what I have a lot of trouble with! This has to run on the same time or immediatly after the second query. It reads the picture urls and id's from that particular model. I need the filenames for the picture viewer.But everytime I try this third query, the site becomes very slow and have problems displaying the model info.NOW I have a temporary solution: in the first table I have a field which states how much pics each model has, and this number Flash uses to build the nr buttons. But this is not a very solution since I want to keep everything dynamic. I also want to build a drag and drop function... something like a shopping cart. For that to work, every picture must have an unique ID.

View 1 Replies

ActionScript 1/2 :: Getting Information From XML Information Sent To Flash File From The Socket Server

Jul 5, 2009

I'm kinda noobish when it comes to getting information from XML information sent to my flash file from the socket server. OK so for example the server sends me this:

[Code]...

I want to get the name of the user and the X and Y position! Is there a way I can get this information without a load of fuss from functions and other junk remember im kinda noobish.

View 1 Replies

ActionScript 3.0 :: How To Change Size Of MovieClip With Pixels

Feb 16, 2010

Is it possible to change the size of a moveClip on the stage by pixels instead of scaling it with scaleX and scaleY? In other words I would like to be able to in crease or decrease the width and height of a movieClip using pixels.

Let say I have this moveClip on the stage, how would you change its width and height using pixels
myBtn.addEventListener(MouseEvent.CLICK, resizeMe,false,0,true);
function resizeMe(event:MouseEvent):void{
// amount doesn't matter
//myMc.scaleX = 1;
//myMc.scaleY = 1;
}

View 2 Replies

Javascript :: Browser Viewport Size In Device Pixels?

Feb 17, 2011

Goal: I want flash to have accurate information about the width and height of the browser viewport in device pixels when intializing, resizing, or on browser zoom events.

Specifics: I need to embed flash into an html page that runs in chrome, safari, firefox, ie. The swf must fill the entire browser viewport.I don't want the flash to zoom.Inside of flash I can set StageScaleMode.NOSCALE so that flash renders to Device Pixels.I also set the state's alignment to StageAlign.TOP_LEFT.Now all I need is the number of device pixels in the browser!

Problem: when there is a browser zoom or I open the site while the browser is zoomed, I cannot easily get information on the browser's dimensions in device pixels.

Solution: acrobat.com's online document editor (formerly known as buzzword) handles this problem just fine (free to play with with an account).What are they doing?In webkit browsers, they are able to keep the document.width to report device pixels every time. I am not sure what they are doing in firefox and ie.

What doesn't work:Swffit does not support this.Just loading the swf into the browser is not a solution, as the swf needs to be embedded.This solution scales a swf to accomodate different browser zooms but does not get information on the browser window dimensions.

View 2 Replies

Eclipse :: Retrieve Build Information After Build Completes In FDT?

Jul 30, 2011

Using FDT, when I have a debug configuration with several operations in the launcher chain and the final launcher opens in Flash Player, how can I retrieve the build output from the console once the build is complete and Flash player is running?

It seems that once Flash Player has started the console clears to make way for the application's trace output, but I need to be able to look back over the events and build times for each item in my launch chain while Flash Player is running. Is there a setting I can enable to either log my build output to a file or to preserve it in the console?

Edit: I know I can still read the info when building normally, this question is specifically for building with the debugger.

View 1 Replies

Flash :: Load An Image Of Size 6000 × 8192 Pixels?

Sep 14, 2011

I am trying to load an image of size 6000 × 8192 pixels which cleary exceeds flash platform limitation for an image.

I am trying which doesn't seem to work.

I have had search around the internet and found few components like BitmapDataUnlimited, and BigAssCanvas but I amn't sure if I can use them for displaying a remote image as none of them seem to have a working implemented example and just the class itself.

View 1 Replies

IDE :: Change The Font Size In Flash CS5 To Show In Pixels Rather Than Points?

Jun 19, 2003

How can I change the font size in flash CS5 to show in pixels rather than points?

View 1 Replies

ActionScript 3.0 :: External Swf File Loaded By Preloader: Place And Size?

Feb 22, 2011

i try to implement a preloader for my site but i have the following problems:once the preloader is finished it opens my external swf but this one appears below the preloader and very little in the window (almost smaller than my preloader size)

package classes
{
import flash.display.MovieClip;

[code].....

View 0 Replies

ActionScript 2.0 :: Change Size Of Loaded Swf File (image Or MovieClip).

Sep 17, 2011

I have successfully loaded an external swf file into my own one. now what i want is to change the size of the loaded file.

the loaded file is an image and its height:500 and width:500 but what i want is to resize it to 200x200

How can i do that.

here is my code to load external image
var peelawayimage = _root.createEmptyMovieClip("peelawayimage", 7);
var mcImage = new MovieClipLoader();
mcImage.loadClip(_root.video_image, peelawayimage);

View 9 Replies

ActionScript 3.0 :: How To Retrieve Image Size Dimensions

Jun 21, 2010

I'm using FileReference to load up JPG or PNG images and I'd like to retrieve the image size dimensions somehow. Is there a way to do this?

Code:
//initialize the fileReference
fileReference = new FileReference();
//add some listeners
fileReference.addEventListener(Event.SELECT, onSelectFile);
fileReference.addEventListener(Event.COMPLETE, onCompleteFile);
[Code] .....

View 4 Replies

ActionScript 2.0 :: Write A Text, Modify It (in Type, Color And Size) And Choose A Picture (which Is Loaded Through A XML-file)?

Jun 13, 2007

Users can write a text, modify it (in type, color and size) and choose a picture (which is loaded through a XML-file) for an e-card, then send it to whomever they want. But when they have made the modifications, how do I save the card, and then store it in a database?

View 3 Replies

ActionScript 3.0 :: Copy Pixels From A Loaded Image?

Jul 26, 2011

I'm trying to copy pixels from a loaded image. This code generates no errors but there is a missing link between the bitmapData object and the loaded image.

ActionScript Code:
package
{

[code]....

View 4 Replies

ActionScript 3.0 :: Retrieve Data From Loaded Swf?

Dec 22, 2009

I have 2 swfs. One of them called "main.swf" and the other called "test.swf"
Main loads test using the code below

ActionScript Code:
//create loader and url request
var contentLoader:Loader = new Loader();

[Code]....

What I'm trying to do is to trace the x-coordinates of a Movieclip called "dot" inside test.swf.

But I keep getting the error: "1119: Access of possibly undefined property dot through a reference with static type flash.display:Loader."

How do I get the x coordinates?

View 2 Replies

ActionScript 3.0 :: Transition Manager PixelDissolve - Instead Of The Pixels Being Dissolved The Pixels Being Added?

Mar 24, 2012

so instead of the pixels being dissolved, the pixels being added? :

ActionScript Code:
var Anim:TransitionManager = new TransitionManager(blackbox);
Anim.startTransition({type:PixelDissolve, direction:Transition.OUT, duration:1, easing:None.easeOut, xSections:35, ySections:35});

basically what i would like is the end point to be the start point and the start point the end point.

View 2 Replies

ActionScript 2.0 :: Slider Bars And Scaling - Code Keeps Shrinking Initial Object Down To 10 Pixels By 10 Pixels?

Jun 17, 2009

I have a swf file that loads into my main movie, and within that swf there is a masked image that i would like to scale using zoom in and out buttons and also by using a slider bar.However i cant find any tutorials that will allow me to combine the two.I have used the following code for the buttons. Which seems to work ok but i would like it to be a little smoother. (using speed or some sort of easing??)

ActionScript Code:
zoomPlus.onRelease = function(zoomIn) {
if (test_shirt.shirt._xscale == 400 && test_shirt.shirt._yscale == 400) {[code]....

but for this code it keeps shrinking my initial object down to 10 pixels by 10 pixels..

View 0 Replies

Actionscript 2.0 :: _y Movement By Pixels - Move The Movie Clip In Incremental Moves Consisting Of 30 Pixels?

Nov 18, 2009

I have a movie clip called column1_mc. when I click a button I need to move the movie clip in incremental moves consisting of 30 pixels.

column1_mc._y = 30;

Does not work because that is giving a _y coordinate.For example.I need to make the movie clip jump to _y 300 but make 10x30 pixel incremental jumps. Moving 10 times 30 pixel jumps.

View 1 Replies

Actionscript 3 :: Getting Information From An Externally Loaded SWF?

Mar 30, 2011

So I have an SWF that I've made and I need to appened some instructions to the beginning of the project. I figured the easiest way to do this was to make the animation in a separate SWF then import it to the start of the first one. My problem is that I can't find a reliable way to tell when the first SWF is finished playing. I've googled the heck out of this but I can't seem to find anything that works. For some bizarre reason, no matter what I do the program seems to think that the external SWF only has 2 frames, if I put an ENTER_FRAME listener and trace externalSWF.currentFrame I get "1, 1, 2, 2, 2, 2, 2, 2..." My code looks something like this.

[Code]...

Also, for the record, the external SWF plays properly when I add it as a child. The problem is removing it from the stage when it's done playing. It's interactive so I can't just do a frame count.Edit: So I tried doing a getQualifiedClassName() call on extSwf and I got "Instructions_fla::MainTimeline_Preloader_" which could explain the frame discrepency. How can I have access to the actual timeline?

View 2 Replies

ActionScript 3.0 :: Grab The Transparency (or Alpha Value) Of Individual Pixels In An Embedded Or Loaded Video?

Jun 27, 2010

how to grab the transparency (or alpha value) of individual pixels in an embedded or loaded video? We tried copying over a frame of video into a bitmapdata object with transparency enabled. However, even though we can "see through" the video at certain spots (indicating alpha = 0 there), the alpha value comes back as 0xFF for every single pixel in the BitmapData object.Obviously alpha data is being stored inside the embedded video, but how can I actually get that value?

View 0 Replies

ActionScript 2.0 :: Display Variable Information In Another Loaded MC?

Jul 16, 2007

I'm building a product page, here's the setup:

[URL]

On the index.swf is the main navigation that'll open swf's for the different categories. Those products.swf fills with products via php. This is the working code for products.swf:

ActionScript Code:
var t = "";
var cat:String = "products";

[code].....

Now my main issue is, I can't get the product_info.swf right. The problem is I don't know how you can define the products within the products.swf with a name, so you can tell which product you should display in the product_info.swf

View 5 Replies

ActionScript 3.0 :: Argh. Parsing Information From Loaded XML?

Mar 25, 2009

I am trying to import data from a SVG but as i found out, SVG is essentially XML.I have loaded in the SVG file and managed to output this to the output window:

Code:
<svg:path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 53.8125,53.21875 L 52.84375,53.4375 z" id="path2435"/>The information i want to extract from this the M and L values.

Code:
d="M 53.8125,53.21875 L 52.84375,53.4375" Firstly im not really sure how to shave off the rest of the garbage to leave me with the above.Then comes the issue of actually finding what i want to work with. I want to end up with an array of Point objects, So in this example, i would have 2 points in my array:

point1 = (53.8125) , (53.2187)
point2 = (52.8437) , (54.4375)

This seems hugely complicated so i was wondering if anyone can enlighten me? Do i need to use regular expressions for what i want to do and if so, do you have any tips?

View 1 Replies

ActionScript 2.0 :: Detect Keystrokes When The Flash File Is Not Selected And Send That Information To An .swf File

Jul 21, 2010

I need to find a way to detect keystrokes when the flash file is not selected and send that information to an .swf file. The file would be stored locally (not on the internet).

View 3 Replies

ActionScript 3.0 :: Retrieve Info About The Site Or Location The Flash (swf) Is Being Requested To Be Loaded/run?

May 18, 2011

Im sorta beginner at AC3 and i've made a little FLA file wich i a want to compile and upload to a host for load it to my website.However, before i compile it i would like to put restrictions for it not to be loaded from other sites it might be requested by flash insert methods or whatever.Is there a way to retrieve info about the site or location the flash (swf) is being requested to be loaded/run?

View 2 Replies

ActionScript 3.0 :: Checking The Pixels Of A Swf File?

May 26, 2010

I have a swf file that's (for example) 500px wide, however, the viewing area (meaning the viewable content) of the swf is 300. The other 200px is masked out. If I try to align the viewing area, then it doesn't work because the alignment is based on a 500px width, not 300px. Normally, I'd just do a little math to make the 200px adjustment, but in my case, I don't know what the size of the actual viewing area is (because the swf is being loaded dynamically). Is there a way I can check color of the pixels, or check to see if there is some type of transparency occurring at a certain point?

View 1 Replies

Flex :: Retrieve Object From One Swf File To Another Swf File?

Aug 21, 2009

I want to retrive one object from one swf file. How can i retrive the object.means i am loading one.swf in main application.the main application is passing one session object so that object i want to retrive in one.swf file how can i retrive that object.

View 1 Replies







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