Re: [Flashcoders] Array Limit

2011-08-04 Thread Pedro Taranto
you should consider to use a linked list -- Pedro Taranto On Thu, Aug 4, 2011 at 4:26 AM, Kerry Thompson al...@cyberiantiger.bizwrote: Deepak Sahu wrote: consider a vector..its faster than array. It is. There are a couple of essential differences you should know of. Primarily, all

Re: [Flashcoders] Flash On The Beach 2010

2010-09-20 Thread Pedro Taranto
Me too -- Pedro Taranto On 20/09/2010 08:13, Cor wrote: Yes, I am. Groeten, Cor van Dooren www.codobyte.com -- There are only 10 types of people in the world: Those who understand binary and those who don't

Re: [Flashcoders] Sprite alpha

2010-01-25 Thread Pedro Taranto
if you are using AS3, the alpha value range is 0-1 in AS2 its 0-100 -- Pedro Taranto Paul Andrews wrote: I have a bit of an oddity with a sprite alpha. At alpha=0.0 - invisible At any other alpha it's full on. Anyone else seen this? Things are a bit frantic just now, so I have little time

Re: [Flashcoders] Duplicate multiple lines in FlashDevelop?

2009-08-18 Thread Pedro Taranto
don't know about multiple lines, but to duplicate a simple line just use CTRL+D -- Pedro Taranto Joel Stransky wrote: Anyone know how? Like if I want to dupe an entire function sig. ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Disabling Print Screen key

2008-10-24 Thread Pedro Taranto
of screen grab utilities out there on either platform... this might be a losing battle. -Jim Pedro Taranto wrote: In AS2 I used to create an onEnterFrame loop to overwrite the clipboard content using the System.setClipboard(string) function, it still works in AS3 Bests, -- Pedro Taranto

Re: [Flashcoders] Disabling Print Screen key

2008-10-23 Thread Pedro Taranto
In AS2 I used to create an onEnterFrame loop to overwrite the clipboard content using the System.setClipboard(string) function, it still works in AS3 Bests, -- Pedro Taranto Andrew Murphy wrote: Hi. :) I'm attempting to disable using the Print Screen button for an AS3 movie on a web page

Re: [Flashcoders] Tutorials for AS3 for beginners

2008-07-18 Thread Pedro Taranto
The Learning ActionScript 3.0 by Rich Shupe and Zevan Rosser is a very good book http://www.learningactionscript3.com/ -- Pedro Taranto On Fri, Jul 18, 2008 at 12:18 PM, Cor [EMAIL PROTECTED] wrote: I think AS2 is not compairable with AS3. But I can surely recommend Essential Actionscript

Re: [Flashcoders] AS3 Frameworks for Game Development

2008-06-23 Thread Pedro Taranto
- GameDataStructure: http://code.google.com/p/as3ds/ - Lowra: http://code.google.com/p/lowra/ -- Pedro Taranto On Mon, Jun 23, 2008 at 1:59 PM, August Gresens [EMAIL PROTECTED] wrote: Hello Wondering what is out there as far as open source (or otherwise) AS3 frameworks for Game

Re: [Flashcoders] random char

2008-04-29 Thread Pedro Taranto
you can download the code, why dont you port it to AS2? -- Pedro Taranto On Tue, Apr 29, 2008 at 5:53 PM, Corban Baxter [EMAIL PROTECTED] wrote: hey guys I'm looking for a little help with doing something similar to this: http://www.zeuslabs.us/2008/01/17/source-code-for-custom-textfields

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Pedro Taranto
there is a as3 version, but its not completed: http://www.tonypa.pri.ee/tbw/as3/index.html -- Pedro Taranto ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash8 Question

2008-03-30 Thread Pedro Taranto
(); myColor.rgb = 0x262626; //apply the color myMc.colorTransform = myColor; -- Pedro Taranto ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash8 Question - contrast transform

2008-03-30 Thread Pedro Taranto
laurent wrote: Hm...I should play with colors again. How do we change the contrast or brightness of a color ? using HSV ?? or is there a straight way using colorTransformin AS3 or AS2. thx L you should apply some BitmapFilter -- Pedro Taranto

Re: [Flashcoders] L'index indiqué sort des limites....something like, index out of range or out of limit

