Search found 1250 matches

Actual Results

Post Posted: April 4th, 2011, 4:22 am

it depends on how you use them. First i'd suggest you get a better knowledge of OOP in general. Then read about the OOP for actionscript. In your case, you should do something like old school c++, creating a destructor function in your classes, which will reset most of the variables, and call it fro...

Post Posted: April 4th, 2011, 4:09 am

oh, this happens when you try to do things without understanding them.
That code would actually work if you knew where to place and if it would be for the correct version of actionscript.
But if you don't know the basics, can't help you.

Post Posted: April 4th, 2011, 4:00 am

In this situations, usually you keep track of the current loaded image index. So let's say you have images = Array("img1.jpg", "img2.jpg", ... "img14.jpg"); // or however you build it. Next add a new array var imagesTargetURL:Array = new Array("http://www.google.co...

Post Posted: April 4th, 2011, 3:53 am

For this you need to know the total time of the movie. [code] var timeTotal = 15; // total time of the movie, in seconds var dragXStart = 0; // left most x position of the ball var dragXEnd = 800; // right most x position of the ball // this will return the time you have to set for your player, afte...

Post Posted: April 4th, 2011, 3:26 am

then in first step check out for: input text addEventListener KeyboardEvent.KEY_DOWN second step: as3 load image I'll provide you some sample code with the input text part, the image part you do the research for it. Assuming you have an input text on the stage, with the instance name inputText : [co...

Post Posted: April 4th, 2011, 2:53 am

move the line footerText.defaultTextFormat = tsFont;
above the line footerText.htmlText = xml.copyrightText.articleText;
Just a matter of priorities.
I know, i know, no need to thank me :)

Post Posted: February 18th, 2011, 3:44 am

yea, i have a sugestion.
When everything else fails, use javascript (of course if you can hanlde it) :)
http://www.ozzu.com/flash-forum/externalinterface-class-t81957.html

Post Posted: January 5th, 2011, 4:04 am

it might depend on how the flv was encoded. If it doesn't have any cue points, then the seek can not be performed. Try with some other flvs which you get from web, and see if it works or not.

Post Posted: December 13th, 2010, 2:31 am

as i said, you need some castings in order to make it work properly.
so that line of yours would turn into:
var useBitmapSmoothing = MovieClip(this.parent).useBitmapSmoothing;

Post Posted: December 10th, 2010, 4:45 am

this seems to me it's the case when loading is not completed due to internet connection. To avoid that, try adding a preloader to your swf or move your code to the second or third frame and add a "stop();" at the end of your code. Also is better to enable the Strict Mode for AS3, since you...

Post Posted: December 10th, 2010, 3:44 am

uhmmm, i`m amazed no one answered to this question and also that you don't read the help for the Tween class. Anyway, this is a simple to implement multi tween which start one after another. No comment offered, hope you understand what i did there. [code] var myTween:Tween; var step:int = 0;...

Post Posted: November 17th, 2010, 4:53 am

mmm, you guys should learn how to use what you know, extend it and use your logic to apply it for your current situation. In your case is basically the same. [code] // if mouse in left side (xMouse < this.x) if (_root.xMove < 0) { if (this._xscale < 0) // if not already flipped ...

Post Posted: November 17th, 2010, 4:34 am

Code: [ Select ]
this.addEventListener(MouseEvent.CLICK, this_Click);
function this_Click(evt:MouseEvent)
{
 Nextimage.stop();
}
  1. this.addEventListener(MouseEvent.CLICK, this_Click);
  2. function this_Click(evt:MouseEvent)
  3. {
  4.  Nextimage.stop();
  5. }

Post Posted: October 18th, 2010, 7:28 am

Well, that could happen, for the video content and maybe some common galleries, but for games and other graphic effects, i doubt it. I wonder now why Microsoft didn't focus more on advertising Silver Light, could've been a potential rival for flash in future editions. But maybe they wait for exactly...
  • Sort by
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.