Re: [flexcoders] ComboBox and Icons

2005-11-18 Thread Anatole Tartakovsky
Andre, Here is the way to replace combobox dropdown with configurable datagrid from my recent post: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg15878.html Adding icon might looksimplier if you apply iconField to dropdown property of the combobox, but making sure that symbols

[flexcoders] iterate mx:Model data in CellRenderer

2005-11-18 Thread keishichi2001
i'm trying to display mx:Model data in CellRenderer(within TileList). The mx:Model has following format. mx:Model id=monthdata obj item date1/date day0/day daysch titleSales MTG/title titlePresentation/title /daysch /item item date2/date

Re: [flexcoders] Re: Cairngorm is bad?

2005-11-18 Thread Mykola Paliyenko
Anatole, I do not agree that it is a big problem in refactoring serverside code. Sure if you have no unit tests for RIA client you will not be able to detect that something broken when you change server interface. But in agile methodology that is most popular now you always have to have tests.

[flexcoders] Webservice operations with more than 3 parameters

2005-11-18 Thread Bryngfors Nils
Hi! I've encountered a strange problem when calling webservices from Flex 2.0. When I'm calling a .NET webservice that takes 4 parameters, all strings, I got the following error: HTTP request error #2032: Stream Error The strange thing is that when I modify the webservice to only take 3

[flexcoders] How to Embed XML file at compile time?

2005-11-18 Thread Stanislav Zayarsky
Hello Guys, Does anyone know how to Embed XML file at compile time? I'm trying to use this code: mx:Script ![CDATA[ [Embed(data.xml)] var xmldata:Object; ]] /mx:Script mx:Model id=xmlModel

[flexcoders] handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
(flex2.0) When i pass empty XML element into CellRenderer, and handle it like followed, it shows as 'null' - String. (in the CellRenderer) ... mx:Link label={dataObject.day} / ... I want it to be shown real empty(which means, show nothing) if empty XML element given. Does anyone run into same

RE: [flexcoders] ComboBox and Icons

2005-11-18 Thread Andre Ehlert
Hi Jim, thanks for your reply, but i found out a solution: In shortform: Definition of icons in application: /** embed icons for cbx user status */ /** status away */ [Embed(source=/pics/userStatus/away.gif)] var iconAway:String; /** status don't disturb */

[flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Xavi Beumala
Hi there, I'm trying to parse xslt files from within as3. When parsing composed xslt tags like xsl:call-template or xsl:with-param I'm getting an error like: Access of undefined property template or Access of undefined property param. It seems like the compiler is interpreting with-param like

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Hi Jim, I gave that a shot and still to no avail. Still get the error: There is no property with the name 'icon'. Oh well. Perhaps I need to figure out these custom header classes! Thanks for the help. Cheers Niklas On 17/11/05, Jim Phelan [EMAIL PROTECTED] wrote: The custom class

Re: [flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Xavi Beumala
If someone is interested on the response: http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=587threadid=1083145enterthread=y Cheers X. Xavi Beumala wrote: Hi there, I'm trying to parse xslt files from within as3. When parsing composed xslt tags like xsl:call-template or

Re: [flexcoders] handling empty(null) in CellRenderer

2005-11-18 Thread Michael Hansen
how about something like: mx:Link label={dataObject.day==null?'':dataObject.day} / cheers -michael On 11/18/05, keishichi2001 [EMAIL PROTECTED] wrote: (flex2.0) When i pass empty XML element into CellRenderer, and handle it like followed, it shows as 'null' - String. (in the

[flexcoders] Flex 2.0 - Another way to load a SWF ?

2005-11-18 Thread Michel Bertrand
Title: Flex 2.0 - Another way to load a SWF ? Hello ! I've been using mx.controls.Loader to load SWF files. Using Flex 2.0 platform I've found errors tyring to use it. So, how could I load a SWF without to use a Loader ? Is there anyway ? Any suggestions ? Thanks in advance !

Re: [flexcoders] Re: Adding Item to a ComboBox

2005-11-18 Thread Manish Jethani
On 11/18/05, yaagcur [EMAIL PROTECTED] wrote: Several points of clarification please 1) OK so as I understand it, in the final version of Flex 2 prompt will just be for info and will not be bindable, right? If so, is it being replaced by an alternative for easy addition of another item?

Re: [flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Manish Jethani
On 11/18/05, Xavi Beumala [EMAIL PROTECTED] wrote: // this is failing at compile time trace (xml.xslNS::template.xslNS::[EMAIL PROTECTED]); trace (xml.xslNS::template.xslNS::[call-template[EMAIL PROTECTED]); Manish Yahoo! Groups Sponsor

[flexcoders] Job: Flex Developer

2005-11-18 Thread Clint Modien
Job Title : FLEX Developer.Location :Farmington Hills, Michigan (30 miles northwest ofDetroit)Duration : 4 Months ( High possibility of extension)Rate :$50 - $70 /hr depends on experienceThe company I work for needs a resource who is a Macromedia FLEX developer.We need someonewhohas at least

[flexcoders] Flex2 : databinding itemrenders

2005-11-18 Thread Michael Hansen
hi List, I have a HorizontalList with a listItemRenderer. [Bindable] public var ItemList:ArrayCollection; mx:HorizontalList dataProvider={ItemList} listItemRenderer=Thumbnail / The thumbnail.mxml consists of an vbox with an image and a label like so: mx:Vbox mx:Image

[flexcoders] Date column sorting in datagrid

2005-11-18 Thread yasovardhan [EMAIL PROTECTED]
Hi All,

[flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Hi all, Any ideas on what a Flex developer is currently charging in the US? -- : Aldo Bucchi : mobile (56) 8 429 8300 Yahoo! Groups Sponsor ~-- Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page

[flexcoders] Re: Job: Flex Developer

2005-11-18 Thread Clint Modien
Just appending my post... We're looking for developers in the U.S., Canada, or Mexico. Thanks again, Clint Modien On 11/18/05, Clint Modien [EMAIL PROTECTED] wrote: Job Title : FLEX Developer.Location :Farmington Hills, Michigan (30 miles northwest ofDetroit)Duration : 4 Months ( High

[flexcoders] Re: handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
Thx Michael, With your suggestion, i used following code, then it worked perfectly ! mx:Link label={dataObject.day==null?'':dataObject.day} enabled={dataObject.day==null?false:true} / Thanks again, Keishichi --- In flexcoders@yahoogroups.com, Michael Hansen [EMAIL PROTECTED] wrote: how

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Manish Jethani
On 11/17/05, Niklas Richardson [EMAIL PROTECTED] wrote: Basically, I want to change the icon for a specific accordion header depending on a certain state of that child. Okay, so I think that depends on the icon of the child container. Does changing the icon of the child not work? Manish

Re: [flexcoders] Flex2 : databinding itemrenders

2005-11-18 Thread Manish Jethani
On 11/18/05, Michael Hansen [EMAIL PROTECTED] wrote: The thumbnail.mxml consists of an vbox with an image and a label like so: mx:Vbox mx:Image source=./{dataObject.file / mx:Label text={dataObject.file}/ /mx:VBox My problem is that if I change the underlying

Re: [flexcoders] Date column sorting in datagrid

2005-11-18 Thread Manish Jethani
On 11/18/05, yasovardhan [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a datagrid in which out of five columns 3 columns are of date type. I have formatted date to DD-MM-. I am unable to sort these columns. I think you have to write a sortFunction Manish

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
$100 - Original Message - From: Aldo Bucchi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 9:43 AM Subject: [flexcoders] Poll: Flex developer US$ rate? Hi all, Any ideas on what a Flex developer is currently charging in the US? -- : Aldo Bucchi

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Additionally, I know of those getting $40 to $70 as well. Depends on experience, the company, and budget as well. - Original Message - From: Aldo Bucchi [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 9:43 AM Subject: [flexcoders] Poll: Flex developer

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
You are da man! :) Sweet. Must be some weird instantiation thing why .icon didn't work? Cheers Niklas On 18/11/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Have you tried accd.getHeaderAt(0)['icon'] ? From: flexcoders@yahoogroups.com on behalf of

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Thanks Philippe! On 18/11/05, Niklas Richardson [EMAIL PROTECTED] wrote: You are da man! :) Sweet. Must be some weird instantiation thing why .icon didn't work? Cheers Niklas On 18/11/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Have you tried accd.getHeaderAt(0)['icon'] ?

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Hi Jesse, And how does that compare to the old school Flash RIA samurais, like yourself? On 11/18/05, JesterXL [EMAIL PROTECTED] wrote: Additionally, I know of those getting $40 to $70 as well. Depends on experience, the company, and budget as well. - Original Message - From: Aldo

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Niklas Richardson
Manish - nope, it says it can't find it. However, the solution Philippe suggested works great. The only thing you need to do is to have a 1x1 pixel transparent spacer to remove the icon as setting the icon to null or undefined doesn't remove the icon. Well, that was my hack anyways! ;) Thanks

[flexcoders] default sorting for DataGrid

2005-11-18 Thread Drew Hite
Hi, I'm using a remote object to populate a DataGrid with an array of custom java objects. When the DataGrid is first rendered, I want to sort its records using an int field from the java object. However, this grid is always initially sorted as if the int field were of type String. Clicking on

Re: [flexcoders] Flex2 : databinding itemrenders

2005-11-18 Thread Michael Hansen
Thank you Manish! I'm not getting any warnings. :( I don't quite follow your suggestion. Sorry for being stupid, but all this is semi new to me :) Could you elaborate a bit on your answer? Also do you guys have a public bug tracking running somewhere. I would save us all (both you and me)

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Not sure; Flash got more and more complex in the amount of markets it went into, so rather than stabilizing, it work got worse. I've heard of rates from $20/hr; I myself have worked for less on cool as hell projects to the flipside of salaries exceeding 100k. So... no clue, bro. Flex is a

RE: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread David Mendels
Hi, I know of folks charging from $150-$300 per hour for design and architecture work on Flex projects. Rates vary very widely it seems. -David -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Friday, November 18, 2005

[flexcoders] Re: This *really* Sucks!

2005-11-18 Thread joao_m_fernandes
Hi, I just want to share with you that we managed to fix the MSI installation for Flash Player 8 when upgrading from FP7. The problem was related to some reg keys missing during the upgrade. We made upgrades from 6 to 8 without problems but from FP7 to FP8m 6 keys were missing. Here is our

RE: [flexcoders] This *really* Sucks!

2005-11-18 Thread João Fernandes
Hi, I just want to share with you that we managed to fix the MSI installation for Flash Player 8 when upgrading from FP7. The problem was related to some reg keys missing during the upgrade. We made upgrades from 6 to 8 without problems but from FP7 to FP8m 6 keys were missing. Here is

RE: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Carson Hager
This is more in line with what we see. Experience is key here. If you don't have a number of deployed applications in production with a proven and repeatable methodology for getting there, these rates won't happen. Clearly it also depends upon the kind of customer you're dealing with. This is

Re: [flexcoders] Date column sorting in datagrid

2005-11-18 Thread Sreejith Unnikrishnan
This has been answered before on this forum. Try a search on http://www.mail-archive.com/flexcoders%40yahoogroups.com Anyways, read the solution at http://weblogs.macromedia.com/mesh/archives/2005/04/sorting_date_fi.cfm yasovardhan [EMAIL PROTECTED] wrote: Hi All, I have a datagrid

[flexcoders] New Flex version of web site, and whitepaper available

2005-11-18 Thread Dave Wolf
There have been a fair number of threads recently looking for examples of Flex web applications and sites. That's pretty natural given how nascent this area is and how the technology is so deeply focused on the user experience that people crave to be able to experience it themselves. We've been

[flexcoders] Re: Adding Item to a ComboBox

2005-11-18 Thread yaagcur
Thanks Manish. I appreciate your logic re the prompt and am keen to do it the model-view architecture way. I just do not know how to handle the result of the CF query As I explained at the beginning of the thread I want to replace my current mx:ArrayCollection id=cities

RE: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Tim Beynart
Jesse, $20/hr is what I pay people to dig holes in my yard! Anyone in the US with development skills working for that is depressing the market and seriously shortchanging themselves. Since FLEX is aimed directly at the enterprise market and is fundamentally a presentation-tier platform, you could

RE: Sho - anything wrong with a Class Example app like BeatPort -- RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-18 Thread Jason Weiss
I guess best should be a relative term and put into context. The Fortune 1500 companies that we work with would likely be very disappointed if we presented them with a UI like BeatPort for a mission critical enterprise-class application. Let me stress upfront that my point is not to

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Aldo Bucchi
Ok, this is one of those comments that usually get me pointed out as non-serious. But, I am not serious at all, so who cares... I believe that these pricing differences will be sustained over time, and probably even increase. That's exactly why i asked the question... I wanted to see the current

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
...well, there goes that assumption... :: bangs head :: - Original Message - From: Carson Hager [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 11:39 AM Subject: RE: [flexcoders] Poll: Flex developer US$ rate? This is more in line with what we see.

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
If I went to NYC, I'd double my rates; I couldn't survive on 85 an hour there... at least, from what I've seen from cost of living. - Original Message - From: Tim Beynart [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 12:17 PM Subject: RE: [flexcoders]

Re: [flexcoders] Re: Cairngorm is bad?

2005-11-18 Thread Anatole Tartakovsky
Mykola, There is a very thin line in the process between methodology and outcome. More often then not "how to think" becomes "what to think". I am merely making a point that creative people should choose the tools to automate labor then the thinking itself - even ifthe later iseasier.

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Besides, kind of hard to ask for $300 an hour when you have... oh, NOTHING on your resume to prove yo don't suck. I'll do whatever it takes to succeed, and if that meant taking jack money to get some cool projects on my resume, so be it. Today, I don't need anymore, but back then, I'd

RE: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Hans Omli
Rates vary widely depending on type of gig (consulting, contractor, or employee), industry, location, depth of knowledge in software engineering, experience with flash and other related technologies, and so on. I'd expect a highly experienced Flex developer that runs a consulting firm to bring in

[flexcoders] Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread jruud68
For a dynamic object 'MyObject', does actionscript support returning a default value for missing properties? For example, I'd like: MyObject.MissingProperty to return there is no such property, if MissingProperty has not been added to MyObject. (This would be similar to implementing a

[flexcoders] How do you convert a .pdf file to an .swf file

2005-11-18 Thread nostra72
Do you just save the .pdf file as a .swf file or do you do something else? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Dude, I want to run a firm now. - Original Message - From: Hans Omli [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 1:55 PM Subject: RE: [flexcoders] Poll: Flex developer US$ rate? Rates vary widely depending on type of gig (consulting, contractor, or

[flexcoders] Re: Poll: Flex developer US$ rate?

2005-11-18 Thread Renaun Erickson
I'll join, hehe --- In flexcoders@yahoogroups.com, JesterXL [EMAIL PROTECTED] wrote: Dude, I want to run a firm now. - Original Message - From: Hans Omli [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 1:55 PM Subject: RE: [flexcoders] Poll: Flex

Re: [flexcoders] How do you convert a .pdf file to an .swf file

2005-11-18 Thread Johannes Nel
soemthing else i can assure youOn 11/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Do you just save the .pdf file as a .swf file or do you do something else? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] How do you convert a .pdf file to an .swf file

2005-11-18 Thread JesterXL
If you have FlashPaper installed, right click on it, convert. Schweetness! - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, November 18, 2005 1:59 PM Subject: [flexcoders] How do you convert a .pdf file to an .swf file Do you just save

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread Tariq Ahmed
I love of course how recruiters and companies want people with the latest and greatest skills. I had a recruiter send me a requisition back in June looking for someone with 5 years of Flex 2 and Flash 8 Pro experience. Uh ya. David Mendels wrote: Hi, I know of folks charging from

RE: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Jim Phelan
Hey Niklas, Heres a quick and dirty example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml width=100% height=100% mx:Script ![CDATA[ [Embed(plus.png)] var plusIcon:String; [Embed(minus.png)] var minusIcon:String; function

RE: Sho - anything wrong with a Class Example app like BeatPort -- RE: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-18 Thread Robert Thompson
Well, I believe I did comment that the particular "look" of BeatPort is one thing, while the integration of a Summary Home Page, Membership Signup, Forums, Areas, is another. Surely someone as good as Sho can demonstrate a "Bare Bones" if you will, but recommended standard of practice in

[flexcoders] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread jruud68
Our application consists of multiple pages, and I don't want the queries on non-visible pages to run until they become selected (visible). Are there any patterns or frameworks that deal with this issue? I think the ideal solution would be if Flex 1.5 or 2.0 data-binding would be delayed

Re: [flexcoders] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread Sreejith Unnikrishnan
You should read on the well-documented "creationPolicy" feature of the containers. jruud68 wrote: Our application consists of multiple pages, and I don't want the queries on non-visible pages to run until they become selected (visible). Are there any patterns or frameworks that deal

[flexcoders] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: Flex App not loading Hi all, I have run into a strange problem. Here at the company, we have two different networks and we outsource our hosting. Our group that owns one network can access flex apps from the remote server fine. The other network can't load the same apps even though

Re: [flexcoders] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread Sreejith Unnikrishnan
Sorry, I take back the comment! Sreejith Unnikrishnan wrote: You should read on the well-documented "creationPolicy" feature of the containers. jruud68 wrote: Our application consists of multiple pages, and I don't want the queries on non-visible pages to run until they become

[flexcoders] Java ArrayList

2005-11-18 Thread Greg Morphis
Hi, I'm working on a Flex project with a Java backend. I'm making a JSP page (or trying to) that will output a schedule in an HTML table. I cant seem to get it to work I import all of my classes, no problem there.. I declare my variables, no problem there.. It seems to be in the while loop..

Re: [flexcoders] Accordion Header Icons - Changing during runtime

2005-11-18 Thread Jignesh Dodiya
i think some modification required in the code like inclusion of import command and to modify the function On 11/18/05, Jim Phelan [EMAIL PROTECTED] wrote: Hey Niklas, Here's a quick and dirty example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread John C. Bland II
Heh, have you tried free Jesse? :-) I knocked out a few solid free one's in my early days to get something on there then was doing full database driven sites for $500. :-) Its all about the portfolio when contracting until you get your name out there and solid. On 11/18/05, JesterXL [EMAIL

Re: [flexcoders] Poll: Flex developer US$ rate?

2005-11-18 Thread JesterXL
Oh yeah... done the free ones... problem was, I should of at least had royalties in a contract. One dude who paid me $500 a phat lunch to do this insanely cool map game over 2 months has now, after 2 years, become profitable. He was on CNN, etc. After the project was done, I was broke,

RE: [flexcoders] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: Flex App not loading It does load the flash player but the app doesnt launch Agha Mehdi IDT - eBusiness Program Manager From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carson Hager Sent: Friday, November 18, 2005 2:04 PM To:

RE: [flexcoders] Flex App not loading

2005-11-18 Thread Carson Hager
Title: Flex App not loading Have you verified with the web server that the swf was returned to the client? I would look at the log and see what the http status code is for the request. Carson Carson HagerCynergy Systems,

[flexcoders] Binding Data XML vs. AMFPHP

2005-11-18 Thread nextadvantage
We are traditional LAMP developers, currently digging into flex, we have been passing data via XML/PHP in our project, and have been reading about AMFPHP moving forward with Flex 2.0 what would be the quickest/ best performance method to bind our applications with MySQL?

[flexcoders] Title Panel Graphic in Flex Style Explorer anyone have it...

2005-11-18 Thread nextadvantage
I like the transparent title explorer graphic from the flex styles explorer. http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html Does anyone have that file here? I'm lazy and don't want to re-create it... If someone has it can you email it to bidcars (at) gmail.com Thanks

[flexcoders] Re: Binding Data XML vs. AMFPHP

2005-11-18 Thread Renaun Erickson
Flex 1.5 AMFPHP is just like any other gateway. Just set up the gateway correctly on your Apache/PHP server. Then change the amf-gateway in the flex-config.xml file to point to the AMFPHP gateway (example below). Then use the mx:RemoteObject/ tag. Like this: mx:RemoteObject id=recordsDelegate

[flexcoders] CellRenderer Bound DataProvider create/destroy issue

2005-11-18 Thread Renaun Erickson
I have a component that I am programmatically create and destroy (createChild/destroyChild), call it ResultList. ResultList has a TileList that has a dataprovider that is bound to a static variable Items. So the sequence looks like: Create ResultList Fill the array of Items (which in turn

RE: [flexcoders] StringValidator don't work

2005-11-18 Thread Matt Chotin
You cant use method calls for validator fields, it has to be a property on an object that lives in the document.  You might need a Model in the middle that you can use for binding instead. mx:Model id=proxy   tdsc {ModelLocator.getInstance().nota.DE50NT==undefined ?

RE: [flexcoders] Flex 2.0 - Loader - Error #2036 : Load Never Completed

2005-11-18 Thread Matt Chotin
Title: Flex 2.0 - Loader - Error #2036 : Load Never Completed Ive heard of the Loader having some problems in the alpha but are you sure that its really the right path for the swf?  Did you compile MyComponent.mxml already into a SWF, remember you dont have a server to do the compilation

RE: [flexcoders] How to Embed XML file at compile time?

2005-11-18 Thread Matt Chotin
mx:Model id=xmlModel source=data.xml / Or if you want the XML to be brought in raw use mx:XML source=data.xml format=e4x (or format=xml for old-school) instead . Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stanislav Zayarsky

RE: [flexcoders] iterate mx:Model data in CellRenderer

2005-11-18 Thread Matt Chotin
mx:Repeater id=rp_1 dataProvider={mx.utils.ArrayUtil.toArray(dataObject.daysch)} / Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of keishichi2001 Sent: Thursday, November 17, 2005 11:06 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] link in new window

2005-11-18 Thread thisdudenamedjon
I have some links to some static html pages that I want to popup in a new window so I don't exit the flex everytime I click it. Does anyone know about this kind of funtionality? Jon Yahoo! Groups Sponsor ~-- 1.2 million kids a year are

RE: [flexcoders] Title Panel Graphic in Flex Style Explorer anyone have it...

2005-11-18 Thread Jason Weiss
There are no graphics that I see there. There is text and a link bar. Are you mistaking the link bar for a graphic? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of nextadvantage Sent: Friday, November 18, 2005 7:01 PM To:

RE: [flexcoders] Flex App not loading

2005-11-18 Thread Mehdi, Agha
Title: RE: [flexcoders] Flex App not loading 1) Yes, the exact same URL 2) It does load the Player but not the app 3) I am running multiple instances and one of them is Flex not integrated with CF. Agha Mehdi IDT - eBusiness Program Manager -Original Message- From: João

RE: [flexcoders] Webservice operations with more than 3 parameters

2005-11-18 Thread Matt Chotin
Does the webservice have overloaded methods, methods with the same name that take different numbers of parameters? Flex doesnt really support that unfortunately, youd need to get a separate WSDL that eliminates the ones that you dont want to use. Matt From:

RE: [flexcoders] Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread Matt Chotin
Is this Flex 1.5 youre talking about? Check out __resolve: http://livedocs.macromedia.com/flex/15/flex_docs_en/1622.htm and it should get you on your way. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jruud68 Sent: Friday, November

RE: [flexcoders] link in new window

2005-11-18 Thread Matt Chotin
Just use a window of _blank in getURL I think. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon Sent: Friday, November 18, 2005 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] link in new window I have

RE: [flexcoders] link in new window

2005-11-18 Thread Jason Weiss
getURL(www.someurl.com, _blank); From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon Sent: Friday, November 18, 2005 7:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] link in new window I have some links to some

RE: [flexcoders] link in new window

2005-11-18 Thread Dekayd Media Inc.
getURL('yourURL.htm', '_blank') -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thisdudenamedjon Sent: Friday, November 18, 2005 8:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] link in new window I have some links to some static

Re: [flexcoders] [Flex 2.0 - AS3] E4X problem when parsing tags with hyphen

2005-11-18 Thread Mike Chambers
Yes. Basically the compiler thinks you are trying to subtract things. This may end up being a Fact of Life (FOL). mike chambers [EMAIL PROTECTED] Manish Jethani wrote: On 11/18/05, Xavi Beumala [EMAIL PROTECTED] wrote: // this is failing at compile time trace