2008-03-30 Thread Pedro Taranto
://www.emanueleferonato.com/2008/03/29/understanding-howas3-manages-depths/ -- Pedro Taranto ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] frameworks and classes for flash cs3

2008-03-16 Thread Pedro Taranto
look at osflash.org and code.google.com -- Pedro Taranto On Sun, Mar 16, 2008 at 7:36 PM, Pedro Kostelec [EMAIL PROTECTED] wrote: Hi coders I want to start coding with frameworks and classes like TweenLite. I would be pretty new at it, so i'd like you to recommend me some of them

Re: [Flashcoders] frameworks and classes for flash cs3

2008-03-16 Thread Pedro Taranto
in each case you should try all of them and use the one you feel more confortable to use, maybe try to do the same thing using differents frameworks that have the same purpose/focus: for example: Tweener vs TweenLite vs Papervision3D vs Sandy vs Away3D .. -- Pedro Taranto On Sun, Mar 16

Re: [Flashcoders] exit screen button script

2007-09-17 Thread Pedro Taranto
fscommand(quit); //to close the projector -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] AS3 version of the ol' dynamically-created constructor trick?

2007-09-05 Thread Pedro Taranto
you can use: var classRef:Class = getDefinitionByName(MyClassNmae) as Class; var myInstance:* = new classRef(); -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] accessing super fields

2007-08-20 Thread Pedro Taranto
I think you should use composition in this case, not inheritance. -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought

Re: [Flashcoders] [FP8, AS2] Rules of thumb: Coding tips?

2007-07-27 Thread Pedro Taranto
if you want to return diferent types in one function you dont specify any return data type function foo () {...} if you wanna use an auxiliary 'object' to use as a reference to another, try to use the same data type ... var auxVideo : Video = myVideo; ... -- Pedro Taranto

Re: [Flashcoders] Returning a String fails

2007-07-24 Thread Pedro Taranto
you forgot to put a 'return' statement where you call eliminateSpaces(phrase) -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] [Job] YouTube is hiring experienced Flash engineers

2007-07-16 Thread Pedro Taranto
caso alguem queira trabalhar no YouTube -- Pedro Taranto John Harding wrote: If interested, please send your resume to [EMAIL PROTECTED] with YouTube/Flash Resume in the subject. *Flash Engineer, Monetization - San Bruno* http://www.google.com/support/jobs/bin/answer.py?answer=47251

Re: [Flashcoders] [Job] YouTube is hiring experienced Flash engineers

2007-07-16 Thread Pedro Taranto
sorry about last message, it should be fowarded, not replyed sorry again -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Another Flash 3D Engine

2007-07-14 Thread Pedro Taranto
Realtime 3D Engine for Flash in Actionscript 3 http://away3d.com/ Away3D is a realtime 3d engine for flash in actionscript 3, originally derived from Papervision3D. it looks really nice -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Flipping Effect...

2007-07-11 Thread Pedro Taranto
http://pixelfumes.blogspot.com/2006/07/business-card-flip-effect-class-with.html -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Tips and advice for online bugtracking

2007-07-10 Thread Pedro Taranto
using FlashInspector with PixLib is very easy http://osflash.org/luminicbox.log http://osflash.org/projects/pixlib -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Turn image around effect?

2007-06-28 Thread Pedro Taranto
Card Flip Effect: http://pixelfumes.blogspot.com/2006/07/business-card-flip-effect-class-with.html --Pedro Taranto Peter Geller escreveu: Hi list, can somebody give me an answer how this turn around effect was made when you click on the speech bubble? http://www.ja-ik-doe-mee.be

Re: [Flashcoders] loading xml into flash in spanish(desperate)

2007-06-25 Thread Pedro Taranto
BASICLATIN include these characters: ºª¹²³£¢¬°°§ºçàáâãèéêìíîòóôõùúûüÀÁÇÂÃÈÉÊÌÍÎÒÓÔÕÙÚÛÜñÑ flash does not understand the html entities like acetilde, because the '' is used to separete variables hope it helps --Pedro Taranto Jesse Graupmann escreveu: Using Macromedia Flash MX

[Flashcoders] AS to UML tool

2007-06-18 Thread Pedro Taranto
which tools do you use/recommend to generate a diagram classes FROM AS2 code ??? --Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

