RE: [flexcoders] Updates for Flex 2.0?

2006-07-21 Thread Matt Chotin
We will certainly be considering coder features for later releases. I cant promise what will be done when as we need to focus on some other things first (like getting it out on Mac). Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] performance issues

2006-07-21 Thread Matt Chotin
Well DataGrid scrolling performance is something that weve spent a lot of time tuning so I would love for us to get a full test case that we can look at. I saw in the thread you linked mentioning a 1600x1200 monitor, is the DataGrid taking up most of that real estate? The more visible

[flexcoders] Incomplete Java API docs

2006-07-21 Thread m88e24
The Java API doc which is included in the Flex2 final release is incomplete and doesn't reflect the actual class library packaged in the jar files. For example the MessageBroker and MessageClient is missing from the Java API docs. Furthermore the information contained in the Java API doc is

[flexcoders] routeMessageToService and routeMessageToClient

2006-07-21 Thread m88e24
The selector attribute of the Consumer class allows messages to be filtered based on information in the header of the message. The downside is that a message is always delivered to all clients which is inefficient and is also a potential security hazard. I just want to deliver a message to a

RE: [flexcoders] Binding from Actionscript

2006-07-21 Thread Paul Williams
Hi Alberto, From what I can tell, it seems you use bindSetter to bind to an ordinary function. If you want to bind to a 'set' function you actually need to use bindProperty (because 'set' functions are treated as properties). See the demo app I have pasted below that shows both approaches. Paul

Re: [flexcoders] routeMessageToService and routeMessageToClient

2006-07-21 Thread Tom Bray
I'm in the same boat, looking for the same information. The only help I can provide is regarding selectors: the filtering happens server-side, so only consumers that have subscribed using that selector will receive the message. We still want a way to be able to send a message to a specific

Re: [flexcoders] Sending Arrays of VO's from Flex to CF

2006-07-21 Thread Tom Chiverton
On Thursday 20 July 2006 23:46, briggzaytravel wrote: I've been working on a particularly sticky wicket for many hours now. First thing to do is either to turn on debug log level in your services-config.xml or make use of FlexDebugPanel

Re: [flexcoders] Flex Builder 2 RDS Connection problems

2006-07-21 Thread Tom Chiverton
On Thursday 20 July 2006 16:44, Brian Holmes wrote: beginning to think that it's got to be something on our network as I have been able to connect to RDS everywhere but here it seems. You could stick something like ethereal in there, and see what is actually going back and forth on the wire.

Re: [flexcoders] Re: Chart data transitions effects when using AS

2006-07-21 Thread Tom Chiverton
On Thursday 20 July 2006 18:06, Doug Lowder wrote: The interpolation should work when adding data sets; I'm thinking it would look the same as going from a 0-datapoint series to a non-0 series. Removing a data set, on the other hand, may just cause it to instantly disappear from the chart,

Re: [flexcoders] Re: Detect if Object exists

2006-07-21 Thread Ralf Bokelberg
Hi Nick, you could use something like an itemRenderer as the tab and its data property to compare against the selected item of your data grid. Here is a simple example: snip ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] ComboBox instance method open() doesn't work first time when in particular state

