Professional :: Bitmap Not Drawing Correctly?

May 31, 2010

I'm a bit new to the ActionScript world, and I'm trying to get a custom class drawing a button correctly.I have a .png of a planet that I want to use for the image, this is how I load it:

imageRequest = new URLRequest(bmpName);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
imageLoader.load(imageRequest);

[code].....

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Drawing From Bitmap To Bitmap Overrides Earlier Graphics?

Dec 29, 2010

I'm working on a game, and to keep performance good, instead of addChild'ing 50 new sprites to the stage every second, I decided to have each player draw to their own bitmap, and then to the 'master' bitmap. This introduces an issue though: the second player would override all data the first player has put into to bitmap...My basic debugging proof of concept:

Code:
// bitmap test

import flash.display.Bitmap;
import flash.display.Bitmap;[code]......

View 1 Replies

ActionScript 3.0 :: DrawRect Not Drawing Correctly

Jul 7, 2010

I normally use flash, so this normally wouldn't be an issue, but now I'm using Flex (I'm not a different computer). I wrote a very simple program to draw a rectangle. Here is it:

[Code]....

View 3 Replies

Actionscript :: Correctly Casting A Bitmap To A Class?

Nov 9, 2011

I have tree instance calling an iconFunction "getIconFromItem".

<mx:Tree dataProvider="{collection}" iconFunction="getIconFromItem" />

The getIconFromItem function is returning null even though the bitmap is not null.

public function getIconFromItem(item:Object):Class {
var result:Class = item.icon as Class ;
return result ;
}

Setting a break point on the return result line reveals that item.icon is a bitmap and result is null.

how to successfully cast a bitmap as class so that the bitmap is returned as an icon?

View 2 Replies

ActionScript 3.0 :: Drawing BitmapData To Bitmap?

May 8, 2009

what i need to do is basically a motion trail on a bitmap.

I want to continuously draw a bitmap onto itself while previous versions are faded into the background, similar to a smoke type effect.

View 1 Replies

ActionScript 3.0 :: Drawing In Bitmap Optimization?

Feb 11, 2010

today i started some particle generator class that will move particles over the stage via drawing in a Bitmap. Everything works well with low amount of particles, lets say 1000, but for my surprise when i added 10 000 particles the frame rate dropped drastically. And i am saying that since i made the same particle generator using MovieClips instead of drawing in Bitmap, the performance test i run on both classes showed that the Bitmap class with 10K particles on my PC works in around 10-12 FPS, and the MovieClip variation in around 20-21 FPS with the same amount of particles. The particles are identical and both classes are using linked list system to move the particles. So the only logical conclusion is that something is not right with the drawing function.

Code:
private function drawParticles(e:Event):void{
// clearing the _pZone Bitmap of the previous data
_pZone.bitmapData.fillRect(_pZone.bitmapData.rect,0);
_pZone.bitmapData.draw(_blankMc);

[code]...

View 1 Replies

ActionScript 3.0 :: Save Drawing Without Bitmap Classes?

Jul 2, 2009

i m making a drawing application .i want to save my drawing wit out bitmap classs because when i reload that it is not editable. So can any one tell me how to save my drawing to server with out bitmap .because i want to reuse it in flash.

View 1 Replies

ActionScript 3.0 :: Drawing A MovieClip To A Bitmap As Though It Was The Screen?

Jun 23, 2009

Basically, I have a BitmapData object which is acting as a virtual screen.

I have a MovieClip which I want to render to the bitmap using the same transformation as though the bitmap were the screen. However, the MovieClip is not attached directly to the root

The BitmapData.draw() method takes a Matrix as an optional parameter, which I think I need to set as the MovieClip's localToGlobal transformation matrix. However, I don't know how to obtain or construct this!

View 2 Replies

ActionScript 3.0 :: Adding Bitmap Images To 3D Drawing?

Sep 26, 2011

As the heading dictates, i want to place bitmap files on the faces of the 3D object that i have created.Basically i found this tutorial code on a 3D rotating cube that is able to be rotated by the mouse. I have modified it to change its shape from a cube to a 'plane' or rectangular style object.

Code:
var vertsArray:Array = [];
var facesArray:Array = [];

[code].....

View 0 Replies

ActionScript 3.0 :: Convert A Drawing API To A Bitmap At Run Time?

May 5, 2009

Over the weekend i put together an MP3 player in Flex and just managed to figure out the SoundSpectrum.

It is working as expected.

I am facing problems when it comes to using a bitmap.

Right now, my "Analyser" class pulls the data from SoundMixer.computerSpectrum.

I then use that data with the drawing API to create a simple analyser. You know, just spikes.

Here is the code for that part:

Code:
private function update(e:TimerEvent): void
{
SoundMixer.computeSpectrum(ba, true);
var n:Number = 0;

[Code]....

Ok using common sense here, I am telling flash to take a snapshot of the Analyser and draw it to the bitmapData.

However, i cant seem to get this working. I am not using the dispose() method to clear the bitmap so id expect to see a mess of points (similar to if i removed the g.clear()) but nothing happens.

View 1 Replies

ActionScript 3.0 :: Bitmap Fill + Drawing API = No Good?

Feb 9, 2010

I'm trying to use a bitmap fill, but I can't seem to get it to work.I'm using FlashDevelop with assets imported from CS4 - this isn't the problem, I can instantiate the asset I'm targeting perfectly fine, so I suspect that it's a problem with what I'm trying to do. Here's my code:

Code:
//get the bitmap data from a grass symbol
//grass symbol IS present - can be added to stage fine
var grassBMD:BitmapData = new BitmapData(155, 80);[code]....

Nothing gets displayed in the box, so I'm suspicious that I'm not allowed to use bitmap fill in non-primitive shapes.

View 6 Replies

ActionScript 3.0 :: Drawing Small Tiles Into One Large Bitmap Container

Jan 29, 2010

I have a project that is drawing ~10,000 small tiles into one large bitmap container - it's a mosaic. In Flash proper and in FireFox it takes about 20 seconds to complete the drawing. Very acceptable. In Chrome it takes about 1:30 and in IE it takes roughly 3:00 - both too slow to be acceptable to the client - who of course reviewed with IE. I have Flash set to run at 45 fps - and the images are populated by a Timer - at 2 ms intervals. Maybe 2 ms is too fast? But in my testing 1ms was slower as was 3ms, so I kept it at 2. And it works fine in FF and Flash...

View 4 Replies

ActionScript 3.0 :: Rectangle / Trapezium - Drawing Bitmap Data Into Shape

Aug 8, 2011

If I draw a rectangle or trapezium, how might I go about drawing bitmap data into that shape? I need to give a slight perspective to a loaded photo. Native 3D rotations seem to leave the bitmap really blurry, and a full 3D engine is too heavy for this project.

View 3 Replies

ActionScript 3.0 :: Drawing Movie Clip To Bitmap Data - Image Looks Different Depending On Size?

Jul 13, 2010

I've written a class that iterates through all the frames of a movie clip and draws each one to a different bitmap. When I'm done, I should be able to iterate through the bitmaps and play them like a flipbook animation.If I draw all the clips to the same size bitmapdata, then everything looks great. But this is wasteful because now a lot of the bitmapdata's are bigger than they need to be (takes up more memory), and also causes problems because the hit tests don't look right.

So next I try to crop all the bitmapdata to be the smallest possible sizes. However, when I do this, there are subtle differences in the way the images look - the edges might look slightly darker in one frame than in another. When I line up all the images and play them back to back, it no longer looks the same way it originally did.I have no idea why the images look different, and have no idea how to work around this problem, I have tried many different approaches. I have tried using BitmapData.draw(), BitmapData:copyPixels(), and manually using BitmapData:SetPixel(), and all end up with the same result

View 5 Replies

Professional :: .gif Not Being Published Correctly?

Oct 30, 2011

I created an animation in Flash CS5 and tried to publish it as a .gif. For some reason,there's a dark box around the moving text, as you can see.

View 5 Replies

Professional :: Imported A Gif But It Does Not Play Correctly?

Jun 18, 2010

I have imported a gif but it does not play correctly. It's only two frames. The first bmp associated with the gif in the library has both slides combined while the second bmp is correct.To show the issue I am having. Here is the 2frame gif playing correctly:[URL]Now here is a screen shot of my library:[URL] You can see how the highlights bmp is incorrect. When I play the gif in Firefox,IE, Ulead gif animator or anywhere else it is fine but in Flash it shows that first frame with the combined slides and then the 2nd slide correctly. It ruins the "dancing effect" I'm going for.

View 2 Replies

Professional :: Rescale Correctly A .flv Videoclip?

Oct 4, 2010

How to rescale correctly a .flv videoclip? I installed the Adobe MasterCollection CS4.I rendered a video with 3dsMax2010 at this resolution: 1024x576pixels, progressive scan, pixel aspect ratio 1,0 square.I want insert this video on a website, initially small, and after, by clicking the FullScreen button, I want that this become large at maximum resolution...

I imported the .FLV file in Flash:ImportVideo> *.flv > Added SkinBarMenu with FullScreen Button > Replaced the remote address instead of local address: http:[url]......I rescaled the video at 720x405pixels and also the Flash Document to fit it.I included the video in the webpage with Dreamweaver, with FullScreen playback properties.When I playback the video on the website, it appears at 720x405pixels;

- When I click on FullScreen button, the video become up-scaled from 720x405px and loose the resolution?- Or at FullScreen, I can view it at the original resolution of 1024x576pixels, in the same manner as when it is imported in Flash?

- Such Flash video behavior, is the same as YouTube videos? (From small, it become hi-res at FullScreen, conserving original dimensions)?

View 5 Replies

Professional :: Replaying A Swf Correctly With Its Music?

Oct 28, 2010

I created an eHoliday card and there is a button at the end of the swf that you can click to replay. It plays fine the first time but automatically replays at the end and there is no music the second time.

View 4 Replies

Professional :: How To Position An Image Correctly

Nov 5, 2010

I've got a page with a very simple movie, it contains a text on some rows and an image.The text must be shown centered inside the page and must keep its aspect ratio if the browser is resized.The image mus be always placed at the bottom right corner of the window, not of the text area.

I can't obtain both of them, I can have the image always at the corner (placing it through AS3), but I have the text stretched when I resize the browser, or I can have the text always keeping its aspect ratio, but the image is not placed at the corner of the winwdow.I've also tried to have only the text on the movie and to place the image as html page's background, but the movie goes above the image and hides it.

View 7 Replies

Professional :: FLA File Is Not Correctly Converted To Animated GIF

Mar 2, 2010

I'm begining with flash (flash CS4 pro), I have created a fla file with a mxp filter which makes waves (I found the effect on "flash-filter.net"). I've done the setup for publishing (animated gif + swf)

When I publish the animated gif, I get a non-animated gif with the logo of "flash-filter.net" at the top of the image. ( I've also tried to download the swf with real player, same effect : I have a static video with the same logo )

View 3 Replies

Professional :: Combine Two Actions In Code Correctly?

Apr 2, 2010

playback controls, however I still have a problem.  I want to have an  additional button that links to a website (I have coded this correctly  with actionscript and works great. Now I have two seperate  projects...one project has my playback controls and the other has a  button that links to a website.I am having problems combining both action script codes and having everything working properly  My code for each  is below. How do I arrange them into one?

Code for link to website:
website_btn.addEventListener(MouseEvent.CLICK,gotoWebsite);
function  gotoWebsite(evtObj:Event):void{  var theSite:URLRequest =  new

[code].....

View 9 Replies

Professional :: Button Event Not Working Correctly

Jul 12, 2010

I'm creating a project with a number of different sections. I've created a index menu with invisible buttons on that takes you to the different sections. This works fine. In each section I wonted a means to get back to this index, so created a index button that is present throughout each section. I've put the event handler in the actions layer on the same frame that the button instance is on (frame 15).

[Code]....

View 5 Replies

Professional :: Text Not Displaying Correctly On Publish?

Aug 4, 2010

I recently hired a programmer to design a flash health calculator for my website.  It works great and text shows up correctly when viewing online and standalone. The problem starts when I try to edit the file.  I wanted to change some text in an action layer.  That seems to work out fine but when I try to publish I get garbled text. 

I should also mention that when loading the file I get a Font Mapping dialog box stating "The document 'x' contains one or more fonts not available on your system.  The text will display and publish with the font mapping below:".  I have tried to select various fonts in this dialog box but still get garbled text. 
 
When I publish I also get this on the Output box: "Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts."

View 3 Replies

Professional :: Unable To Safe File Correctly?

Sep 19, 2010

in my timeline i have two orbs transforming into arrows. it works, i watch it, then i'm like, ok, all good time to save. i save. exit/open, and come to find that my orbs were not transforming. i looked on the timeline and they are not set to transform, so i redid the shape tween, save,exit open and the same thing. so why won't my file save the shape tweens? i'm previewing it in cs5.

--edit--for some reason it works in the swf file, but not the fla file.

View 1 Replies

Professional :: Can't Seem To Get A Simple Scroll Pane To Work Correctly

May 19, 2010

I'm searched and searched and tested this, but I can't seem to get a simple scroll pane to work correctly.  I have a bare-bones file, with dummy text here:[URL]..
 
Can someone download this and put the dummy text inside a scrollpane for me (using the ruler guidelines as a guide)?  I'll even send you $10 via PayPal if you can get the text to look right inside the scrollpane...
 
I can't believe I have to resort to this, but I'm about to pull my hair out,

View 1 Replies

Professional :: MovieClip Not Positioned Correctly In Published Window

Jul 16, 2010

I have created a small flash move 40px x 40px and placed a movieclip in the centre of the stage. When I publish the file it positions the movieclip to the right of the published window. When I trace the movieclips x and y the movieclip position is correct. It almost looks like there is some sort of margin around it. Flash CS5

View 1 Replies

Professional :: Won't Publish Correctly In Cs5 After Making Changes To A Perfectly Working Fla

Jul 27, 2010

After making changes to a perfectly working fla it won't publish correctly,meaning:1. When previewing all the components jump (as usually happens when there isa compile error) but no error is displayed in the log.In this case when used with the whole project, the project doesn't load,even though the corrupted fla is not the first loaded (non of the fla loadsbesides the preloader).2. When previewing and running with the whole project the labels on thebutton components disappear, but only the ones that are dynamically changedby an external as file.*there are other similar bugs as well like unable to enter the table in thegame etc.The changes I make before it happens:- changing the size of a shape inside a movie clip.- changing the size of a movie clip.- changing anything in an already existing code (like changing the size of afont).- adding new basic code anywhere (like trace code).

- changing button skins.Basically, any change I make corrupts the file but not consistently,meaning, I can make the same change twice and the file will break only one of thetimes, or, I can make several changes until it breaks.It also happens on every computer but also, not consistently, I can work fora while, making the same change, deleting, making the change again etc, onlyon the fifth or sixth time the file will break. On a different computer itcan take only two or three times.The corrupted file start working again after I change the name of the foldercontaining my project or move all the files to a different folder anywhereon my computer. After a short while the file crushes again.

View 1 Replies

Professional :: Flash Movie Not Displayed Correctly In IE 8 On Some Windows OS

Aug 24, 2010

I'm using CS4 to export a basic flash movie with embed tags pre scripted. And the issue is that on some OS systems using Vista or Windows 7 and IE 8 as a primary browser, it appears that IE 8 is not displaying the flash banner completely.... its CROPPING it off... This is very strange because the banner works fine in FireFox, IE7,Opera,Chrome but not I.E.8 on some OS systems...
 
If you google "Flash not displaying correctly in IE 8" you'll get alot of people with the same issues but no real definate fix...
 
what i could try? Do i need different flash embed tags? Or is this a user issue?

View 7 Replies

Professional :: Flash CS4 Color Panel Show Not Correctly?

Nov 1, 2010

I use Flash CS4,Now Flash CS4 occurs problems,when I choose Rectangle Tool,and I choose Paint Bucket Tool in FILL AND STROKE box,I find color panel is not show correctly,the last line 'linear example icons'  show not correct,some icons don't show any linears,and some icons are gray box!  I try to reinstall Flash CS4,it still show not show correctly! How to restore color panel?

View 5 Replies

Professional :: Sound Will Not Synch Correctly On QuickTime Export

Apr 12, 2011

I have a 5 minute flash movie that has great sound synchronization with the motion when I export as a SWF. However, when I export as a Quicktime file (.mov), sometimes the sound is ahead of the image. Is there a setting I can tweak during Export to remedy this? (so far I have tried to save the Video as "H.264" as well as "Animation". And for sound I have had no luck with the setting of "None" or "Apple Lossless."

View 2 Replies







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