Re: [Flashcoders] Site structure with classes

2007-05-29 Thread Pedro Taranto
you also can use Pixlib framework www.osflash.org/projects/pixlib --Pedro Taranto Hans Wichman escreveu: have a look at guggaf too, might be applicable here as well i think, it goes further then an application framework, it present a website-application framework. greetz JC On 5/29/07

Re: [Flashcoders] (no subject)

2007-05-29 Thread Pedro Taranto
for desktop you must use Apollo, the alpha version is avaiable http://labs.adobe.com/wiki/index.php/Apollo --Pedro Taranto Gustavo Duenas escreveu: Hi coders , Does anyone know a tutorial about how can I do desktop applications using flex builder? Because I googled and I wasn't much

Re: [Flashcoders] (no subject)

2007-05-29 Thread Pedro Taranto
Apollo SDK is free like Flex SDK --Pedro Taranto Gustavo Duenas escreveu: is this an open source or is program that cost something?...I mean Apollo. On May 29, 2007, at 3:58 PM, Steven Sacks wrote: Apollo Gustavo Duenas wrote: Hi coders , Does anyone know a tutorial about how can I do

Re: [Flashcoders] amfphp.org?

2007-05-15 Thread Pedro Taranto
http://www.5etdemi.com/blog/archives/2007/05/amfphporg-domain-name-debacle/ --Pedro Taranto dnk escreveu: looks like the domain has expired (May 7th). I am assuming the project is not dead, but it is rather just an over site by the owner. Does anyone have any info on this? How about a spot

Re: [Flashcoders] Re: textarea component not scrollable.

2007-04-14 Thread Pedro Taranto
it looks like you have an invisible button on top of it, that way it dont allow to bubbling the events to lower depths --Pedro Taranto Jonathan Berry escreveu: Sorry, did want to at least give the site I have under construction so you can see what I am talking about. Code is also available

Re: [Flashcoders] Re: textarea component not scrollable.

2007-04-14 Thread Pedro Taranto
so it should be the movieclip you are using to detect the rollover and rollout to show or hide the container if you use the mouse scroll the text scroll, so it is not the component --Pedro Taranto Jonathan Berry escreveu: No, no button. On 4/14/07, Pedro Taranto [EMAIL PROTECTED] wrote

Re: [Flashcoders] Re: textarea component not scrollable.

2007-04-14 Thread Pedro Taranto
movieclips/buttons you could try to put the container outside the circle as an independent mc, using the rollover on the circle to show the container, and use the rollout on the container to hide it, and hide it when you rollover the other circle too hope you understand --Pedro Taranto Jonathan

Re: [Flashcoders] about depth

2007-03-30 Thread Pedro Taranto
you are changing the depth between the same mc, thats the error in your code --Pedro Taranto Gustavo Duenas escreveu: ok ,I did it but stills is loading the image above the other layers (the layers of the code is the layer 1, there is 10 more above it) this is the code I'm using

Re: [Flashcoders] scope in AS3

2007-03-28 Thread Pedro Taranto
in flash8 the propertie is _visible, check it in the flash9 help --Pedro Taranto Dennis Asher escreveu: I've managed to avoid OOP till now but AS3 is here and no choice now. What's wrong in the class below? The code in the mouseover/mouseout functions do not reference the textfield correctly

Re: [Flashcoders] Flash CS3 Announced

2007-03-28 Thread Pedro Taranto
April 20th --Pedro Taranto Omar Fouad escreveu: but when the Flash CS3 Full version (not update) will be available?? On 3/28/07, Jason Cordial [EMAIL PROTECTED] wrote: I used to make jokes about Fireworks, but after I studies up and got my Dreamweaver 8 cert, I realized what

Re: [Flashcoders] Accessing all properties in an object ...

2007-03-28 Thread Pedro Taranto
if I understand what you want, replace your trace with this one: trace('prop: '+ props +'\tvalue: '+oObject[props]); --Pedro Taranto Stephen Ford escreveu: Anyone have a small script they use when they want to trace out both the name and values of all properties in an object. I'm sure I've

Re: [Flashcoders] Flash and levels

2007-03-28 Thread Pedro Taranto
the movielicps placed on the stage have negative depths --Pedro Taranto Gustavo Duenas escreveu: I have a questionthe level 20 is over or under the other movie clips the flash movie would have? Regards Gustavo Duenas P.s: the idea about a movie clip is very useful, because I'm

