[Flashcoders] referencing a public method gives unexpected result

2008-03-25 Thread Allandt Bik-Elliott (Receptacle)
Hi guys quick question really. I have a Scrollbar class with a public method, arrowPressed (e:MouseEvent), that i'm trying to call from another class, TimelineArea(), using objects with the same name with the lines: left_arrow.addEventListener( MouseEvent.MOUSE_DOWN,

[Flashcoders] AS3 sftp

2008-03-25 Thread laurent
Hi, Would it be possible to do a sftp client in Flash/AIR ? With AMF ?? or with Haxe/Neko perhapsor red5?? thx L ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Tweening Engines for AS3

2008-03-25 Thread Meinte van't Kruis
true, but knowing so saves a lot of wtf's when you do have lots of stuff tweening and want it in sync ;) On Mon, Mar 24, 2008 at 7:58 PM, Zeh Fernando [EMAIL PROTECTED] wrote: While I agree with the speed thing, let's just keep this in context - it's so when you have a lot of tweenings going

Re: [Flashcoders] AS3 sftp

2008-03-25 Thread Muzak
http://maliboo.riaforge.org/ - Original Message - From: laurent [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 25, 2008 2:16 PM Subject: [Flashcoders] AS3 sftp Hi, Would it be possible to do a sftp client in Flash/AIR ? With AMF ??

Re: [Flashcoders] AS3 sftp

2008-03-25 Thread eric e. dolecki
SVN Repository seems to be empty :/ On Tue, Mar 25, 2008 at 9:41 AM, Muzak [EMAIL PROTECTED] wrote: http://maliboo.riaforge.org/ - Original Message - From: laurent [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Tuesday, March 25, 2008 2:16 PM

Re: [Flashcoders] referencing a public method gives unexpected result

2008-03-25 Thread Allandt Bik-Elliott (Receptacle)
replaced the Scrollbar method with this [CODE] // executes when the up arrow is pressed protected function arrowPressed( e:MouseEvent ):void { trace (e.target.name); var dir:int = (e.target == left_arrow) ? -1 : 1;

Re: [Flashcoders] AS3 sftp

2008-03-25 Thread Glen Pike
Maybe you have to FTP to get the source :0 eric e. dolecki wrote: SVN Repository seems to be empty :/ On Tue, Mar 25, 2008 at 9:41 AM, Muzak [EMAIL PROTECTED] wrote: http://maliboo.riaforge.org/ - Original Message - From: laurent [EMAIL PROTECTED] To: Flash Coders List

Re: [Flashcoders] referencing a public method gives unexpected result

2008-03-25 Thread jonathan howe
I'm interested in opinions on this, too... Is that comparison (e.target == left_arrow) the best way to find out what your target object is? ... and would strict equality make a difference? -jonathan On Tue, Mar 25, 2008 at 10:15 AM, Allandt Bik-Elliott (Receptacle) [EMAIL PROTECTED] wrote:

Re: [Flashcoders] referencing a public method gives unexpected result

2008-03-25 Thread Allandt Bik-Elliott (Receptacle)
on someone's suggestion i've replaced this with the much nicer: [CODE] protected function arrowPressed( e:MouseEvent ):void { var dir:int = (e.target.name == left_arrow) ? -1 : 1; scrollTarget(dir); } [/CODE] and then i've given all of

RE: [Flashcoders] AS2: Tweening a very large vector file causes shaking

2008-03-25 Thread Merrill, Jason
video card? how come? In my experience, if you don't have enough memory in your video card, and you send a lot of data to it, you can see things not render or not render properly. Jason Merrill Bank of America GTO and Risk LLD Solutions Design Development eTools Multimedia Bank of

Re: [Flashcoders] AS3 sftp

2008-03-25 Thread eric e. dolecki
http://projects.maliboo.pl/FlexFTP/ That seems to work, but nothing else. Better than nothing. This is Apollo-specific, not sure much changed there for AIR. On Tue, Mar 25, 2008 at 10:11 AM, Glen Pike [EMAIL PROTECTED] wrote: Maybe you have to FTP to get the source :0 eric e. dolecki wrote:

Re: [Flashcoders] AS3 sftp

2008-03-25 Thread laurent
wow thanks maliboo looks good. I found that too: http://www.onflex.org/ted/2007/05/flexftp-ftp-client-in-flex-using.php the video on right side about why flash/flex are very cool eric e. dolecki a écrit : http://projects.maliboo.pl/FlexFTP/ That seems to work, but nothing else. Better than

Re: [Flashcoders] referencing a public method gives unexpected result

2008-03-25 Thread Allandt Bik-Elliott (Receptacle)
i'm not too up on strict equality i'm afraid - would be interested to hear someone's opinion the comparison now is e.target.name == left_arrow (i've added left_arrow.name = left_arrow and the same for right arrow as well) On 25 Mar 2008, at 14:28, jonathan howe wrote: I'm interested in

[Flashcoders] Flash/ActionScript developer wanted

2008-03-25 Thread Paul Novitski
Greetings, We're looking for someone adept at Flash and ActionScript to modify an existing Flash 8 application. We'll need a cost estimate and then the work completed right away (of course). The work we need right away won't be huge (the original developer, who's committed to other

[Flashcoders] prob in Flex 3/AIR

2008-03-25 Thread eric e. dolecki
I have this bit of code in my AIR app: mx:Model id=myTopics topics topic label=AS3 Reference data= http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/; / topic label=Adobe AIR Marketplace data=

Re: [Flashcoders] prob in Flex 3/AIR

