[Flashcoders] hiding datagrid columns?

2006-02-08 Thread srishti
Does anyone know a way to hide a datagrid column. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the intended recipient, please

Re: [Flashcoders] Unit Tesing Framework Recommendations

2006-02-08 Thread Alias
AsUnit is definitely the best. HTH, Alias On 2/8/06, Chris Velevitch [EMAIL PROTECTED] wrote: I'm interested in finding what unit testing frameworks exist for Flash and the pros and cons of each. Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group

[Flashcoders] passing variables to a popup using javascript instead of php/asp

2006-02-08 Thread Kalle Thyselius, Inlovewith
hi, just found a way to send variables to a pop up (or similar) without having to use a server side language like php or asp. it's a java script property called document.location.search and is The sub string that follows the question mark is the query string or form data. example: example

[Flashcoders] adding button handlers extending movieclip

2006-02-08 Thread Jiri Heitlager
He, I have a question, wich is probably very simple. In a class I am looping through an array to make buttons; for (var i : Number = 0 ; i buttonList.length ; i ++) { var btn = makeButton (listholder_mc , 0 , 0 , labelTXT ); btn._y = 1 + (prevBtn._y + prevBtn._height);

[Flashcoders] Dynamic width of image...

2006-02-08 Thread MJorge
Hello, I am loading dynamically some images to a emptyClip. The images have different width anh height values each one. What i wanted is that my Clip (or image after loading) had a maximum width of 163 I am using this code at my Clip but it´s not working correctly. Can anyone help?

Re: [Flashcoders] Dynamic width of image...

2006-02-08 Thread erixtekila
_xscale and _yscale should be your friends. Your approach is good btw. I am loading dynamically some images to a emptyClip. The images have different width anh height values each one. What i wanted is that my Clip (or image after loading) had a maximum width of 163 I am using this code

Re: [Flashcoders] Dynamic width of image...

2006-02-08 Thread MJorge
I know that my approach is working, the prob is that i have a button to load another image to the clip. That´s when all the problems come... The width value is not respected anymore. That´s my prob. On 2/8/06, erixtekila [EMAIL PROTECTED] wrote: _xscale and _yscale should be your friends.

Re: [Flashcoders] Complex paremeters interface for component

2006-02-08 Thread Éric Thibault
I'll look it up! Thanks. These articles talk about Flash MX and Flash MX 2004. Are they applicable also for Flash 8? A+ Eric. GregoryN wrote: I think Custom UI is exactly what you need: http://www.macromedia.com/devnet/flash/articles/buildtest_comp_07.html

[Flashcoders]

2006-02-08 Thread CARABUS plus
Hello, I create dynamic textfield with functions and I try to field them without success, Have you got an idea ? Thank you var dt:Number = 0; var dtd; for (var dt:Number = 0; dt = 70; i++) { dtd = var+dt; trace (dtd); trace (dt); _root.createTextField (dtd, dt, 50+dt, 50+dt,

Re: [Flashcoders]

2006-02-08 Thread Julien Vignali
2 things: - your for loop is erroneous... your dt variable isn't used as expected (increment it in the for statement) and your i variable is unused and shouldn't be here ;-). - you should prefix all your textfields with _root as they are created on _root level. Change your code as below, and

Re: [Flashcoders]

2006-02-08 Thread Mark Winterhalder
On 2/8/06, CARABUS plus [EMAIL PROTECTED] wrote: Hello, I create dynamic textfield with functions and I try to field them without success, Have you got an idea ? yes. in fact, i have quite a few suggestions -- sorry if they sound a bit harsh, that's not my intention, they might help you get

Re: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Dave Mennenoh
Could you set the column's width to 0? Are you trying to hide on a button click or something? Dave - www.blurredistinction.com www.macromedia.com/support/forums/team_macromedia/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Merrill, Jason
Please stop cross-posting! Thank you. Jason Merrill | E-Learning Solutions | icfconsulting.com -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 4:47 AM To:

Re: [Flashcoders] hiding datagrid columns?

2006-02-08 Thread Nathan Derksen
Use removeColumnAt() and addColumn()/addColumnAt() var dataArray:Array = new Array(); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3}); dataArray.push({foo:1, bar:2, baz:3});

[Flashcoders] Can you extend the _y and _height setters of a movie clip?

2006-02-08 Thread David Lochhead
Hi, I've got a movieclip that can have it's _y and _height properties altered by various scripts. Is there a way I can extend the movieclip class so that the setter for these properties can be extended so I can act when the clip gets updated? Any advice appreciated. Dave

[Flashcoders] What is profile?

2006-02-08 Thread Morten Barklund TBWA\\Play
Hi all, One for the detectives in y'all: Background -- I have an object, that I ought to fetch via a singleton and save as a local variable or member of my classes, but sometimes forget to declare. Thus sometimes I reference a member or a variable of a class, that hasn't been

Re: [Flashcoders] Can you extend the _y and _height setters of a movie clip?