Re: [Flashcoders] setting a timer in flash 8

2007-03-25 Thread Pedro Taranto
{ mc.timeCounter++; trace(time: +mc.timeCounter); } } --Pedro Taranto Gustavo Duenas escreveu: Hi, I'm trying to set a timer to trigger a event after 20 seconds or less, but so far i have this code, but with no results someone help me? . I don't know how could I got into but some help

Re: [Flashcoders] timer question

2007-03-25 Thread Pedro Taranto
you should use setInterval, see it in documentation --Pedro Taranto Gustavo Duenas escreveu: Hi, I'm trying to launch an event using a timer so far the code for trace something is this: var now = new Date(); var seconds:Number = now.getSeconds(); trace(seconds); var newSeconds: Number

Re: [Flashcoders] Enhancing the Flash Cursor

2007-03-23 Thread Pedro Taranto
you can put an invisible button at each side of your photo, and use onRollOver and onRollOut to change the mouse cursor --Pedro Taranto Perdue, Blake escreveu: I am building a photo slideshow and I want to add a next/back button to the mouse cursor. If the mouse is on the right half

Re: [Flashcoders] Test

2007-03-23 Thread Pedro Taranto
yes --Pedro Taranto Omar Fouad escreveu: Is this delivered??? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf

Re: [Flashcoders] Trouble getting _x position

2007-03-23 Thread Pedro Taranto
what is the problem ?? you expect to receive the top-left corner _x position of the drawed box ? --Pedro Taranto Lee Marshall escreveu: Hi all Just trying to create a box in actionscript into an empty movieclip. I then wanted to reurn the _x postion of the box, but it's just not happening

Re: [Flashcoders] html vars and flash vars

2007-03-21 Thread Pedro Taranto
show your xml file with the link and the code you are using to load --Pedro Taranto Gustavo Duenas escreveu: sounds good, how could I do it? Regards Gustavo On Mar 20, 2007, at 2:32 PM, Pedro Taranto wrote: you wanto to load a swf from a xml and pass a parameter by the url in the xml

Re: [Flashcoders] html vars and flash vars