2008-03-25 Thread eric e. dolecki
thanks much! works like a charm. On Tue, Mar 25, 2008 at 1:24 PM, Ian Thomas [EMAIL PROTECTED] wrote: The XML parser is trying to expand exc into an XML entity - since is the signifier for an XML entity. Instead of , use amp; (which is the entity that represents a sign). Try: topic

[Flashcoders] zinc 3.0 overhead

2008-03-25 Thread August Gresens
Anyone else find that frame rates drop significantly with Flash projects wrapped in Zinc? Despite claims of performance enhancements, I'm noticing a significant decrease in performance with an AS3 SWF running in Zinc 3.0 on windows compared with the Flash Player. Using the flex sample at

[Flashcoders] Sound.loadSound ?isStreaming?

2008-03-25 Thread Andrew Sinning
I may not quite understand how to use the the isStreaming:Boolean parameter of the Sound.loadSound() function in AS2. If set to true, the sound will start playing as soon as enough data is downloaded. I got that. But what if I want to load the sound, _allow_ streaming, but _not_start_ it as

Re: [Flashcoders] Sound.loadSound ?isStreaming?

2008-03-25 Thread eric e. dolecki
setBufferTime ? On Tue, Mar 25, 2008 at 2:26 PM, Andrew Sinning [EMAIL PROTECTED] wrote: I may not quite understand how to use the the isStreaming:Boolean parameter of the Sound.loadSound() function in AS2. If set to true, the sound will start playing as soon as enough data is downloaded.

Re: [Flashcoders] Sound.loadSound ?isStreaming?

2008-03-25 Thread Steven Sacks
uh. mySound.loadSound(url, true); mySound.stop(); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] inputTextField with embedFont troubles

2008-03-25 Thread Álvaro Saraiva
Hi to all, I've several textFields (input type not UI flash component) in a form. The fields are formatted with textFormat Obj, using embedded fonts (Exported previously)... no problem so far. The problem is when I set Selection.setFocus(field._name) on first field, or jumping from one field to

Re: [Flashcoders] Sound.loadSound ?isStreaming?

2008-03-25 Thread Andrew Sinning
Don't you think that a bit too obvious? ;-) Thanks Steven! Steven Sacks wrote: uh. mySound.loadSound(url, true); mySound.stop(); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Custom DrawRectangle Question

2008-03-25 Thread Cor
Mmm, sounds familiair. :-) It has to be added to the Displaylist otherwise it isn't visible. Cor -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Omar Fouad Verzonden: maandag 24 maart 2008 22:01 Aan: Flash Coders List Onderwerp: [Flashcoders]

Re: [Flashcoders] Sound.loadSound ?isStreaming?

2008-03-25 Thread Steven Sacks
;) ywc Andrew Sinning wrote: Don't you think that a bit too obvious? ;-) Thanks Steven! Steven Sacks wrote: uh. mySound.loadSound(url, true); mySound.stop(); ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] JSFL Add a new font

2008-03-25 Thread Leon
Hello FlashCoders, With a JSFL 1 - I want to : in an opened document. 2 - Create a new Font Symbol in my opened document library. 3 - Set his parameters. Is it possible !? Leon /* var lib = fl.getDocumentDOM().library; lib.addNewItem('FontItem'); */

RE: [Flashcoders] JSFL Add a new font

2008-03-25 Thread Michael Randolph
I wish...no way to do this afaik -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Leon Sent: Tuesday, March 25, 2008 4:05 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] JSFL Add a new font Hello FlashCoders, With a JSFL 1 - I want to :

Re: [Flashcoders] Custom DrawRectangle Question

2008-03-25 Thread Omar Fouad
Yeah A good method to do rectangles fast On Tue, Mar 25, 2008 at 9:30 PM, Cor [EMAIL PROTECTED] wrote: Mmm, sounds familiair. :-) It has to be added to the Displaylist otherwise it isn't visible. Cor -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [Flashcoders] JSFL Add a new font

2008-03-25 Thread Steven Sacks
Here's the #1 way of knowing what's not possible in JSFL. Open your History Panel (CTRL+F10). Do something. If the something you did has a red X in the lower right corner, you can't do it in JSFL. x (Create New Font Symbol) You can't do this with JSFL, unfortunately.

[Flashcoders] flv playhead issues

2008-03-25 Thread Joshua Forstot
hey all. i have put together a flv player and it seems that all of the custom skinned components seem to be working just fine except the playhead does not seem to adjust its position based on the current playheadTime. any thoughts into this would be greatly appreciated. *sidenote: the

Re: [Flashcoders] zinc 3.0 overhead

2008-03-25 Thread John Hattan
I'm using Zinc 2.5 for my games (http://www.thecodezone.com/games/bulldozer.php).I haven't had any real performance problems between standalone andweb-based versions. My stuff targets the Flash 8 runtime and isn't areal performance hog, though. I'm not upgrading to Zinc 3because the deployed

RE: [Flashcoders] Tweening Engines for AS3

2008-03-25 Thread Jack Doyle
First let me say that Tweener is fantastic, and a lot of people rely on it for good reason. If quantity of features is your top priority, you should seriously consider using Tweener. Let me briefly address a few of the TweenLite-related concerns folks have mentioned: SPEED - TweenLite's

[Flashcoders] ot :: specification apps tracking.

2008-03-25 Thread artur
oh wise list, im about to start finalizing some major feature specs for my dev team ( im the product designer ) this doc will eventually be translated into a tech requirements doc. which apps out there are great for authoring and tracking changes to both? until now i have been using

Re: [Flashcoders] Custom DrawRectangle Question

2008-03-25 Thread jonathan howe
Right. I guess I was trying to address your issue about having to add it to the display list twice. You'd still need to addChild( instance of DrawRectangle ); But having DrawRectangle extend Sprite and then drawing directly on this.graphics solves the problem of doing it twice. -jonathan On