2006-02-08 Thread Morten Barklund TBWA\\Play
David Lochhead wrote: Hi, I've got a movieclip that can have it's _y and _height properties altered by various scripts. Is there a way I can extend the movieclip class so that the setter for these properties can be extended so I can act when the clip gets updated? Any advice appreciated.

Re: [Flashcoders] what are differences between Flash5 and FlashMX?

2006-02-08 Thread JesterXL
That's the IDE, not the player. ...but yeah, JSFL rocks the mic. - Original Message - From: Danny Kodicek [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, February 08, 2006 2:41 AM Subject: Re: [Flashcoders] what are differences between

RE: [Flashcoders] Can you extend the _y and _height setters of amovie clip?

2006-02-08 Thread Scott Hyndman
You could try watching _y and _height with Object.watch(), and adding the extra code in the observing functions. Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Morten Barklund TBWA\Play Sent: Wed 2/8/2006 11:46 AM To: Flashcoders mailing list Cc: Subject:

Re: [Flashcoders] Can you extend the _y and _height setters of a movie clip?

2006-02-08 Thread Ian Thomas
Have you tried using Object.watch? It certainly works for me with .enabled - might work with _x and _y, haven't tried it. Cheers, Ian On 2/8/06, Morten Barklund TBWAPlay [EMAIL PROTECTED] wrote: David Lochhead wrote: Hi, I've got a movieclip that can have it's _y and _height

[Flashcoders] Zoom App