2007-03-20 Thread Pedro Taranto
it is loaded on the _root you use like this == yourTxt.text = _root.userId --Pedro Taranto Gustavo Duenas escreveu: Hi, I have a curiosity...or an itch about something (I'm full of it). The thing is that I'm loading a xml page into my flash and I'd like to know how can I handle the links, I

Re: [Flashcoders] html vars and flash vars

2007-03-20 Thread Pedro Taranto
you have to pass the variables to the swf, if you are passing by html you have to use some script language to pass it swf --Pedro Taranto Gustavo Duenas escreveu: ok Pedro, let me see if I can get it: on the xml link. 1.swf?id=something or should be the html where this one is embedded

Re: [Flashcoders] html vars and flash vars

2007-03-20 Thread Pedro Taranto
you wanto to load a swf from a xml and pass a parameter by the url in the xml ?? why dont you put these variables in the same node and when you load it you pass to your swf? --Pedro Taranto Gustavo Duenas escreveu: ok, how can i do it using swf? link in xml file: 1.swf?id=something

Re: [Flashcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Pedro Taranto
the results in the IE is faster than at FF on my PC: IE: EventBroadcaster: 3906 EventDispatcher: 2615 WIN 9,0,28,0 FF: EventBroadcaster: 4232 EventDispatcher: 3958 WIN 9,0,28,0 sorry but i dont have a mac to compare --Pedro Taranto Francis Bourre escreveu: Hello list ! I noticed

Re: [Flashcoders] stopDrag question

2007-03-19 Thread Pedro Taranto
your function control, just run 1 time, only when you release, you should put it on the mc.onEnterFrame, or start an interval when you startdrag it --Pedro Taranto Gustavo Duenas escreveu: Hi, I'm trying to stop the drag of a movie click when its x value equals the x value of other movie

Re: [Flashcoders] flash / ajax

2007-03-16 Thread Pedro Taranto
i havent use but there it is: http://www.aflax.org/ --Pedro Taranto John Dowdell escreveu: bruce wrote: looking at implementing an ajax widget and wanted to know if anybody's combined ajax and flash to be able to implement a cross-domain solution? I don't know of any, but I do know

Re: [Flashcoders] math.round question

2007-03-16 Thread Pedro Taranto
loadProgressOutput = Math.round(this.getBytesLoaded()*100/this.getBytesTotal()); --Pedro Taranto Gustavo Duenas escreveu: hi, this is the code of my loader. if(_framesloaded 0 _framesloaded == _totalframes){ gotoAndPlay(beginMovie); } else{ loadProgressOutput = this.getBytesLoaded

Re: [Flashcoders] Addressing functions in frame script from class script

2007-03-16 Thread Pedro Taranto
if you are using classes, why do you have code in the movieclip timeline ??? --Pedro Taranto Danny Kodicek escreveu: If I have a class that extends MovieClip, and various movieClips that use that class, is there a way for a function in the class to speak to a function that's on the first

Re: [Flashcoders] Flash - using the back button

2007-03-15 Thread Pedro Taranto
http://www.asual.com/swfaddress/ --Pedro Taranto Karim Beyrouti escreveu: Hi All, I was just wondering what the best way to activate the browser's back button for a Flash(8) app?... are there any up to date resources / tutorial about this?... Kind regards Karim

Re: [Flashcoders] TextField variable and arrays - please help!

2007-03-15 Thread Pedro Taranto
you have to use the .text propertie mc.txt.text = _root[winner+i+PercentPayout]; --Pedro Taranto Johan Nyberg escreveu: I tried to get help here a couple of days ago, but alas to no avail. Please give me a hand with this if you can: How do I make a connection between a TextField

Re: [Flashcoders] Urgent: flash detection error with swf object and query string

2007-03-15 Thread Pedro Taranto
you should use |so.addVariable(variable1, value1); --Pedro Taranto | [EMAIL PROTECTED] escreveu: Came across something that has me baffled. When appending a query string to a URL, certain query string values give me an arror, ie , i'm prompted for a plugin download. for instance ?ecard

Re: [Flashcoders] xml parse question

2007-03-15 Thread Pedro Taranto
/pixlib-part-2-more-configuration-features-and-a-hidden-gem/ --Pedro Taranto John laPlante escreveu: The xml that you've shown consists of all attributes, that is value pairs inside a tag. Each node has a attributes property. Here is a small snippet that demonstrates accessing attributes

Re: [Flashcoders] ISOMETRIC GAME ENGINE

2007-03-14 Thread Pedro Taranto
well, sandy is just an API to work with 3D in flash and pixlib is not a game engine, it is a generic as2 framework with a lot of classes and design patterns that you can use to develop your own isometric engine --Pedro Taranto Anggie Bratadinata escreveu: have you tried www.flashsandy.org

Re: [Flashcoders] ISOMETRIC GAME ENGINE

2007-03-14 Thread Pedro Taranto
http://www.theoworlds.com/ == this is a commercial one --Pedro Taranto Mike Mountain escreveu: http://oos.moxiecode.com/ You may find something here... M ECM Systems Ltd, Ellifoot Park, Burstwick, East Yorkshire HU12 9DZ Tel: 01964 672000 Fax: 01964 671102 Registered in England

Re: [Flashcoders] ISOMETRIC GAME ENGINE

2007-03-14 Thread Pedro Taranto
its a nice work, do you pretend to share the as2 code too ?? --Pedro Taranto matt zb escreveu: Hi, I've been working on an AS3 isometric game engine for a few months now. http://www.zenbullets.com/isometric/ It's not finished, and it's not open source (yet), but may be of interest if you

Re: [Flashcoders] question about txt files and flash

2007-03-14 Thread Pedro Taranto
if you are reading a xml file, you shold use the XML API loadVariables is deprecated --Pedro Taranto Gustavo Duenas escreveu: Hi, there is a limit height that flash can process or read from a text file?, because I have something with xml tags, the file reads well till the item4, so far i

Re: [Flashcoders] MovieClip Instance _x and _y

2007-03-12 Thread Pedro Taranto
you can build the absolute position adding the _parent nested positions --Pedro Taranto Jason Lutes escreveu: Is there a way determine clip position that doesn't presume the location of the registration point relative to clip content, or doesn't care where nested clip content is positioned