2006-07-21 Thread Sergey Kovalyov
I have base application class:package { import mx.controls.ComboBox; import mx.core.Application; public class ExampleBase extends Application {public var myComboBox : ComboBox; public function ExampleBase() { }protected function onEditStateEnter() : void { myComboBox.open(); }

Re: [flexcoders] Binding from Actionscript

2006-07-21 Thread Alberto Albericio
Hi Ralf ! Im fine thank you! ( I will mail you personally at gmail ) Thanks for your help. I finally got that binding working! Paul sent me some stuff (same stuff posted in flexcoders I think) and with some time I managed to make it work. In summary, I was creating the binding in the wrong

[flexcoders] FlashPlayerTrust files don't get updated by Flex Builder 2

2006-07-21 Thread Dirk Eismann
Has anyone experienced that when running a SWF from Flex Builder 2 which accesses a local file (i.e. pull XML file through HTTPService) sometimes Security Sandbox violations happen and sometimes not? On my machine it all boils down to the fact that the flexbuilder_plugin.cfg and

[flexcoders] Any way to get a navbar to maintain state, acting kinda like a tabNavigator

2006-07-21 Thread hank williams
I like the look of the navbar, but in using it to control a viewStack, I would like to be able to keep one of the buttons in the bar a different color at all times. I actually want manual control over this because there are some special cases. But is there any way to say that a specific button

Re: [flexcoders] setting value on cfc invoke another method on cfc

2006-07-21 Thread Angus Johnson
Session scope. Coldfusion maintains session for remoting as it does for http requests from html apps. How would you hold normally hold session data? Maybe a facade object?On 21/07/06, Doug Arthur [EMAIL PROTECTED] wrote: How would you invoke one method on a

[flexcoders] Any field types to past pic?

2006-07-21 Thread mthielman11
I have a quick question. We need a field to store a small 70x70 pixel picture file that will serve as a use icon on our project. Is there any type of field in flex that I can paste a picture into from the UI? Or do I need to upload an image file via flex, have it stored on an HD somewhere

[flexcoders] Flex Store SendCart()

2006-07-21 Thread Cesar Torrejon
Hi I am try to implement function SendCart() for Flex Store Example. I don´t know how I can send a email with the items selected when click on Submit Order I am trying to send one Array with this information but my .ASP not work OK. When the user click On Submit Order [Bindable]

[flexcoders] Flex Store SendCart()

2006-07-21 Thread Cesar Torrejon
Hi I am try to implement function SendCart() for Flex Store Example. I don´t know how I can send a email with the items selected when click on Submit Order I am trying to send one Array with this information but my .ASP not work OK. When the user click On Submit Order [Bindable]

[flexcoders] Radiobutton bug in Repeater

2006-07-21 Thread Steve Cox
All, Ive been experiencing several issues with the radiobutton when in a repeater the main problem at the moment is this error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at

[flexcoders] Flex Pricing question

2006-07-21 Thread Umesh Garg
Hi,Is the Eclipse plug-in for the Flex-builder free orI have to pay for it. CanI get this without the flexbuilder?If yes, what is the cost?I don’t see the price for Flex Data Serviceon the site, what's the pricing model for this? I understand the express version is free to download.

[flexcoders] TextSnapshot not working in Flex 2

2006-07-21 Thread satrajignesh
Hi there, I have a TextArea which gets dynamically populated with text received from Server. At the client on some specific event I need to retrieve X and Y co ordinates of some text. There is property in TextArea called textSnapshot, but whenever I try to get it the character count is always

[flexcoders] Data Paging without FDS

2006-07-21 Thread nigasak
Is it posible Data Paging without FDS?, I've been reading docs and there is no real answer for this. Maybe someboy knows. Yahoo! Groups Sponsor ~-- Check out the new improvements in Yahoo! Groups email.

RE: [flexcoders] Help needed in saving data through Data Service

2006-07-21 Thread Umesh Garg
Sorry for not replying you earliar. I am using jrun shipped with beta3. Do I have to do something to add transaction manager? Peter Farland [EMAIL PROTECTED] wrote: Are you using Tomcat? If so which version? You may need to add JOTM to your tomcat installation.

[flexcoders] Problem with PopUps with Flash Player 9,0,16,0 ?

2006-07-21 Thread david_c_lowe
Hello, Dave Lowe here. I've just updated my Flash Player from version 9,0,0,296 to version 9,0,16,0 and PopUps appear to have stopped working (no PopUp is displayed - see code at the end of this post). This code works under 9,0,0,296. Am I doing something wrong or is this a bug in 9,0,16,0?

[flexcoders] flex2: context out of Function

2006-07-21 Thread Roman Protsiuk
Hi, everyone. Is it possible in Flex 2 to get context for some method described by Function object? I need to call another method out of that context (another method of that object). public class TestClassThatCalls extends TestClass { private var _context : someClass; public function

[flexcoders] Populating ComboBox from Model/XML

2006-07-21 Thread John Mazzocchi
Hi, newbie question here ... just learning. I'm using Flex 2. There seem to be numerous errors and typos in the Adobe Flex Help files/PDFs and I'm hitting a snag here ... What I'd like to do, to begin with, is to populate a ComboBox from an external XML file. The section in the help files

[flexcoders] Re: Setting a stylesheet property on a TextArea control.

2006-07-21 Thread satrajignesh
Hi there, Even i has a similar issue. Got a patchy workaround. Use TextRange and do manual selection of the text you want and then apply the Style that you want. Jignesh --- In flexcoders@yahoogroups.com, mateo_eastcoast [EMAIL PROTECTED] wrote: Hello, I am trying to assign a new

Re: [flexcoders] Re: Detect if Object exists

2006-07-21 Thread Scotty Scott
Change var selectTab:Container = this.windowTabs.getChildByName(newid);to var selectTab:Container = Container(this.windowTabs.getChildByName(newid));Or var selectTab:Container = this.windowTabs.getChildByName(newid) as Container;Im not sure which syntax is the correct way or what

Re: [flexcoders] Deselecting a Tab ??

2006-07-21 Thread Rich Tretola
Well I took a different approach but here it is: http://www.everythingflex.com/blog/1/2006/07/MultiRowTabs.cfm Rich On 7/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: You can override it, but you can't change the internal _selectedIndex, so it's useless. Found another solution though:

Re: [flexcoders] Flex Pricing question

2006-07-21 Thread Tom Chiverton
On Friday 21 July 2006 06:27, Umesh Garg wrote: What’s the days-limit for trial flex charting? Zero. It has 'trial' stamped on it till you pay up. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP

[flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Dirk Eismann
I finally found some time to finish the TODO/FIXME extension for Flex Builder 2 - thanks to Jean-Luc ;) Please go ahead and give it a try: http://www.richinternet.de/blog/index.cfm?entry=911D4B57-0F0D-5A73-AF6F4 D4D04099757 Dirk. Yahoo! Groups Sponsor

[flexcoders] Thread synchronization and async messages

2006-07-21 Thread m88e24
I don't know how the Flash player operates but I can imagine that it is multithreaded. When using FDS for delivering async messages to the client it is imperative that access to local functions or collections can be synchronized in some way. Let's say I'm iterating over the values in a collection

RE: [flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Dirk Eismann
Watch out for line breaks in the URL! Otherwise just go to http://www.richinternet.de/blog and grab it there. Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Friday, July 21, 2006 2:46 PM To:

Re: [flexcoders] Thread synchronization and async messages

2006-07-21 Thread Ralf Bokelberg
Afaik a running actionscript operation is never interrupted. If you are iterating over a collection and an update comes from the server, the iteration will be finished before the update of the collection. Cheers, Ralf On 7/21/06, m88e24 [EMAIL PROTECTED] wrote: I don't know how the Flash player

[flexcoders] Re: performance issues

2006-07-21 Thread ben.clinkinbeard
--- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: comparing against the old value and if it hasn't changed not doing anything, it may be that it's invalidating too often? A couple of days ago I discovered that this 'event' fires every time the row is scrolled into or out of

Re: [flexcoders] TextSnapshot not working in Flex 2

2006-07-21 Thread JesterXL
TextSnapshot is only for static text, not dynamic or input. - Original Message - From: satrajignesh [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, July 21, 2006 1:23 AM Subject: [flexcoders] TextSnapshot not working in Flex 2 Hi there, I have a TextArea which gets

Re: [flexcoders] Any field types to past pic?

2006-07-21 Thread JesterXL
Want an image stored on the web? mx:Image source=your.jpg / Want an image from the user's hard drive? - upload image - ask server for URL mx:Image source=serverURL.jpg / Want a Camera image? - Camera.get (or whatever it is in ActionScript 3 now) - use the Bitmap object to capture a frame when

Re: [flexcoders] Problem with PopUps with Flash Player 9,0,16,0 ?

2006-07-21 Thread JesterXL
The code is correct. Did you also update your Flex Builder 2 plugin / IDE or just the player? - Original Message - From: david_c_lowe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, July 21, 2006 5:57 AM Subject: [flexcoders] Problem with PopUps with Flash Player

[flexcoders] SWF Volume

2006-07-21 Thread flexnewbie06
Can anyone point me the direction on how to control the volume in my swf, loaded with swfloader? Would I use SoundTransform class? Any suggestions are always appreciated! thanks Jenn Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over.

[flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Doug Hughes
Hi, Ive been trying for about a week to unsubscribe from this list without luck. Ive followed the instructions and replied back to the confirmation email from yahoo. Ive tried writing to yahoos support to get them to remove me. No luck! Someone, please remove me from the list.

[flexcoders] Re: List and ViewStack Problem

2006-07-21 Thread s_hernandez01
Thanks Hilary and Scott, your suggestions worked beautifully! I am so relieved now. Ciao Sal --- In flexcoders@yahoogroups.com, Scotty Scott [EMAIL PROTECTED] wrote: You could also allow binding to take care of everything for you, if you are trying to have the list display the titles of

Re: [flexcoders] SWF Volume

2006-07-21 Thread JesterXL
Bottom of the page there is an example: http://livedocs.macromedia.com/flex/2/langref/flash/media/SoundTransform.html - Original Message - From: flexnewbie06 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, July 21, 2006 9:08 AM Subject: [flexcoders] SWF Volume Can

Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Paul Andrews
- Original Message - From: Doug Hughes To: flexcoders@yahoogroups.com Sent: Friday, July 21, 2006 2:10 PM Subject: [flexcoders] Moderators: Please remove me from the list Hi, I’ve been trying for about a week to unsubscribe from this list

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-21 Thread jeff tapper
I'm running into a similar issue. I can tell you that the height of the dead space is directly related to the header height of the Panel (or title window in your case). To prove this out, try adding headerHeight=100 to the root titleWindow tag. --- In flexcoders@yahoogroups.com, Pan

[flexcoders] flex2: context out of Function

2006-07-21 Thread Roman Protsiuk
Hi, everyone. Is it possible in Flex 2 to get context for some method described by Function object? I need to call another method out of that context (another method of that object). public class TestClassThatCalls extends TestClass { private var _context : someClass; public function

[flexcoders] Flex work in the UK

2006-07-21 Thread jamiebadman
Hi, I've been working with Flex application development for a good while now and am looking for a new role. Can anyone recommend either companies that might be seeking Flex app designers/developers or recruitment agencies that are well placed for such roles, in the UK ? Apologies if this post

Re: [flexcoders] So? What are folks here actually building...?

2006-07-21 Thread Phil Marston
I'm a Learning Technologist at the University of Aberdeen (Scotland) Currently I'm working on a Virtual Museum - it's not 3D or anything though that would be nice in the future :-) it's more like an image gallery, but with object models rather than images. It'll allow students and guest

[flexcoders] Re: Flex work in the UK

2006-07-21 Thread b0b0bb0b
if you dont mind working in scotland, then company I'm working for are looking for more people. check out http://www.inps.co.uk look under the dundee section. if your interested send your CV of to [EMAIL PROTECTED] you'll have to know a bit about java as well. Most of the guys here are doing

[flexcoders] tabbing in flex

2006-07-21 Thread b0b0bb0b
if I have a Vbox with say 10 items in it. from buttons to text boxes, as well as a custom component which I've extended. then when the app loads I tab my way through the app which works fine until it comes to the custom component. it has a tabIndex like the rest of the buttons and text boxes,

[flexcoders] Re: Strange issue with drag and drop between Lists

2006-07-21 Thread gotgoose09
I've submitted a bug report now. --- In flexcoders@yahoogroups.com, jeff tapper [EMAIL PROTECTED] wrote: I'm running into a similar issue. I can tell you that the height of the dead space is directly related to the header height of the Panel (or title window in your case). To prove this out,

Re: [flexcoders] Re: Detect if Object exists

2006-07-21 Thread Nick Collins
Hmm... well Scotty, interestingly enough, this train of thought isn't working... for some reason the condition is always returning true, even when no tabs at all have been created... back to the drawing board I guess. On 7/20/06, Scotty Scott [EMAIL PROTECTED] wrote:

Re: [flexcoders] So? What are folks here actually building...?

2006-07-21 Thread Mike Britton
I'm working on a Flex port of my ARP web log (prototype: http://tinyurl.com/nnt37), and a Flex 2 prototyping tool that links devnotes to application states (prototype: http://tinyurl.com/nk7ob). The web log will be built in ARP, the devnotes in Cairngorm. Mike Yahoo!

[flexcoders] Re: ComboBox instance method open() doesn't work first time when in particular state

2006-07-21 Thread Sergey Kovalyov
I found that myComboBox is not initialized when onEditStateEnter() is running, so I could use workaround like: protected function onEditStateEnter() : void { if (myComboBox.initialized) { onEditStateInitialize(); } else { myComboBox.addEventListener(FlexEvent.INITIALIZE, onEditStateInitialize); }

[flexcoders] flex purchase - source without media/download

2006-07-21 Thread Pan Troglodytes
I just realized something that might be a problem. We're buying Flex w/ Charting from our reseller. I told him we don't need the media because all I need it the license key to unlock the trial. But I just realized the trial doesn't come with source for charting. Is there some way to download

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Doug Hughes
Im not subscribed with a yahoo address. How can I log in? What would I use as the password? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Andrews Sent: Friday, July 21, 2006 9:27 AM To: flexcoders@yahoogroups.com Subject: SPAM-LOW: Re:

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Douglas Knudsen
Doug I see this at the bottom of my emails from flexcodersTo unsubscribe from this group, send an email to: [EMAIL PROTECTED]DougOn 7/21/06, Doug Hughes [EMAIL PROTECTED] wrote: I'm not subscribed with a yahoo address. How can I log in? What would I use as the password?

Re: [flexcoders] performance issues

2006-07-21 Thread Pan Troglodytes
Yeah, I've tried that. Here's the the actual full code I'm using: override public function set data(value:Object):void { var dirty:Boolean = (value != null) (data != value); super.data = ""> if (dirty) { var n:Number = data[DataGridListData(listData).dataField]; if (n 0) setStyle(color,

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
I don't think there is any way you can subscribe without having a yahoo address. You probably just told it to send them to your alternate address. Just go to http://groups.yahoo.com/group/flexcoders/ and click Sign In. Then click Forget your ID or password?. Fill out the info (hopefully you

[flexcoders] Re: SWF Volume

2006-07-21 Thread flexnewbie06
I did see that example, but got confused because the sound in my swf is included in the swf not seperate. --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Bottom of the page there is an example: http://livedocs.macromedia.com/flex/2/langref/flash/media/SoundTransfo

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Paul Andrews
Hi Doug, I guess you'll have to wait for the moderators to kick in. Maybe it's a fate thing and you are destined to be a flex coder... Hope you get sorted out soon. You can always filter the flexcoders list for the moment.. Paul - Original Message - From: Doug Hughes

Re: [flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Weyert de Boer
Nice, this plugin looks really nice :) Yahoo! Groups Sponsor ~-- Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM

[flexcoders] Looking for FLEX/AS3/Java coders

2006-07-21 Thread geminy555
Hi! We are looking for Flex and Java coders (freelancers). We have an innovative project related with speech technologies (TTS/ASR) and we need to develop a Flash 9 web client for a commercial speech server. Don't hesitate to contact us for more details. Thank in advance, Franky

[flexcoders] Re: Populating ComboBox from Model/XML

2006-07-21 Thread ericonanson
Hi, here is something that works, if you know cold fusion then create a cfc that has the data you want and call it from a webservice, other wise populate an xml file and call that. Step one; Create xml file - name it mydata.xml ?xml version=1.0 encoding=UTF-8? obj item

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Dirk Eismann
Actually, you can subscribe without having an yahoo ID: http://www.flexcoders.org/index.html Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pan TroglodytesSent: Friday, July 21, 2006 4:48 PMTo: flexcoders@yahoogroups.comSubject: Re:

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Doug Hughes
Woo hoo! This was spot-on. Thanks a lot! Now I can reclaim my inbox! Doug From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan Troglodytes Sent: Friday, July 21, 2006 10:48 AM To: flexcoders@yahoogroups.com Subject: Re: SPAM-LOW: Re:

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Doug Hughes
Well, amusingly, the more I try to get off the list the more I actually work with Flex. I bet as soon as Im off I have some question that could only be answered here. Doug From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Andrews Sent:

RE: [Junk E-Mail - LOW] RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Shannon Hicks
Doug- Stay on the list. Just create a rule in your email client to move flexcoders stuff to a folder other than your inbox :) Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug HughesSent: Friday, July 21, 2006 10:11 AMTo:

RE: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Doug Hughes
Ive followed these instructions about 20 times. Seriously. Yahoo then sends a confirmation email. You need to reply to it. Ive done that too. It has no impact. Doug From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Douglas Knudsen Sent:

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Paul Andrews
Well, in that case why you would unsubscribe is beyond me. You can just filter the flexcoder stuff into a seperate folder - always there as a reference if need be and you might see something interesting if you dip in. Paul - Original Message - From: Doug Hughes To:

Re: [flexcoders] TODO/FIXME extension for Flex Builder 2

2006-07-21 Thread Jeremy Lu
hi Dirk, Thanks for the great plugin.Btw, next time you can try tinyurl.com to shorten the url, the link would looks like this: http://tinyurl.com/l4m33Jeremy.On 7/21/06, Weyert de Boer [EMAIL PROTECTED] wrote: Nice, this plugin looks really nice :)

Re: [flexcoders] flex purchase - source without media/download

2006-07-21 Thread Jeremy Lu
The source for charting is *indeed* there, after you filled in the serial number, it will be extracted from the charting.jar to framework folder.Jeremy.On 7/21/06, Pan Troglodytes [EMAIL PROTECTED] wrote: I just realized something that might be a problem.

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Tom Chiverton
On Friday 21 July 2006 15:48, Pan Troglodytes wrote: I don't think there is any way you can subscribe without having a yahoo address. I've not got one. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells

[flexcoders] where do I get a good countries list

2006-07-21 Thread hank williams
Many websites that require registration ask for a country and the country is in a popup. Does anybody know a good politically correct source for this list. For example I went to yahoo and they have some kind of list but have Yugoslavia (Serbia and Montenegro). This cant be the right way to

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Douglas Knudsen
holy kow! They need a real framewaork then, eh?DKOn 7/21/06, Doug Hughes [EMAIL PROTECTED] wrote: I've followed these instructions about 20 times. Seriously. Yahoo then sends a confirmation email. You need to reply to it. I've done that too. It has no impact. Doug

RE: [flexcoders] Data Paging without FDS

2006-07-21 Thread Kelly Birr
What mid-tier technology do you use? - Kelly -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nigasak Sent: Friday, July 21, 2006 2:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Data Paging without FDS Is it posible Data Paging

[flexcoders] creationPolicy=all for view states?

2006-07-21 Thread jeff tapper
Is there an equivilent to creationPolicy=all for view states? I'd love to have the ability to have all the child elements in a view automatically created in the few times when i need them to be, much like we can do with creationPolicy for viewStacks Yahoo! Groups

[flexcoders] Re: creationPolicy=all for view states?

2006-07-21 Thread jeff tapper
nevermind, i found it. mx:AddChild position=lastChild creationPolicy=all --- In flexcoders@yahoogroups.com, jeff tapper [EMAIL PROTECTED] wrote: Is there an equivilent to creationPolicy=all for view states? I'd love to have the ability to have all the child elements in a view

Re: [flexcoders] any way to pre-render a screen so when you move it onto the screen it doesnt hesitate

2006-07-21 Thread Anatole Tartakovsky
Sounds more like you have communications issue (based on the behavior on re-enter)- some of the resources are not embedded. If you do have everything embedded, we break apps in sets ofself-initialized modules - essentially to give tou chance to prepare any resources for your screen within load

Re: [flexcoders] any way to pre-render a screen so when you move it onto the screen it doesnt hesitate

2006-07-21 Thread hank williams
This is a simple screen. It only has text. The font *is* embedded because otherwise it would draw in the wrong typeface. It is a very non standard typeface, which is why it is embedded.I dont know what you mean by we break apps in sets ofself-initialized modules What is a self-initialized

[flexcoders] undelete/move to trash options for builder

2006-07-21 Thread Pan Troglodytes
Is it possible to tell Flex Builder to do file deletions the kind and gentle way by moving them to the trash?Second, is it possible to undelete items from Flex Builder, or does it actually use a filesystem delete call? Almost got bit by this just now and would like a way to avoid shooting

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
Sorry, realized I missed this message.Just FYI, I tested signing up totally bypassing the yahoo thing. Then I sent the unsubscribe for that address. I never got a confirmation email or anything, it just unsubscribed me. Are you positive it didn't use a yahoo address to subscribe you? When I was

Re: [flexcoders] flex purchase - source without media/download

2006-07-21 Thread Pan Troglodytes
Cool, I thought it might be something that clever but had missed it being mentioned on the group. Gracias!On 7/21/06, Jeremy Lu [EMAIL PROTECTED] wrote: The source for charting is *indeed* there, after you filled in the serial number, it will be extracted from

[flexcoders] better to use mxml or actionscript for new component?

2006-07-21 Thread Pan Troglodytes
Just curious, is it actually more efficient to use AS instead of MXML (or vice versa) when deriving new components? I'm talking about where it's just as easy to code it either way. I'm just wondering about how the guts of the compiler work. For example, take these two:package nes { import

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
Cool, didn't know that! I'm switching over to directly use my gmail address instead of having the yahoo bounce-through.Doug - while you're waiting for the moderators, one last attempt. Did you send an email to [EMAIL PROTECTED] from the email address you're subscribed from? I tried subscribing

RE: [flexcoders] better to use mxml or actionscript for new component?

2006-07-21 Thread Sho Kuwamoto
My guess is that the AS version is more efficient, although I haven't checked this. To see what the compiler is doing, you can use the -keep flag on the compiler, which will allow you to see the generated ActionScript for any particular MXML file. -Sho From:

RE: [flexcoders] undelete/move to trash options for builder

2006-07-21 Thread Sho Kuwamoto
While there is no way to get Flex Builder to delete things the "kind and gentle" way, there is a really great workaround. Right click on the project and choose "Restore from local history". Eclipse (and therefore Flex Builder) keeps a local version of all changes you have made, so you

[flexcoders] Re: Rotating VSlider

2006-07-21 Thread dirtmediaworld
I'm having a similar problem with just changing the width and height of the slider thumb. I tried extending the mx.skins.halo.SliderThumbSkin and setting the width and height values in the constructor like this: package com.mydomain.view.skins{import mx.skins.halo.SliderThumbSkin;/*** The skin

Re: SPAM-LOW: Re: [flexcoders] Moderators: Please remove me from the list

2006-07-21 Thread Pan Troglodytes
I think you're making Doug H. cry.;)On 7/21/06, Doug Lowder [EMAIL PROTECTED] wrote: If you're signed in, you can click the My Groups link at the top right, then click Edit My Groups link on the left above the group list, and choose No Email for the message

[flexcoders] Flash 9/AS3

2006-07-21 Thread geminy555
I'm interested in connecting a Flash 9 /AS3 app to a speech recognition engine. That is sending audio from the client computer to a SR engine at the server and creating the response in flash. Do you know of any links source or documentation that would be helpful? Could I capture the microphone

Re: [flexcoders] DateField cellRenderer not working with date as String

2006-07-21 Thread Ralf Bokelberg
Maybe it needs MM/TT/ ? Cheers,Ralf. On 7/21/06, John Buhl [EMAIL PROTECTED] wrote: I stillget this error when I select the date, tab off of the cell, and return back to that cell. Type Coercion failed: cannot convert 04/13/2005 to Date Is there something I am missing here? Here is my

[flexcoders] IE Only: Error #2032 (Flex 2.0)

2006-07-21 Thread dadrobson
I have a complete app that is currently working fine when loaded in Firefox. However, in IE, some (but not all) HTTPService requests return the following error: Error: [IOErrorEvent type=ioError bubbles=false cancelable=false evenPhase=2 text=Error #2032: Stream Error. URL:

[flexcoders] Re: How to create a number Pad using repeater

2006-07-21 Thread Doug Lowder
There's a 3x3 example right in the docs. Here. http://livedocs.macromedia.com/flex/2/langref/mx/core/Repeater.html#includeExamplesSummary --- In flexcoders@yahoogroups.com, "junhufr" [EMAIL PROTECTED] wrote: Hello, I'd like to create a 3x4 Number Pad(10 numbers with 2 letters) by using

[flexcoders] tracing into SDK

2006-07-21 Thread Pan Troglodytes
Is there no way to trace into the SDK libraries, like DataGrid?-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] clean up on aisle three - formatting request for Adobe

2006-07-21 Thread JesterXL
Remind me to have you do a code review before I post code, lol! - Original Message - From: Pan Troglodytes To: flexcoders Sent: Friday, July 21, 2006 12:53 PM Subject: [flexcoders] clean up on aisle three - formatting request for Adobe At some point, it would be nice if someone

RE: [flexcoders] clean up on aisle three - formatting request for Adobe

2006-07-21 Thread Peter Farland
The convention is 4 spaces for an indent, tabs are converted to 4 spaces. I imagine everyone uses fixed-width fonts and Eclipse doesnt show whitespace characters (that I know of, to-date) so code formatting like this must have just slipped through the cracks (in my experience this is

Re: [flexcoders] Flex Pricing question

2006-07-21 Thread Nick Collins
the Eclipse plugin is the same cost as Flex Builder. As far as that goes, the Eclipse Plugin IS Flexbuilder, as Flex Builder is really eclipse streamlined and with a different splash screen. In fact, it's the same installer and you choose which you want to install. As far as Flex Data Services,

[flexcoders] Architectural questions RE: Cairngorm 2

2006-07-21 Thread thunderstumpgesatwork
Hi all. I've only just started using Cairngorm in my application, and already it's helping to clean up a lot of code. Many cudos to all the contributors! I've been reading and soaking up every bit of documentation and Flexcoders posts I can. A couple of arshitectural questions have come up as to

[flexcoders] AMF serialization of floats (REPOST)

2006-07-21 Thread Mike_Robinson_98
My original post seems to have gotten removed, so I am posting again with hopes someone has experience with this issue. I am transfering float values from Java DTOs to corresponding AS objects using both FDS and remote objects. The Java float values have a precision of 4 decimal places (verified

[flexcoders] QuickDateFormatter - how can I make it MXML enabled?

2006-07-21 Thread ben.clinkinbeard
Hello all, I have created and documented a class that greatly simplifies the process of converting a date string to an alternately formatted date string. The current incarnation is described here: http://www.returnundefined.com/2006/07/quickdateformatter-efficient-date-formatting-in-as3/, but I am

Re: [flexcoders] Re: Detect if Object exists

2006-07-21 Thread Scotty Scott
Hey Nick,I used this as a test case its stripped down from what you are doing but maybe it will point you in the right direction.?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml layout=vertical creationComplete=init() mx:Script ![CDATA[ import

  1   2   >