2006-02-08 Thread Jati Putra
Hi, I`m working on a project that need zoom feature. but I`m stuck in making border that can validate my object width and height, so when I drag the movieclip object that include image, it can`t be over the border I need to make it like this zoom aplication http://www.artistscope.com/zoom/

RE: [Flashcoders] Dynamic width of image...

2006-02-08 Thread Ryan Potter
You could use a movie clip loader too. Code below: init(); function init(){ trace(code init); this.createEmptyMovieClip(holder, this.getNextHighestDepth()); this.imageLoader = new MovieClipLoader(); this.imageLoader.addListener(this);

Re: [Flashcoders] Can you extend the _y and _height setters of amovie clip?

2006-02-08 Thread Tyler Wright
No, there is no way to do this by extending the MovieClip class. Unfortunately the _x and _y are unique beasts, along with all the other MovieClip properties from the Flash 4 days (such as enabled). You can't watch them, create getters/setters for them, or even over-ride them. You have to have a

Re: [Flashcoders] Can you extend the _y and _height setters of amovie clip?

2006-02-08 Thread Ian Thomas
Um - Tyler - as I said in an earlier post, Object.watch _does_ work with .enabled. Definitely. I use it all the time. MX2004. So it might be worth trying with _x and _y, too... Ian On 2/8/06, Tyler Wright [EMAIL PROTECTED] wrote: No, there is no way to do this by extending the MovieClip

RE: [Flashcoders] Can you extend the _y and _height setters of amovieclip?

2006-02-08 Thread Scott Hyndman
Yup. V2 components actually make use of watching enabled too. I just tested watching _y and _height, and you're right, it doesn't work. Scott -Original Message- From: [EMAIL PROTECTED] on behalf of Ian Thomas Sent: Wed 2/8/2006 1:57 PM To: Flashcoders mailing list Cc:

RE: [Flashcoders] Xpath4AS2

2006-02-08 Thread Tom Rhodes
yeah other than the docs, I didn't turn up the osflash page in my searches, I'll check the archives too... ta. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: 08 February 2006 20:19 To: Flashcoders mailing list Subject: RE:

Re: [Flashcoders] video weirdness

2006-02-08 Thread quinrou .
John, The streaming stops when the onRollOut event is invoked which happens when I rollout of the thumbnail images. When I noticed that i tried to desable the onRollOut event that i had on the thumbnail images to see if the same thing was happening with the onRollOver event. And yes the same

Re: [Flashcoders] video weirdness

2006-02-08 Thread John Giotta
I wouldn't be the Delegate class. I'd like to help, but do you have something I can visualize? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] opportunity - paypal flash cart

2006-02-08 Thread stone larsen
I am looking to hire someone for a fully functional apparel based flash cart using paypal as the merchant. Key needs: XML powered, easily updateable. If interested please hit me back, I'm not looking to spend over $1000. Best, S- - Relax.

RE: [Flashcoders] FLVPlayback - ClearOverAll.swf

2006-02-08 Thread Corban Baxter
I guess you are trying to do an autohide? Corban Baxter  |  rich media designer  |  www.funimation.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Boutin Sent: Wednesday, February 08, 2006 2:59 PM To: Flashcoders mailing list

Re: [Flashcoders] 1 pixel border issue (not quite an AS issue, slightly OT)

2006-02-08 Thread DP
I've read in my Flash Hacks book that moving the registration point can fix this. Move it into the top left quadrant, so that the x,y values are negative. On Feb 8, 2006, at 1:16 PM, Mendelsohn, Michael wrote: Nevermind, flashcoders. The solution seems to be to just make a shape and use a

[Flashcoders] Q:getter setters vs accessor methods

2006-02-08 Thread bitstreams
Hi Just wondering if there was a consensus on which use of getter/setters is used most often traditional getter/setters ie public function get Size():Number{} or accessor methods public function getSize():Number{} Which do you prefer and why...? [e] jbach at bitstream.ca [c] 416.668.0034

Re: [Flashcoders] Extract actionscript from .FLA?

2006-02-08 Thread Jim Ault
On 2/7/06 8:49 PM, Josh McDonald [EMAIL PROTECTED] wrote: I agree, but there's no way I'd get the go-ahead for refactoring of that size. Lousy bean-counters :( I'm just lucky for the amount of code that's already in .as files. Thanks for the link btw :) I use BBEdit to do multi file

Re: [Flashcoders] opportunity - paypal flash cart

2006-02-08 Thread Rich Rodecker
check out flashkart. On 2/8/06, stone larsen [EMAIL PROTECTED] wrote: I am looking to hire someone for a fully functional apparel based flash cart using paypal as the merchant. Key needs: XML powered, easily updateable. If interested please hit me back, I'm not looking to spend over

[Flashcoders] Outsourcing

2006-02-08 Thread Ramon Tayag
To all those in developed countries: Do you outsource your work to developing countries? Is there such a high demand for Flash overseas that there is a need to outsource? Thank you, -- Ramon Miguel M. Tayag ___ Flashcoders mailing list

Re: [Flashcoders] No cue points in On2 pro?

2006-02-08 Thread Troy Rollins
On Feb 8, 2006, at 9:54 PM, Newmediasoup - engaging multimedia wrote: Would this work? http://buraks.com/captionate/ Thanks for the link. It appears that tool accepts pre-encoded FLVs and injects metadata and cue points. Windows-only is a bit of a pain for our production workflow since

Re: [Flashcoders] Q: Speeding up compile and /or launch with many objects

2006-02-08 Thread Mark Winterhalder
Can anyone suggest speed improvements? to speed up compile time, use mtasc (http://osflash.org/mtasc), the second possibly is your initialization, i.e. building the interface or whatever. you can measure it by putting it all in a function, and do something like this: var start:Number =

RE: [Flashcoders] Outsourcing

2006-02-08 Thread Bjorn Schultheiss
I probably do not speak for all but the common perception is that innovative work is done in house while the more common jobs are most likely to be outsourced. Bjorn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ramon Tayag Sent: Thursday, 9 February

Re: [Flashcoders] Outsourcing

2006-02-08 Thread JesterXL
I'm assuming the USA is a developed country. Yes. Tons of work is outsourced; it's the same with manufacturing; if the same job can be done cheaper in the long run, outsourcing is a good idea. There is a high demand for Flash, yes, but a higher demand for Flex is on the horizon, mainly

[Flashcoders] SWF to Image format at runtime.

2006-02-08 Thread hidayath q
Hi guys, I want to convert the whole SWF file into a jpg format at runtime.will a swf file be embedded in PDF file? can anyone answer my question. Regards, S.Hidayath ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] No cue points in On2 pro?

2006-02-08 Thread Troy Rollins
On Feb 8, 2006, at 11:06 PM, Newmediasoup - engaging multimedia wrote: The only downside is if you don't own Sorenson squeeze, it's gonna cost ya about $450 for the compression suite, and then you'll have to pay about $150 to get the On2VP6 Pro plugin. Hope this helps... Or am I missing

Re: Re[4]: [Flashcoders] Q:getter setters vs accessor methods

2006-02-08 Thread Nathan Derksen
The line in the constructor: this._size = 2; is calling the setter. Maybe you meant to call this.__size = 2; Setters will trigger regardless of whether the property is set by code within the class itself or from external code. Nathan http://www.nathanderksen.com On Feb 8, 2006, at 5:31

Re: Re[4]: [Flashcoders] Q:getter setters vs accessor methods

2006-02-08 Thread Nathan Derksen
Sorry, ignore me, I misread the question. setter != getter Nathan http://www.nathanderksen.com On Feb 8, 2006, at 9:58 PM, Nathan Derksen wrote: The line in the constructor: this._size = 2; is calling the setter. Maybe you meant to call this.__size = 2; Setters will trigger regardless of

Re: [Flashcoders] Q:getter setters vs accessor methods

2006-02-08 Thread Fumio Nonaka
Right. And in simple assignment, getter's returned value is returned as the assignment formula's value. According to ECMA-262 (11.13.1), the formula's value should be its lefthand expression. var _mc:MovieClip = this.createEmptyMovieClip(my_mc, 1); var a:Number = _mc._rotation=270; trace([a,

Re: [Flashcoders] Q:getter setters vs accessor methods

2006-02-08 Thread Fumio Nonaka
Sorry. The formula's value should be its assignment expression, i.e. righthand side expression. _ Fumio Nonaka wrote: Right. And in simple assignment, getter's returned value is returned as the assignment formula's value. According to ECMA-262 (11.13.1), the formula's value should be