RE: [flexcoders] Re: Looking to tweak a List control's drop indicator

2009-01-27 Thread Alex Harui
If you want to do context sensitive text messages, consider tooltip-like dropouts instead of resizing renderers From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Todd Sent: Tuesday, January 27, 2009 9:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] Birthday Please

2009-01-27 Thread Ashish Verma
Hello I am creating a birthday calendar for myself. Can you please click on the link below and enter your birthday for me? http://www.birthdayalarm.com/bd2/84448129a626903632b1454856004c699364312d1386 Ashish

[flexcoders] Re: Looking to tweak a List control's drop indicator

2009-01-27 Thread Todd
I like your last idea of adjusting the padding on top of the item renderers. OR maybe I could just affect the size of the item renderer before and after, squishing them a little as to not cascade the movement of controls across every item renderer. I was hoping to also put some form of delay in i

RE: [flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Alex Harui
An ArrayCollection is a ListCollectionView which is a view of a source data set (in this case, an Array). The source data set is not modified by sorting and filtering, so resetting the sort or filter function restores the view to the full original data set. When a sort or filter is applied, a

RE: [flexcoders] Re: Looking to tweak a List control's drop indicator

2009-01-27 Thread Alex Harui
I see, I didn't understand that you want to alter the drop-zone. IIRC, altering renderer size/position on rollover has a difficulty rating of 8 out of 10 if not higher. The trick is to not have the list change its renderer mapping, and doing that on rollover is hard because the resizing affect

Re: [flexcoders] flex date and timezone

2009-01-27 Thread Paul Hastings
Sam Lai wrote: > Doubt it - I'm not sure if those strings you have are the standard > strings anyway. There might be a web service out there you could call if you have a city name or a geographic location you can get tz info from geonames.org ala: http://www.sustainablegis.com/projects/tz/tzMap/

Re: [flexcoders] flex date and timezone

2009-01-27 Thread Sam Lai
Doubt it - I'm not sure if those strings you have are the standard strings anyway. There might be a web service out there you could call though to resolve them - maybe the source of those timezone strings might have something? 2009/1/28 coder3 : > > Right. I only have the string. In java, there is

[flexcoders] Re: Looking to tweak a List control's drop indicator

2009-01-27 Thread Todd
What I need is something that the dropIndicator, that can actually take up space. Right now, I can draw whatever I want on the dropIndicator, but it bleeds over the Items. I'd prefer it to have 10 pixels of padding on the top and bottom, so it "pushes" the Item before and after away from the drop

re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
Don't understand the question. Please educate me :-) From: "Amy" Sent: Tuesday, January 27, 2009 3:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Setting data from web service to ArrayCollection. --- In flexcoders@yahoogroups.com, "Wally

RE: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
I am using mx:WebService and I have the resultFormat set to "object". From: "Tracy Spratt" Sent: Tuesday, January 27, 2009 1:20 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Setting data from web service to ArrayCollection. I do not k

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Jason
> > Just set the filterFunction to null and call refresh on the collection. > But won't that clear our other things that are filtered? Meaning if I have 3 of 9 checkboxes selected - I don't want to reset them all - perhaps I should just check each checkbox value and set it to filter whate

Re: [flexcoders] Air upload -> File IO Error -> port issue

2009-01-27 Thread Jake Churchill
Looks like the server might not be set to listen on port 80 if it's not working in the browser either. It is possible to do port forwarding at the domain level so maybe port 80 is somewhere being forwarded and is actually hitting another port on the server. If that's not the case then you've

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Jason" wrote: > > Tracy, > > Using a filter function right? - thanks! Yeah, that's what I was > looking for. I'll try that out and post back here if I have > questions. However, I am wondering, does it permanently filter it or > can I preserve the data fo

[flexcoders] Air upload -> File IO Error -> port issue

2009-01-27 Thread moyosaned
While uploading a file with File.upload I'm getting a 400 bad request. Now sniffing the activity, it show it's going to www.myserver.com:80/upload.php Now throwing this (www.myserver.com:80/upload.php) in the browser gives a not found and using www.myserver.com/upload.php will give me the feed

[flexcoders] Air upload -> File IO Error -> port issue

2009-01-27 Thread moyosaned
While uploading a file with File.upload I'm getting a 400 bad request. Now sniffing the activity, it show it's going to www.myserver.com:80/upload.php Now throwing this (www.myserver.com:80/upload.php) in the browser gives a not found and using www.myserver.com/upload.php will give me the feed

[flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I can then set to an ArrayCollection that I can use? > > > > > > > Select *

RE: [flexcoders] Looking to tweak a List control's drop indicator

2009-01-27 Thread Alex Harui
The dropIndicator is a simple line showing where the drop will go. The dragProxy shows a dragImage that is handed into DragManager that shows an image of what is being dragged. In theory, you can replace the dragImage with a fancier one that changes somehow. From: flexcoders@yahoogroups.com [m

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Jason
Tracy, Using a filter function right? - thanks! Yeah, that's what I was looking for. I'll try that out and post back here if I have questions. However, I am wondering, does it permanently filter it or can I preserve the data for when I need to "un-filter" the arrayCollection? How would you

RE: [flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Alex Harui
Filter function? From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason Sent: Tuesday, January 27, 2009 2:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Best way to toggle elements in ArrayCollections > Rather than modify the dataset, you may be

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Jason
> Rather than modify the dataset, you may be able to use a checkbox event > to trigger the visibility change of your display component. Yeah, as I mentioned, thats what I tried to do, but unfortunately, I found out the component I am using does not allow access to individual display list items

RE: [flexcoders] flex date and timezone

2009-01-27 Thread coder3
Right. I only have the string. In java, there is a TimeZone class to handle it. is there something similar in Flex? Ryan Graham-3 wrote: > > > If you have access to the GMT offsets, sure. Otherwise, if you have just > the strings, I don't see an easy way... > > > > HTH, > > Ryan > >

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Guy Morton
Hi Doug I've been working with web technologies since 1994, so it's not like I don't know how this stuff works. I didn't say that web standards committees are good at finishing specifications, or resolving issues in a timely way. There are many competing interests involved in most of them

RE: [flexcoders] flex date and timezone

2009-01-27 Thread Ryan Graham
If you have access to the GMT offsets, sure. Otherwise, if you have just the strings, I don't see an easy way... HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of coder3 Sent: Tuesday, January 27, 2009 3:13 PM To: flexcoders@yahoogroups.com Subjec

RE: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Tracy Spratt
Been there. I'm just being sure that I haven't missed something myself. mx_internal is a bit dangerous of course. Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

[flexcoders] flex date and timezone

2009-01-27 Thread coder3
Hi All i have 3 timezone strings, for example, "America/Thule", "Indian/Maldives", and "Europe/Luxembourg". is there a way to sort them from east to west? thanks!! c -- View this message in context: http://www.nabble.com/flex-date-and-timezone-tp21695609p21695609.html Sent from the FlexCoders

[flexcoders] x-ms-asf http stream in air

2009-01-27 Thread nailssun
I have to display a video that delivers x-ms-asf stream via http. Can I do that inside an air application? If yes what would be an ideal approach? Thx

[flexcoders] Re: How to compile multiple modules with mxmlc ant task

2009-01-27 Thread aejaz_98
Thanks a lot. I was thinking something along those lines but was hoping that it would be possible to specify multiple files somehow. Aejaz --- In flexcoders@yahoogroups.com, Maciek Sakrejda wrote: > > Refactor your build.xml to pass the module mxml target as an ant > property, and call this from

Re: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Adrian Williams
Hi Tracy... Ummm.epic brain fart fail? Can't see the forest for the trees? Out of the 23,598 methods...we remembered all but that one :-) Adrian Tracy Spratt wrote: Any reason you are not using the List.calculateDropIndex() method? Tracy Spratt Lariat Services Flex d

RE: [flexcoders] How to assign html tag to text property

2009-01-27 Thread Ryan Graham
Not sure what you are trying to do. If you want the html rendered in the text area, set the htmlText property: If you want to actually display the markup as a string, set the text property:

RE: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Tracy Spratt
Any reason you are not using the List.calculateDropIndex() method? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Adrian Williams Sent: Tuesday, January 27

Re: [flexcoders] How to set LCDS development enviroment in Eclipse?

2009-01-27 Thread Vivian Richard
also http://coenraets.org/blog/category/lcds/ On Tue, Jan 27, 2009 at 1:39 PM, Vivian Richard wrote: > check this link: > > http://coenraets.org/downloads/max2008/flex-dataservices-tutorial.pdf > > > > > > On Tue, Jan 27, 2009 at 1:25 PM, markflex2007 wrote: >> Hi, >> >> I try to u

[flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread valdhor
This tutorial will probably help: http://tutorial6.flexcf.com/ NB. I don't use coldfusion - I use PHP with WebORB. --- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I c

Re: [flexcoders] How to set LCDS development enviroment in Eclipse?

2009-01-27 Thread Vivian Richard
check this link: http://coenraets.org/downloads/max2008/flex-dataservices-tutorial.pdf On Tue, Jan 27, 2009 at 1:25 PM, markflex2007 wrote: > Hi, > > I try to use Eclipse to develop both Flex and Java codes and deploy > them to Tomcat 6 automatically. > > Please give me a idea. > > Tha

[flexcoders] Single src creating multi SWF modules in Flex using Maven

2009-01-27 Thread yoshilo
Hello, I currently have a project that has multiple modules under one source, This project compiles fine under Flex Builder. The application SWF and module SWF are behaving correctly. However, I am struggling with Maven, since Maven I am not able to create a module SWF file using net.israfil.m

RE: [flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Tracy Spratt
How about filtering the ArrayCollection? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mike Sent: Tuesday, January 27, 2009 4:32 PM To: flexcoders@yahoogr

Re: [flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread Adrian Williams
Hi, We handle something very similar to this, and although we don't deny a drop based on the index, we use the index to persist the drop location in the database...the same logic applies. We are using this on an ADG and hence my example below: You could grab the internal targetGrids dropDat

RE: [flexcoders] Flex and asSQL - Crossdomain issue?

2009-01-27 Thread Tracy Spratt
The crossdomain file goes in the root of the server serving the *data*. So if you go to a browser and type in: http://gauravt-xp:3306 /crossdomain.xml, you should see your crossdomain file in the browser. If you are using WebService protocol, there are other settings t

[flexcoders] Re: Best way to toggle elements in ArrayCollections

2009-01-27 Thread Mike
Jason, I'm doing something similar with checkboxes and the DataGrid. Are you able to turn the visibility of your component on/off ? Rather than modify the dataset, you may be able to use a checkbox event to trigger the visibility change of your display component. ~Mike --- In flexcoders@yaho

[flexcoders] Re: Advanced DataGrid sorting

2009-01-27 Thread Denis
--- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, "Denis" wrote: > > > > Hi there, > > > > I need to sort the advanced grid but I want the sort apply only > > certain nodes of data. For example Group 0 contains 10 items which it > > makes sense to sort whi

[flexcoders] external swf inside an AIR HTML component "right click" issues.

2009-01-27 Thread zyzzx00_99
I have the strangest AIR issue that I've never seen. Right clicking on a TextInput sets focus to the TextInput directly above the component. (There are two 'stages' involved, and it is a javascript + HTML component issue). I'm using SDK 3.0.2.214193 (I'm sure there's an update, but all of our de

[flexcoders] Re: OlapDataGrid like headers using AdvancedDataGrid

2009-01-27 Thread tntomek
--- In flexcoders@yahoogroups.com, "tntomek" wrote: > > Is it possible to have 'split' or 'colspan'-ed headers without having > to resort to serious column rework? > > Something like: > http://livedocs.adobe.com/flex/3/html/help.html?content=olapdatagrid_2.html > > I've tried and tried to find a

[flexcoders] How to set LCDS development enviroment in Eclipse?

2009-01-27 Thread markflex2007
Hi, I try to use Eclipse to develop both Flex and Java codes and deploy them to Tomcat 6 automatically. Please give me a idea. Thanks a lot Mark

[flexcoders] How to assign html tag to text property

2009-01-27 Thread markflex2007
Hi, I try the following code but I get error,please give me a idea to fix it. Thanks Mark Hello ">

RE: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Tracy Spratt
I do not know Cold Fusion, but... Which RPC protocol are you actually using? Have you set resultFormat? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wa

[flexcoders] Re: Advanced DataGrid sorting

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Denis" wrote: > > Hi there, > > I need to sort the advanced grid but I want the sort apply only > certain nodes of data. For example Group 0 contains 10 items which it > makes sense to sort while Group 1 contain items which should always > remain in the same

[flexcoders] DataGrid Drop Deny based on dropIndex

2009-01-27 Thread park96
Anyone have an example of how to deny a drop based on the drop index? The problem I'm facing is that even though my dragEnter event handler doesn't call the DragManager.acceptDragDrop(UIComponent), it still allows me to drop it.

Re: [flexcoders] Flex 3.3

2009-01-27 Thread Maciek Sakrejda
Any chance the charts will be separated from FB? FB is a fine tool, but for, say, a build system, this coupling just doesn't make sense. -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com -Original Message- From: Matt Chotin Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoog

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
Ok, lets take this the other way. Here is my simple CFC. How can I modify this to return a result to Flex to which I can then set to an ArrayCollection that I can use? Select * FROM users WHERE uniqname = AND password =

Re: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Vivian Richard
Once it is released, if we download the current FB will it come with 3.3? On Tue, Jan 27, 2009 at 10:05 AM, Matt Chotin wrote: > We haven't shipped yet :-) still a few weeks away. > > On 1/27/09 10:03 AM, "Andres Serral" wrote: > > I´cant found the releases notes. > > __

Re: [flexcoders] Re: Anyone using Subclipse 1.4.x in flexbuilder 3 ?

2009-01-27 Thread Rob Kunkle
I had some trouble when I first installed subclipse 1.5 on my macbook. I had to upgrade the svn client on my machine and everything works fine now. On Jan 27, 2009, at 6:26 AM, fourctv wrote: A few goodies over 1.2: - it defaults new objects as selected when committing - no need to update

Re: [flexcoders] How to compile multiple modules with mxmlc ant task

2009-01-27 Thread Maciek Sakrejda
Refactor your build.xml to pass the module mxml target as an ant property, and call this from another target. E.g., http://www.truviso.com -Original Message- From: aejaz_98 Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Flex and asSQL - Crossdomain issue?

2009-01-27 Thread GeeTee
> The cross domain works differently with player 9 and player 10. I am using Flash Player 10 plugin. The error dialog that shows up says "Error #2044: Unhandled ioError:. text=Error #2048: Security sandbox violation: http://gauravt-xp:8080/MonitoringCompleteResults/OLS_Monitoring_CompleteResults.

Re: [flexcoders] Re: Modules

2009-01-27 Thread Rob Kunkle
Hi again Lorenzo - Sure, you can do that. I'm still learning to work with modules, so I'm not sure what would be the BEST way to do it, but one thing you could try is to have a custom panel component at the application level. Inside of the panel component, you could have a ModuleLoader com

re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
I get this error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at index/loginHandler() at index/___index_Operation3_result() at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at

[flexcoders] Best way to toggle elements in ArrayCollections

2009-01-27 Thread Merrill, Jason
So in my Flex 3 project I have an ArrayCollection, like this: [Bindable] private var myDataProvider:ArrayCollection = new ArrayCollection( [ {country:"Apple", quantity:5}, {country:"Pear", quantity:3}, {country:"Banana", quantity:7},

[flexcoders] Re: Flex and asSQL - Crossdomain issue?

2009-01-27 Thread ilikeflex
Make sure which player you are using? The cross domain works differently with player 9 and player 10. --- In flexcoders@yahoogroups.com, "Grant Davies" wrote: > > I would suspect the same, add a crossdomain in the root of your site (or > you can use a policy element to put it somewhere else but

[flexcoders] Re: Flex and asSQL - Crossdomain issue?

2009-01-27 Thread ilikeflex
Make sure which player you are using? The cross domain works differently with player 9 and player 10. --- In flexcoders@yahoogroups.com, "Grant Davies" wrote: > > I would suspect the same, add a crossdomain in the root of your site (or > you can use a policy element to put it somewhere else but

RE: [flexcoders] Flex and asSQL - Crossdomain issue?

2009-01-27 Thread Grant Davies
I would suspect the same, add a crossdomain in the root of your site (or you can use a policy element to put it somewhere else but more fiddly) In your cross domain add the 'all ports', if you are just 'testing' you can leave it wide open : It should be accessible via http://ga

[flexcoders] Flex and asSQL - Crossdomain issue?

2009-01-27 Thread GeeTee
Hi everyone, Yesterday I developed my first flex 3 app and placed the "Release build" in the webapps folder of tomcat (5.5.26). The application is quite simple and just needs to populate the datagrid with the data in MySQL (which is on the same machine on port 3306). I have used asSQL to communic

[flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > > I seem to be missing something. I tried the suggested way: > > public function loginHandler(e:ResultEvent):void { > userData = e.result as ArrayCollection; > var object:Object = userData.

[flexcoders] Re: Question about popup

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > Here is my code: > > var c:Classes = new Classes(); > var popupWindow:TitleWindow = new TitleWindow; > this line works fine: > popupWindow = c.showPopupWindow(DisplayObject(this), saveAsPriceList); > var saveAs:saveAsPriceList = n

[flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > I moved my CFC and database to my localhost so I can debug the webservice output and see it. I am a wee bit confused. The results panel is saying something like this: > > e --> result --> source --> [0] --> firstName (etc) > > How do

[flexcoders] How to compile multiple modules with mxmlc ant task

2009-01-27 Thread aejaz_98
Hi, Is it possible to give multiple mxml files under the file property of mxmlc task ? Without this my build.xml is becoming very big due to repetition of many mxmlc sections, the only difference being the value of the file property. Thanks, Aejaz

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Cole Joplin
Here, here! Doug has it exactly right. Innovation flies in the face of standards, and by its success, can become a kind of standard, even if it's not "the" standard. Lots of standards become that way after the fact. Even when the success is, well, questionable, it can become a standard after t

Re: [flexcoders] Go and Vote for beter Flex builder! (Cache Buster)

2009-01-27 Thread Ralf Bokelberg
ant.apache.org is a good place to start. The replace task allows you to replace strings in a file. The buildNumber task gives you a updated buildNumber per build. I looked into it, and i start to think that Cato has a valid point though. It is not easy and it is not as perfect as a Flex Builder int

[flexcoders] Advanced DataGrid sorting

2009-01-27 Thread Denis
Hi there, I need to sort the advanced grid but I want the sort apply only certain nodes of data. For example Group 0 contains 10 items which it makes sense to sort while Group 1 contain items which should always remain in the same sequence. The sequence should not even change if the sort chang

[flexcoders] OlapDataGrid like headers using ADG

2009-01-27 Thread tntomek
Is it possible to have 'split' or 'colspan'-ed headers without having to resort to serious column rework? Something like: http://livedocs.adobe.com/flex/3/html/help.html?content=olapdatagrid_2.html I've tried and tried to find any resources for this but all seem to point to Alex's Split Column ex

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread danton chin
Just so no one misses it that meeting is tomorrow! On Tue, Jan 27, 2009 at 12:17 PM, Sebastien ARBOGAST < sebastien.arbog...@gmail.com> wrote: > > Now the last thing I have to say is, if some of you are not happy with the > way Adobe deals with openness, there is a webmeeting next week where you

Re: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Matt Chotin
We haven't shipped yet :-) still a few weeks away. On 1/27/09 10:03 AM, "Andres Serral" wrote: I´cant found the releases notes. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Matt Chotin Sent: Tuesday, January 27, 2009 3

RE: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Andres Serral
I´cant found the releases notes. _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Matt Chotin Sent: Tuesday, January 27, 2009 3:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 3.3 Correct On 1/27/09 9:44 AM, "securenetfreedo

Re: [flexcoders] Re: Flex 3.3

2009-01-27 Thread Matt Chotin
Correct On 1/27/09 9:44 AM, "securenetfreedom" wrote: So, 3.3 will *not* apply to eclipse FB plugin? Jeff --- In flexcoders@yahoogroups.com , Matt Chotin wrote: > > It's all bug fixes, and not a huge number of them. We're not going to have an associ

[flexcoders] Re: Flex 3.3

2009-01-27 Thread securenetfreedom
So, 3.3 will *not* apply to eclipse FB plugin? Jeff --- In flexcoders@yahoogroups.com, Matt Chotin wrote: > > It's all bug fixes, and not a huge number of them. We're not going to have an associated Flex Builder release either, just the SDK (though we'll get the charts updated). > > Matt > >

Re: [flexcoders] Flex 3.3

2009-01-27 Thread Matt Chotin
Yes, it will be a separate download. We're also going to make this strategy better in Flex 4. Matt On 1/27/09 1:29 AM, "Tom Chiverton" wrote: On Monday 26 Jan 2009, Matt Chotin wrote: > It's all bug fixes, and not a huge number of them. We're not going to have > an associated Flex Build

[flexcoders] Re: html text | TextArea | tag

2009-01-27 Thread ilikeflex
Hi Alex Thanks for good pointer. I will explore this and i think this should work. Great ilikeflex --- In flexcoders@yahoogroups.com, "oneworld95" wrote: > > Look on this page: > http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#htm lText > > The tag and its attributes sho

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
I seem to be missing something. I tried the suggested way: public function loginHandler(e:ResultEvent):void { userData = e.result as ArrayCollection; var object:Object = userData.getItemAt(0) ; var firstName:String = object["FIRSTNAM

Re: [flexcoders] Re: ComboBox selectedIndex revisited

2009-01-27 Thread Richard Rodseth
I don't know why you say there's a lot of stuff happening. It's just using binding (in the form of a binding function) to set an initial selection. Seems completely legitimate to me. The fact that it's a function rather than a direct reference is because of the well-known ComboBox limitations with

Re: [flexcoders] Go and Vote for beter Flex builder! (Cache Buster)

2009-01-27 Thread Alan K
Anyone have any suggestions of good places to learn about using ANT, particularly in context of Flex's compiler? Alan >I'm not sure if it is necessary to change FlexBuilder to do this. Have >you tried a ant script running as a builder before your flex build.

[flexcoders] Re: html text | TextArea | tag

2009-01-27 Thread oneworld95
Look on this page: http://livedocs.adobe.com/flex/3/langref/flash/text/TextField.html#htmlText The tag and its attributes should get you what you need. Look at the indent, leftmargin, etc. to place your nested items where you need them. And get rid of the tags. - Alex --- In flexcoders@yahoog

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Sebastien ARBOGAST
There's not much to add.But I'm afraid that's precisely what frightens standards' zealots: things change too fast, and it's reassuring to have standards slow things down a little bit sometimes. Hide your fear with a little standard/openness confusion, some big-papa-mama-sucky-corporation FUD, and y

[flexcoders] Re: html text | TextArea | tag

2009-01-27 Thread ilikeflex
Hi Alex Thanks for the information. Is their any workaround .If you want to display such list. Thanks ilikeflex --- In flexcoders@yahoogroups.com, "oneworld95" wrote: > > The htmlText in the TextArea control supports only a limited number of > HTML tags; take a look at this blog post for more

Re: [flexcoders] Re: How to get data from many rows in DataGrid?

2009-01-27 Thread Howard Fore
It's an array of the objects from the dataprovider. No demo required. Try putting the code in, then using the debugger to stop execution at that line so you can examine it more closely. On Mon, Jan 26, 2009 at 11:26 PM, markflex2007 wrote: > > public function get selectedItems():Array > > what t

[flexcoders] Re: Modules

2009-01-27 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, Rob Kunkle wrote: > > Hi Lorenzo - > > What you want to do is use the "ready" event of the module loader to > add event listeners to your module. So in your main application, you > want something like this: > > > > private function moduleRea

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Hervé Crespel
Thank you very much Doug, You show how the facts are meaningfull when we take the time to look backward. Doug McCune a écrit : > > Apologies for how long this email became, but I was reading around on > the trusty wikipedia and wanted to try to clear up some things about > the "success" of th

[flexcoders] Looking to tweak a List control's drop indicator

2009-01-27 Thread Todd
Hello All, I'm looking to change the behavior/looks of the drop indicator when rearranging items in a List control. I understand that I can make a new dropIndicatorSkin (which I hope to do this in Flash). However, I'd also like to add some separation between the items in the list when I dra

[flexcoders] Re: html text | TextArea | tag

2009-01-27 Thread oneworld95
The htmlText in the TextArea control supports only a limited number of HTML tags; take a look at this blog post for more info: http://devharbor.blogspot.com/2008/12/display-html-file-in-flex-textarea.html I don't think the tag is supported; nor can it be nested. To create lists, you simply use th

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Fotis Chatzinikos
Try the following: userData:ArrayCollection = event.result as ArrayCollection ; Then it seems that the array contains untyped object (Dictionary/hashmap type) so: userData.getItemAt(0)["FIRSTNAME"] should give you :"Wally" ; do not have a compiler in hand at the moment ... if the previous line

[flexcoders] html text | TextArea | tag

2009-01-27 Thread ilikeflex
Hi I want to have this kind of look http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_nestedlists2 I made the following in TextArea But i do not get the desired result. Any pointers. Th

Re: [flexcoders] localconnection data encrypted?

2009-01-27 Thread Tom Chiverton
On Monday 26 Jan 2009, Pete Appleby wrote: > Is the data encrypted? If not, I assume that I must encrypt sensitive > information myself. Does LocalConnection even use the network ? As opposed to some sort of shared memory access ? -- Tom Chiverton Helping to adaptively entrench magnetic pattern

[flexcoders] How to convert RichTextEditor htmlText to a real HTML code?

2009-01-27 Thread markflex2007
Hi, I check the flex RichTextEditor htmlText property but it seem it is not a good html code. Do you know how to convert it to good html code? Do you know other flex Wysiwyg Editor with html preview feature? Thanks for help Mark

Re: [flexcoders] Re: Modules

2009-01-27 Thread Rob Kunkle
Hi Lorenzo - What you want to do is use the "ready" event of the module loader to add event listeners to your module. So in your main application, you want something like this: private function moduleReadyHandler(event:Event):void { if(moduleLoader.child is Design

Re: [flexcoders] Flex. AIR and IPhone

2009-01-27 Thread Doug McCune
Apologies for how long this email became, but I was reading around on the trusty wikipedia and wanted to try to clear up some things about the "success" of the existing web standards. I don't want this to come off as too much of a rant, but it proably will. Let's take a look at the history of CSS

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
Using Alert.show(ObjectUtil.toString(e.result)) This is what I got: (mx.collections::ArrayCollection)#0 filterFunction = (null) length = 1 list = (mx.collections::ArrayList)#1 length = 1 source = (Array)#2 [0] (Object)#3 DEPARTMENT = "PRMC" FIRSTNAME = "Wally"

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Wally Kolcz
thisindex (@150ba0a1) emx.rpc.events.ResultEvent (@1516eaa9) [inherited] headersnull resultmx.collections.ArrayCollection (@151f2701) [inherited] [0]mx.utils.ObjectProxy (@1516eee1) DEPARTMENT"PRMC"

[flexcoders] Re: PHP Remoting and value objects

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, Sceneshift wrote: > > > Hey guys, > > I'm a little confused over how to get myself from WebOrb PHP into a VO in my > Flex application. I am getting my result sent to me from my php script which > is returned as an object, and I'm trying to set this result as

[flexcoders] Re: ComboBox selectedIndex revisited

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > You have a lot of stuff happening in there. Did you debug it to see why > it was not working? Particularly the "computeSelectedDateRangeIndex()" > function? Was it being called when you expected? I agree with Tracy. I would expect

Re: [flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread Fotis Chatzinikos
Why do not you try Alert.show(ObjectUtil.toString(e.result)) //replace e.result with e to see the whole event ObjectUtil is very useful in situation like this as it show a textual representation of any object graph On Tue, Jan 27, 2009 at 5:37 PM, valdhor wrote: > Perhaps you have an arrayColl

[flexcoders] Re: Flex in a week tutorial problem

2009-01-27 Thread rbross77
I found the problem... my events folder was named with a capital "E" and needed to be lower case e. Went over exercise again and found it. Works as expected now --- In flexcoders@yahoogroups.com, "Paul Andrews" wrote: > > - Original Message - > From: "rbross77" > To: > Sent: Tue

[flexcoders] Re: Setting data from web service to ArrayCollection.

2009-01-27 Thread valdhor
Perhaps you have an arrayCollection of arrayCollections (What does the debugger show as the result type?). You may like to try... var resultArrColl:ArrayCollection = e.result.source; var firstResult:ArrayCollection = resultArrColl[0]; Alert.show(firstResult[0]); --- In flexcoders@yahoogroups.com

Re: [flexcoders] Flex in a week tutorial problem

2009-01-27 Thread Paul Andrews
- Original Message - From: "rbross77" To: Sent: Tuesday, January 27, 2009 2:49 PM Subject: [flexcoders] Flex in a week tutorial problem > Hello, > > Working my way through this tutorial and I hit a wall. > I looked at the sample code and cannot figure out why this event is not > availa

Re: [flexcoders] Go and Vote for beter Flex builder! (Cache Buster)

2009-01-27 Thread Alan K
I¹d rather know how to add the feature it myself. https://bugs.adobe.com/jira/browse/FB-16764 Alan

  1   2   >