RE: [flexcoders] Server push from ColdFusion without FDS?
Nah you're dreaming :) I think he's saying that coldfusion is configured to work with FDS to achieve push. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Tuesday, 4 July 2006 8:59 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Server push from ColdFusion without FDS? On Monday 03 July 2006 23:32, Greg Fuller wrote: > So the question is: Can you perform server-to-client-push without > installing FDS? Which is the same as asking (I think): Is > server-to-client-push built into the cf adaptor, like remoting? Or am > I only dreaming? I think the only way is to have your app poll the server every so often. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 Yahoo! Groups Sponsor ~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] CF Flash Remoting project results in Jrun servlet error
I don’t think its building the directory. You will need to confirm that it exists in wwwroot/test/bin/ Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of yaagcur Sent: Tuesday, 4 July 2006 11:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CF Flash Remoting project results in Jrun servlet error If I attempt to set up a project using the above wizard, running the project in a browser e.g http://localhost:8500/test/bin/main.html produces the error 404 /test/bin/main.html. This applies even if I am not attempting any remoting e.g just putting a button on the page. The same project done in the basic method produces the correct outcome If I add the additional compiler argument -services "C:\CFusionMX7\wwwroot\WEB-INF\flex\services-config.xml" -locale en_US to a basic project, the page loads correctly. However I cannot make any remote connections work - just get busy cursor Any ideas on what I can do. Is there a log file somewhere I should be accessing. I cannot determine its whereabouts __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Cairngorm Responder interface changes
Hi Jesse, Let me start by saying that I acquiesce; no more viewHelpers. All code has been rolled into the view. For component oriented development, it makes sense. Concerning your cogent points of view: 1) ResultEvent & FaultEvent events: Not sure how much of an impact this makes in reality, But yes, do we need to support "undefined"? It adds weight. 2) Command callbacks: When I first got into Cairngorm, I wondered why there wasn't a round trip of communication back to the view/gesture. There are plenty of local view actions that benefit from knowing the result of a command; maybe "ViewResponder". Here, I would hope that you would accept Steven's invitation to show your enhanced code, so that it might benefit all of us by possibly being rolled into Cairngorm. Functions vs. state variables: Yes, the scope of the function dictates the need for state representation. I mean, if model == state, should every toggled RadioButton or focused TextInput require a state variable for control. At a point it becomes redundant, and more efficient to address locally. 3) Added 2 methods to ServiceLocator: See #2 about sharing and possible adoption. My comments to you are not personal, or even professional. I have seen your work, website, and sat in on one of your online presentations. I think that you are brilliant. Being from SoCal, I know and appreciate your snowboarder mentality. :) I agree with your points here. I would just hope that, instead of bagging, you would contribute your proposed solutions, so that we all might enjoy a cleaner architecture. ::looking for teddy bears:: -TH --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote: > > Sending again; sent at like 10:00am this morning, but still don't see it. 10:03pm now. > > - > > 1. ResultEvent & FaultEvent events. I disagree with this change, so have changed them back instead of of using the * change for the Responder interface. > > 2. Command callbacks. Sometimes, there is a legitimate need for a View to "know" when a Command is completed. In my consulting, we've added an optional callback method that can be passed via EventBroadcaster (Cairngorm 1). So, View's launching Commands have the option of using a Callback (like flash.net.Responder) to have a result method called when the Command is done. We extended Cairngorm's command to have all of this plumbing hidden. The convention we have is, "If the View has his onResult run, he can conclude that the Command succeeded in it's operation." If a fault was fired in the Delegate, this means the app is broken and needs to be fixed. There is no error handling, only error fixing. > > In my personal work, I've implemented both; result and faults, via Event's. If an event extends my JXLEvent class (which extends Cairngorm), it has the option of getting those callbacks. I should probably do it like we do it at work, but for now, it works. I like handling errors, so although fault and result are pretty low level, I can have View's handle errors (or Commands obviously). > > Both avoid ViewLocator via a nice convention. It also makes it cake to have a chained command with visual feedback. You can have your View fire off other commands in a particular order AND show visual feedback the whole time. Could you do this by binding? Sure, but I'd rather use functions vs. state variables. > > 3. Added 2 methods to ServiceLocator. He doesn't support Producer or Consumer (MessageAgent) services, so with a new method he does. He also doesn't support NetConnection; with the new method, he does. Since Cairngorm was made for a more request response, it feels like both of the above are halfway implemented, but for sending messages, Cairngorm works great, including Acknowledge messages for Delegates that fire the original message. In both cases, actual callbacks are handled by totally different classes that basically act as Observers, and emit events. The more specialized (for example, a channel in FDS created for Text messages, and thus Chat only) is an extension of that ConsumerObserver class, called ChatObsever, and he omits Chat specific events for those who care. They, like Delegate's, utlize ServiceLocator. > > I would, however, prefer you all either give me a better idea(s), christen this idea as good for handling NetConnection / FDS' consumer/producer model, and/or implement something that supports these push based technologies into Cairngorm. > > With the exclusion of #1, both #2, and #3 can be done via extneding the Cairngorm base classes so you're not affecting the original framework, only extending it. I'd prefer #3 be made official though, by you all somehow, some way. > > - Original Message - > From: Steven Webster > To: flexcoders@yahoogroups.com > Sent: Monday, July 03, 2006 6:03 PM > Subject: RE: [flexcoders] Re: Cairngorm Responder interface changes > >
RE: [flexcoders] how to create a component in AS?
You’ll want to create a new flash.display.TextField instance. Whats cool is you could compile it in the flash 9 ide with graphical mc’s. Then reference those child elements once imported into a flex app. Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Wednesday, 5 July 2006 3:18 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to create a component in AS? I have not looked at this example, but presumably it extends some container, like Canvas or VBox. You will want to use the createChild() method of that container to add your label. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of shemeshkale Sent: Tuesday, July 04, 2006 8:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to create a component in AS? on the Adobe website there is a tutorial to create an AS clock. here : http://www.adobe.com/devnet/flex/articles/creating_comp.html i want do add a label to show the time in digits on top of all. how do i create this label inside the AS file? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Re: Beta 3 WebService Result
Yes, most likely. What does your WSDL element look like for these strings? What technology are you using for your web services (.NET, J2EE, CF)? - Kelly -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of someguy7_7 Sent: Tuesday, July 04, 2006 9:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Beta 3 WebService Result I assume you mean set the resultFormat in the . I have set that as well as makeObjectsBindable="false" in the and but I still comes back as an array of complex strings. If I look at the last result in the debugger it looks like this. item=Array(@12345) [0]=mx.rpc.xml.ComplexString(@23423) [1]=mx.rpc.xml.ComplexString(@745545) I am expecting something like item=Object(@12345) [0]=category(@23423) [1]=categoryid(@745545) Then I will be able to reference it by lastResult.items.item.category instead of lastResult.items.item[0]. Any ideas on why I am getting complex strings? Is this something to do with how my wsdl is structured? Thanks --- In flexcoders@yahoogroups.com, "Kelly Birr" <[EMAIL PROTECTED]> wrote: > > If you set makeObjectsBindable="false" and resultFormat="object" in > the webservice tag you should get arrays of objects. > > > > - Kelly > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] > On Behalf Of someguy7_7 > Sent: Monday, July 03, 2006 2:37 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Beta 3 WebService Result > > I am finally getting back to this issue. I have since moved to Flex > 2.0 released version. Is there no way for me to use resultFormat="object" if the > resulting data contains Object Arrays? Or in flex 2.0 are we required to use > e4x? > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > Either way, > > > > Change the resultFormat: > > > > > > > > Or, cast lastResult to an XML var. > > > > -TH > > > > --- In flexcoders@yahoogroups.com, "someguy7_7" > > wrote: > > > > > > Do you mean change the operation.resultFormat to "xml"? Or somehow > > > cast the lastResult of the operation to a variable typed to "XML"? > > > > > > Brian > > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > > > > > The default return type from a web service call is object(). If > > you > > > > cast this to XML, you should be able to get the same > > funtionality. > > > > > > > > -TH > > > > > > > > --- In flexcoders@yahoogroups.com, "Brian McPheeters" > > > > wrote: > > > > > > > > > > We are porting an application from 1.5 to 2.0 Beta 3. The app > > > > connects > > > > > to a couple different web services to populate a ListView. In > > the > > > > 1.5 > > > > > version the result from the web service is an object that I > > can > > > > pull > > > > > data for the list view from using the result xml element > > names. > > > > > > > > > > Ex: currentitem.category, currentitem.categoryid > > > > > > > > > > But in 2.0 Beta 3 the result is interpreted by flex as an > > Array. > > > > > currentitem = Array (@38cceb21). This causes me to index into > > the > > > > array > > > > > to get the values. > > > > > > > > > > Ex: currentitem[0],currentitem[1] > > > > > > > > > > Both apps are using the exact same webservices. Do I need to > > > > somehow > > > > > cast the result from the webservice to an object? Any ideas on > > > > what is > > > > > causing this and how to get it so I can reference by element > > name > > > > in 2.0 > > > > > Beta 3? > > > > > > > > > > Thanks > > > > > Brian > > > > > > > > > > > > > > > > > > > > > > -- > 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 > Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Re: Cairngorm Responder interface changes
Sending again; sent at like 10:00am this morning, but still don't see it. 10:03pm now. - 1. ResultEvent & FaultEvent events. I disagree with this change, so have changed them back instead of of using the * change for the Responder interface. 2. Command callbacks. Sometimes, there is a legitimate need for a View to "know" when a Command is completed. In my consulting, we've added an optional callback method that can be passed via EventBroadcaster (Cairngorm 1). So, View's launching Commands have the option of using a Callback (like flash.net.Responder) to have a result method called when the Command is done. We extended Cairngorm's command to have all of this plumbing hidden. The convention we have is, "If the View has his onResult run, he can conclude that the Command succeeded in it's operation." If a fault was fired in the Delegate, this means the app is broken and needs to be fixed. There is no error handling, only error fixing. In my personal work, I've implemented both; result and faults, via Event's. If an event extends my JXLEvent class (which extends Cairngorm), it has the option of getting those callbacks. I should probably do it like we do it at work, but for now, it works. I like handling errors, so although fault and result are pretty low level, I can have View's handle errors (or Commands obviously). Both avoid ViewLocator via a nice convention. It also makes it cake to have a chained command with visual feedback. You can have your View fire off other commands in a particular order AND show visual feedback the whole time. Could you do this by binding? Sure, but I'd rather use functions vs. state variables. 3. Added 2 methods to ServiceLocator. He doesn't support Producer or Consumer (MessageAgent) services, so with a new method he does. He also doesn't support NetConnection; with the new method, he does. Since Cairngorm was made for a more request response, it feels like both of the above are halfway implemented, but for sending messages, Cairngorm works great, including Acknowledge messages for Delegates that fire the original message. In both cases, actual callbacks are handled by totally different classes that basically act as Observers, and emit events. The more specialized (for example, a channel in FDS created for Text messages, and thus Chat only) is an extension of that ConsumerObserver class, called ChatObsever, and he omits Chat specific events for those who care. They, like Delegate's, utlize ServiceLocator. I would, however, prefer you all either give me a better idea(s), christen this idea as good for handling NetConnection / FDS' consumer/producer model, and/or implement something that supports these push based technologies into Cairngorm. With the exclusion of #1, both #2, and #3 can be done via extneding the Cairngorm base classes so you're not affecting the original framework, only extending it. I'd prefer #3 be made official though, by you all somehow, some way. - Original Message - From: Steven Webster To: flexcoders@yahoogroups.com Sent: Monday, July 03, 2006 6:03 PM Subject: RE: [flexcoders] Re: Cairngorm Responder interface changes Jesse, I'd love for you to share the modifications you're making to Cairngorm, and to understand the rationale behind these changes. It's not our intention that developers would typically need to change the framework locally, and doing so certainly makes it more difficult for folks to follow us on any upgrade paths as time rolls by. Different strokes for different folks though. But if you can share your motives for changes, and the changes themselves, then we can consider rolling them into the framework if they satisfy general concerns. Best, Steven Steven WebsterPractice Director (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UKp: +44 (0) 131 338 6108 m: +44 (0) 7917 428 947 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXLSent: 03 July 2006 20:13To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: Cairngorm Responder interface changes Don't have Flex 2 open in front of me ( client hearts 1.5 ), but you can I think do:public function onResult(event:* = null):void{ResultEvent(event).result// or...var yourEvent:ResultEvent = event as ResultEvent;}I can't remember if you can cast in the function signature as:public function onResult ( event:* as ResultEvent = null )...but, either way, you can also do what I do; keep your own build of Cairngorm locally! I've yet to work on a project where the team didn't modify their build of Cairngorm to suit their needs.- Original Message - From:
RE: [flexcoders] Re: result & fault event errors:
So is this a doc issue or something the compiler is doing to ease migrations? Maybe I'm being incredibly dense here but I believe token here is an mx.rpc.AsyncToken and I don't see how those methods exists for that class. I'm glad it works but I'd sure like ot know why it does. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lownlazy000Sent: Tuesday, July 04, 2006 5:00 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: result & fault event errors: This fixed the problem! thanks heaps.I just changed this:result="event.call.resultHandler(event)"to read this:result="event.token.resultHandler(event)"and it all works again :)> I believe you need to change the references to event.call to event.token.> > --Josh> > >> > 1119: Access of possibly undefined property call through a reference> > with static type mx.rpc.events:FaultEvent.> >> > for both these lines:> > result="event.call.resultHandler(event)"> > fault="event.call.faultHandler(event)"> >> > The above lines are straight out of a Cairngorm 2 beta 3 example. Can> > anyone tell me why?> >> > Thanks in advance,> >> > Russell Munro> >> >> >> >> >> >> >> > --> > 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> >> >> >> >> >> >> >> >> __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: result & fault event errors:
This fixed the problem! thanks heaps. I just changed this: result="event.call.resultHandler(event)" to read this: result="event.token.resultHandler(event)" and it all works again :) > I believe you need to change the references to event.call to event.token. > > --Josh > > > > > 1119: Access of possibly undefined property call through a reference > > with static type mx.rpc.events:FaultEvent. > > > > for both these lines: > > result="event.call.resultHandler(event)" > > fault="event.call.faultHandler(event)" > > > > The above lines are straight out of a Cairngorm 2 beta 3 example. Can > > anyone tell me why? > > > > Thanks in advance, > > > > Russell Munro > > > > > > > > > > > > > > > > -- > > 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 > > > > > > > > > > > > > > > > > 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 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Flex 2 - Drag-n-Drop with TabNavigator
Happy Independence Day to American Based Flex developers. I am trying to drag and drop over a TabNavigator -- ie drag something over a "tab" to have it open that tab . I have done a bit of drag and drop with datagrids etc but my question is how to do I find out which of the TabNavigator's children I am "over" (will only allow drop on certain tabs etc) this obviously feeds into what child have i dropped onto. In list based controls you can use "calculateDropIndex" which according to the docs Returns the item index in the drop target where the item will be dropped. Used by the dragDrop event listener to add the items in the correct location. Not available in the TileList or HorizontalList controls. I had hoped for something similar in my TabNavigator Am I overloooking something really simple ? Hope so Thanks Wayne McFetridge --
RE: [flexcoders] Ok, now a problem with creating a new CF Remoting Project
This is a known issue with the flex builder. I was just at CFUnited, and the adobe folks knew that there was a problem with the plugin / builder if you are not using the built in server. The workaround they gave me was to create a standard flex project then right click on the project and go to compiler properties, then add “-locale en_US -services "C:\CFusionMX7\wwwroot\WEB-INF\flex\flex-enterprise-services.xml". They told me this is the only difference between the default flex project and a coldfusion remoting project. HTH, Rich Kroll Application Developer From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick Collins Sent: Tuesday, July 04, 2006 2:27 PM To: flexcoders Subject: [flexcoders] Ok, now a problem with creating a new CF Remoting Project Trying to create a new Flex Project using the Coldfusion Flash Remoting Service. First problem is it does not pull the server address from the RDS settings as I would expect. It keeps trying to access the CF standalone server on port 8500, which I do not use. On my development machine I have CF installed connected to IIS. So I uncheck the use local coldfusion server, since it's not actually accessing my local coldfusion server correctly, and changed the root URL to just be " http://localhost/" as should be correct. However, it won't validate the location of "C:\CFusionMX7\wwwroot", which is where I have coldfusion installed and where the WEB-INF/flex folder resides. However, it tells me it's an invalid server root and won't let me procede. When I use the Coldfusion CRUD Application Wizard things work flawlessly so I know all is good with my server configuration. Anyone know what might be the cause of the issue? Thanks! Nick __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] need some help.. TypeError: Error #1034:
thanks CarsonOn 7/4/06, Carson Hager <[EMAIL PROTECTED]> wrote: This no longer takes a string. It now takes a URL. The URL constructor is a string so pass in the following. new flash.net.URLRequest( "php/upload.php" ) Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint TredwaySent: Tuesday, July 04, 2006 9:54 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] need some help.. TypeError: Error #1034: I took over this project and the last thing I have to get working is the file upload..I get this error:TypeError: Error #1034: Type Coercion failed: cannot convert "php/upload.php" to flash.net.URLRequest .What would be causing this? it seems that no matter what URL i put there it doesnt work.-- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice. -- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice. __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Setting a Background Image in Flex 2 - Final
This may be the answer your looking for…. http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=""> Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clarke Bishop Sent: Tuesday, July 04, 2006 1:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting a Background Image in Flex 2 - Final I want to set a background image to match the gradient in a graphic I've got. Sounds simple, right? Just specify the backgroundImage in the Application object. However, I must be totally missing something since I've tried everything I can think of, and I still can't get any background images to display. Is there a trick? Also, I see in the Flex Style Explorer that they use a SWF with a symbol definition. When I defined a symbol in Flash 8, Flex doesn't recognize the symbol definition. Thanks for any pointers or other suggestions! Clarke __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Runtime CSS Styles Flex 2.0 B3
Hey guys, Is there any news on an osflash project for this? as it is something i could really use. I'm new to flex, but have been using flash and actionscript since flash 4, so if i can offer any assistance i'd be more than happy. Matt --- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote: > > I just majorly refactored my classes and ported them into A3. > > The stuff is working good, I am running into some problems like setting > paddingTop on a Panel with a TabNavigator gives the Panel a 1 mile long > vertical scrollbar. > > Hopefully, I don't run into to much of this kind of stuff. I will wait for > Ben, to see what the plan is before releasing any of this code. IE one code > base. > > Peace, Mike > > > On 6/6/06, Michael Schmalle <[EMAIL PROTECTED]> wrote: > > > > > > > Michael, Jason & Jeremy, perhaps we should open a project on osflash.comand start working on a common code base. > > > > I am interested in this, I would leave the whole config up to you. I have > > never done it, just tell me where I can get code and put code and I am > > there. > > > > Peace, Mike > > > > On 6/6/06, Ben Stucki <[EMAIL PROTECTED]> wrote: > > > > > > Well, it sounds like there is enough interest in this to warrant > > > further work and some indication that it won't be available in the 2.0release. Michael, Jason & Jeremy, perhaps we should open a project on > > > osflash.com and start working on a common code base. If anyone is > > > interested in contributing to this project, please email me personally. > > > Thank you. > > > > > > > > > -- > > > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of > > > *David Mendels > > > *Sent:* Tuesday, June 06, 2006 7:38 AM > > > > > > *To:* flexcoders@yahoogroups.com > > > *Subject:* RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3 > > > > > > > > > > > > Hi, > > > > > > > > > > > > This will not be in Flex 2.0. > > > > > > > > > > > > It is something we'd like to see in a future version of Flex (2.5? 3.0?) > > > but we don't have a specific date or release planned yet. We'll get to that > > > after we ship 2.0. > > > > > > > > > > > > Regards, > > > > > > David > > > > > > Adobe > > > > > > > > > -- > > > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of > > > *Jeremy Lu > > > *Sent:* Tuesday, June 06, 2006 6:51 AM > > > *To:* flexcoders@yahoogroups.com > > > *Subject:* Re: [flexcoders] Runtime CSS Styles Flex 2.0 B3 > > > > > > > > > Ely post in Ben's comment saying Adobe is working on this thing > > > (although it might not make it to the v2 release). > > > > > > Maybe engineers from Adobe can confirm this ? > > > > > > > > > On 6/6/06, *Michael Schmalle* <[EMAIL PROTECTED]> wrote: > > > > > > But to be able to do it with out going > > > through every control and using the built in setStyle would be the > > > cherry on > > > the cake. > > > > > > yeah, it's nice. > > > > > > I agree with you on Adobe, and getting a timeline. That is why I have > > > been dragging my feet on this. Knowing adobe, they did a good job and it's > > > almost done ;-) > > > > > > Peace, Mike > > > > > > > > > > > > On 6/6/06, *Jason Hawryluk* < [EMAIL PROTECTED]> wrote: > > > > > > Definitely interested in collaborating on a solid solution, even if > > > Adobe does come out with it built in at a later date. However if it's going > > > to be in the final release of Flex 2.0 I would rather not waste the > > > time. AFAIK it is not slated for Flex 2.0, but then I don't work for > > > Adobe. > > > > > > > > > > > > Can anyone from Adobe confirm or not if runtime style sheet loading will > > > be built in within the context we have been discussing? > > > > > > > > > > > > Anyway between what I have, you have, and mikes work with a little elbow > > > grease I should be able to get a solution going. Keep in mind I have not > > > looked at your code yet which may simply solve the problem. > > > > > > > > > > > > Jason > > > > > > > > > > > > > > > > > > > > > > > > -Message d'origine- > > > *De :* flexcoders@yahoogroups.com [mailto: [EMAIL PROTECTED] > > > la part de* mail > > > *Envoyé :* lundi 5 juin 2006 17:43 > > > *À :* flexcoders@yahoogroups.com > > > *Objet :* RE: [flexcoders] Runtime CSS Styles Flex 2.0 B3 > > > > > > I've done some work in this area as well, and posted an example a few > > > weeks ago on my blog ( http://blog.benstucki.net/?id=22 ). With a > > > slight change it can be used to update the style of anything in the > > > application, not just custom styles. I will try to update it toward that end > > > tonight. Also, I would be happy to collaborate with anyone else working on > > > similar functionality until we hear what Adobe's timeline is for it. > > > > > > Ben Stucki > > > http://blog.benstucki.net/ > > > -- > > > > > > * From*: "Jason Hawryluk" < [EMAIL PROTECTED]> > > > *Sent*: Mond
RE: [flexcoders] Re: Cairngorm Responder interface changes
Hi Steven; Although I risk being accused of hijacking this thread, I can suggest one change to Cairngorm: com.adobe.cairngorm.control.FrontController private function executeCommand( event : CairngormEvent ) : void { var commandToInitialise : Class = getCommand( event.type ); var commandToExecute : Command = new commandToInitialise(); event.stopPropogation(); // ß change is here commandToExecute.execute( event ); } In the case where application A dynamically loads application B into a separate application domain that is not a child of application A’s domain, the FrontController of application A will get events from application B. Since an event from application B cannot be coerced into the event class with the same name in application A, a run-time error will occur unless propagation of the event is halted in application B’s front controller. I mention this now because I’m in the process of converting our Flex 2B3 application to Flex 2 (final) and am copying the change in FrontController. Tobias. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster Sent: Monday, July 03, 2006 3:03 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm Responder interface changes Jesse, I'd love for you to share the modifications you're making to Cairngorm, and to understand the rationale behind these changes. It's not our intention that developers would typically need to change the framework locally, and doing so certainly makes it more difficult for folks to follow us on any upgrade paths as time rolls by. Different strokes for different folks though. But if you can share your motives for changes, and the changes themselves, then we can consider rolling them into the framework if they satisfy general concerns. Best, Steven Steven Webster Practice Director (Rich Internet Applications) Adobe Consulting Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK p: +44 (0) 131 338 6108 m: +44 (0) 7917 428 947 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: 03 July 2006 20:13 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm Responder interface changes Don't have Flex 2 open in front of me ( client hearts 1.5 ), but you can I think do: public function onResult(event:* = null):void { ResultEvent(event).result // or... var yourEvent:ResultEvent = event as ResultEvent; } I can't remember if you can cast in the function signature as: public function onResult ( event:* as ResultEvent = null ) ...but, either way, you can also do what I do; keep your own build of Cairngorm locally! I've yet to work on a project where the team didn't modify their build of Cairngorm to suit their needs. - Original Message - From: "ben.clinkinbeard"To: <[EMAIL PROTECTED]ups.com> Sent: Monday, July 03, 2006 3:00 PM Subject: [flexcoders] Re: Cairngorm Responder interface changes Ah ha. Actually, I had to change them to public function onResult(event:* = null):void public function onFault(event:* = null):void so that they matched the signature exactly. I guess my confusion was in that I was viewing the :* as meaning the developer could specify whatever type they wanted. I was seeing * as a kind of superclass when that is in fact not the case. I have to agree with Jester; I don't really see the point of this change. Thanks for your help, Ben --- In [EMAIL PROTECTED]ups.com, "Clint Modien" <[EMAIL PROTECTED]> wrote: > > you need to change these lines > > public function onResult(event:ResultEvent):void > public function onFault(event:FaultEvent):void > > to this... > > public function onResult(event:*):void > public function onFault(event:*)void > > On 7/3/06, ben.clinkinbeard ...> wrote: > > > > Can someone explain why it is telling me I've implemented the > > Responder methods with an incompatible signature? > > > > public function onResult(event:ResultEvent):void > > public function onFault(event:FaultEvent):void > > > > The signatures shown in the docs are > > > > public function onResult(event:* = null):void > > public function onFault(event:* = null):void > > > > What am I missing here? > > > > Thanks, > > Ben > > > > > > --- In [EMAIL PROTECTED]ups.com 40yahoogroups.com>, > > "der_kotty" wrote: > > > > > > Hi, > > > > > > I was just wondering why the com.adobe.cairngorm.business.Responder > > > interface has been changed since it has been released on Adobe Labs. > > > In Cairngorm 2.0 alpha (org.nevis.cairngorm.business.Responder) the > > > parameters of the onFault and onResult handlers were typed events > > > (Res
Re: [Junk E-Mail - LOW] [flexcoders] Ok, now a problem with creating a new CF Remoting Project
LOL, ok so how often does that happen that I updated my production server but failed to update my development server to the latest build.On 7/4/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: I had that problem... I had forgotten to install the real 7.0.2 update to CF.. I still had the B3 stuff installed. Shan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 1:27 PMTo: flexcodersSubject: [Junk E-Mail - LOW] [flexcoders] Ok, now a problem with creating a new CF Remoting Project Trying to create a new Flex Project using the Coldfusion Flash Remoting Service. First problem is it does not pull the server address from the RDS settings as I would expect. It keeps trying to access the CF standalone server on port 8500, which I do not use. On my development machine I have CF installed connected to IIS. So I uncheck the use local coldfusion server, since it's not actually accessing my local coldfusion server correctly, and changed the root URL to just be " http://localhost/" as should be correct. However, it won't validate the location of "C:\CFusionMX7\wwwroot", which is where I have coldfusion installed and where the WEB-INF/flex folder resides. However, it tells me it's an invalid server root and won't let me procede. When I use the Coldfusion CRUD Application Wizard things work flawlessly so I know all is good with my server configuration. Anyone know what might be the cause of the issue? Thanks!Nick --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Flash player support for printer resolutions > 300DPI?
Sorry, I wasn't too clear on that, Say for example you have a bitmap image which is a checkerboard pattern of 1px by 1px black and white alternating squares. The image is loaded in a Flex application. On a typical screen this will be displayed at 72 pixels per inch. Seeing as you do not have control over the DPI of the printed image with the flash.printing.PrintJob or mx.printing.FlexPrintJob classes, the only way to get a high-res printed image is by scaling down a very large on-screen image and printing it. If you set the scaleX and scaleY properties of the image to (72/300) = 0.24, and your printer is also set to 300 DPI, then the image sent to the printer should come out with one 'dot' for every pixel, if you increase the printers DPI to 600 or 1200, then you'll get 4 dots per pixel or 16 dots per pixel etc. Either way, you can see each pixel on the printed page (although you may need a magnifying glass). If you scale the above bitmap to 72/600 (0.12) and send it to the printer, it doesn't matter how high the printers DPI is set to, you can't see the difference between the white and black pixels, i.e. the data being sent to the printer is at too low a resolution. Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Setting a Background Image in Flex 2 - Final
I want to set a background image to match the gradient in a graphic I've got. Sounds simple, right? Just specify the backgroundImage in the Application object. However, I must be totally missing something since I've tried everything I can think of, and I still can't get any background images to display. Is there a trick? Also, I see in the Flex Style Explorer that they use a SWF with a symbol definition. When I defined a symbol in Flash 8, Flex doesn't recognize the symbol definition. Thanks for any pointers or other suggestions! Clarke __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] last Cellpress (back button)
There's no automated way I know of, but you could do it manually... Off the top of my head... Create an array, "indexHistory"... Add to the array every time the user selects a new row. Then, you can use the forward and backward buttons to traverse the array. If the user is in the middle of the history array, and clicks a new row, just remove any of the "forward" rows, and start adding to the end of the array again. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tonyx_788Sent: Tuesday, July 04, 2006 2:45 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] last Cellpress (back button) hello;i know this maybe a stupid question but i don't know how to do it.is there any way with MXMLto make a back and forwardlets say i have a datagrid withpedropablopacoluistonyif i click pedro and then luisthen click on the back buttonit will go back to pedroi don't wan't to use the explorer's back and forward buttontnx --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___ -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006
Re: [flexcoders] Re: Different borderstyles for HBox
oh!, good to hear that, when I read that I thought that like a limitation. Good to hear that I was wrong :)On 7/4/06, n51red < [EMAIL PROTECTED]> wrote: > I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: http://www.adobe.com/2006/mxml" layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } .boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } .boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } styleName="boxStyle1" height="50" width="150"> styleName="boxStyle2"/> --- In flexcoders@yahoogroups.com, "Carlos Rovira" <[EMAIL PROTECTED]> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > >Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > -- ::| Carlos Rovira::| http://www.carlosrovira.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [Junk E-Mail - LOW] [flexcoders] Ok, now a problem with creating a new CF Remoting Project
I had that problem... I had forgotten to install the real 7.0.2 update to CF.. I still had the B3 stuff installed. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 1:27 PMTo: flexcodersSubject: [Junk E-Mail - LOW] [flexcoders] Ok, now a problem with creating a new CF Remoting Project Trying to create a new Flex Project using the Coldfusion Flash Remoting Service. First problem is it does not pull the server address from the RDS settings as I would expect. It keeps trying to access the CF standalone server on port 8500, which I do not use. On my development machine I have CF installed connected to IIS. So I uncheck the use local coldfusion server, since it's not actually accessing my local coldfusion server correctly, and changed the root URL to just be " http://localhost/" as should be correct. However, it won't validate the location of "C:\CFusionMX7\wwwroot", which is where I have coldfusion installed and where the WEB-INF/flex folder resides. However, it tells me it's an invalid server root and won't let me procede. When I use the Coldfusion CRUD Application Wizard things work flawlessly so I know all is good with my server configuration. Anyone know what might be the cause of the issue? Thanks!Nick --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___ -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006
[flexcoders] last Cellpress (back button)
hello; i know this maybe a stupid question but i don't know how to do it. is there any way with MXML to make a back and forward lets say i have a datagrid with pedro pablo paco luis tony if i click pedro and then luis then click on the back button it will go back to pedro i don't wan't to use the explorer's back and forward button tnx Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Getting classes by name
From an earlier post by Gordon Smith from Adobe… import flash.utils.getDefinitionByName; var buttonClass:Class = Class(getDefinitionByName("mx.controls.Button")); var b:Button = new buttonClass(); Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jpwarmer Sent: Tuesday, July 04, 2006 11:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Getting classes by name is there some way to obtain an ActionScript Class by name??? Something similar to Java Class.byName("myPackage.MyClass")??? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Getting classes by name
is there some way to obtain an ActionScript Class by name??? Something similar to Java Class.byName("myPackage.MyClass")??? 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 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] A really big problem with FDS. (disappointed)
Is this because your incoming proxy doesn't let the client machines connectthrough it, or just the end point URI is wrong (like, say 'localhost' to 'mydevmahcine.atwork' ?Remember, the end point URI you compile into the Flex app, must be from thepoint of view of where it is running, and must actually get though anyfirewalls/proxy etc. Hi Tom, Yes.. the problem was solved. The problem is that my Firewall/Proxy can't view RTMP messages. So, I modified the messaging-config.xml and added the my-polling-amf channel. The dashboard chat now waits a RTMP connection. If fails, a AMF POLLING is estabilished. Works great!! thank you, Gustavo __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Flex 2 Icon in PopUpMenuButton
Hi Jason, Kelly Birr addressed this topic a week ago for a MenuBar. The same solution will work for a PopUpMenuButton. They both use the Menu class. http://groups.yahoo.com/group/flexcoders/message/41282?l=1 The icon string in your dataProvider has to be the same name as the class variable that references the icon asset. -TH--- In flexcoders@yahoogroups.com, "sourcecoderia" <[EMAIL PROTECTED]> wrote:>> Any Idea how one could set the icon, tried a few things but dosn't seem > to be working. I want an icon on the individual menu items. The data > source does have the icon set as a string and the asset is available to > the control.> > Any Ideas ?> > Jason> __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Setting row focus when user clicks in a column using ItemRenderers
I went into debug mode to examine the listData variable, it does exist, however its ALWAYS null. Any ideas what I've done wrong or not done? No matter what point I review that variable, it's always null. Thanks, Chad "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > Your item renderer should have a listData property, which is an > instance of the BaseListData class. There are rowIndex and owner > properties of BaseListData that you can use to manipulate the > selectedIndex or selectedIndices property of your dataGrid to select > a row. > > --- In flexcoders@yahoogroups.com, "csherwood999" > wrote: > > > > I've got a datagrid with 4 columns, each with a different > itemRenderer. > > > > I have noticed that I can click into any of my item Renderers > without > > actually "selecting" the entire row. How can I force the row to > be > > highlighted when the user clicks into an itemRenderer? > > > > An example with an explanation would be great! > > > > Thanks, > > > > Chad > > > Yahoo! Groups Sponsor ~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Ok, now a problem with creating a new CF Remoting Project
Trying to create a new Flex Project using the Coldfusion Flash Remoting Service. First problem is it does not pull the server address from the RDS settings as I would expect. It keeps trying to access the CF standalone server on port 8500, which I do not use. On my development machine I have CF installed connected to IIS. So I uncheck the use local coldfusion server, since it's not actually accessing my local coldfusion server correctly, and changed the root URL to just be " http://localhost/" as should be correct. However, it won't validate the location of "C:\CFusionMX7\wwwroot", which is where I have coldfusion installed and where the WEB-INF/flex folder resides. However, it tells me it's an invalid server root and won't let me procede. When I use the Coldfusion CRUD Application Wizard things work flawlessly so I know all is good with my server configuration. Anyone know what might be the cause of the issue? Thanks!Nick __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final
Yep... I had to un/reinstall to fix that problem (it was not specific to CFEclipse). Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 1:10 PMTo: flexcoders@yahoogroups.comSubject: Re: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final I figured out a work around. I only ran into the problem when I tried installing CFeclipse through the Find/Install feature. I simply downloaded the JAR and copied into the plugins folder manually and it works just fine. It is annoying that the Find/Install feature doesn't work though. On 7/4/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: I had that problem the first time I installed the Beta 3. I un-installed and re-installed, and the problem went away. Shan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 12:47 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final Has anyone else had difficulties with this? When I try to install it I get the following error, and cannot install it:Current configuration contains errors that are not corrected by the requested operation and more errors would be introduced. See details for more information. - Current configuration problems - Error retrieving "feature.xml". [error in opening zip file] - Configuration problems after the operation - Error retrieving "feature.xml ". [error in opening zip file] --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 --No virus found in this outgoing message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___ -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006
[flexcoders] last Cellpress (back button)
hello; i know this maybe a stupid question but i don't know how to do it. is there any way with MXML to make a back and forward lets say i have a datagrid with pedro pablo paco luis tony if i click pedro and then luis then click on the back button it will go back to pedro i don't wan't to use the explorer's back and forward button tnx Yahoo! Groups Sponsor ~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Flex and commercial use
Yeah, it’s the IDE that costs $499, but it’s not necessary to create Flex apps (as the compiler is free), though it does make the life with Flex much easier :-). Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacy Young Sent: Tuesday, July 04, 2006 12:45 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex and commercial use Flex apps can be developed and deployed for free. If you wish to *also* use Flex Data Services, yes, it’s free for single CPU use …How far you can take that will of course depend on the hardware for that one box! Cheers, Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichler Sent: Tuesday, July 04, 2006 12:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé. L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système. La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Flex and commercial use
$6K per CPU for 100 simultaneous users (total). No CPU or clustering limit. $20K per CPU for unlimited everything. -Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Ville Walveranta Sent: Tuesday, July 04, 2006 1:20 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex and commercial use No. It’s free for the 30 days trial. Then the cost is $499 per developer license as shown here: https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&view=ols_prod&category=/Applications/FlexBuilder&NR=0 You can use ColdFusion, PHP, ASP.NET, or Flex Data Services 2 (free for single-CPU setup, even for commercial use) as the back-end. But does someone know how much does FDS multi-CPU or multi-app license cost? I couldn’t find it on Adobe site. Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichler Sent: Tuesday, July 04, 2006 11:51 To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé. L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système. La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final
I figured out a work around. I only ran into the problem when I tried installing CFeclipse through the Find/Install feature. I simply downloaded the JAR and copied into the plugins folder manually and it works just fine. It is annoying that the Find/Install feature doesn't work though. On 7/4/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: I had that problem the first time I installed the Beta 3. I un-installed and re-installed, and the problem went away. Shan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 12:47 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final Has anyone else had difficulties with this? When I try to install it I get the following error, and cannot install it:Current configuration contains errors that are not corrected by the requested operation and more errors would be introduced. See details for more information. - Current configuration problems - Error retrieving "feature.xml". [error in opening zip file] - Configuration problems after the operation - Error retrieving "feature.xml ". [error in opening zip file] --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final
I had that problem the first time I installed the Beta 3. I un-installed and re-installed, and the problem went away. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Tuesday, July 04, 2006 12:47 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] Problem installing CFeclipse to FlexBuilder 2 final Has anyone else had difficulties with this? When I try to install it I get the following error, and cannot install it:Current configuration contains errors that are not corrected by the requested operation and more errors would be introduced. See details for more information. - Current configuration problems - Error retrieving "feature.xml". [error in opening zip file] - Configuration problems after the operation - Error retrieving "feature.xml ". [error in opening zip file] --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006 __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___ -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006
Re: [flexcoders] embeded FlashType fonts look bad
This is a bmp of the flex flashType rendering. Couldnt get googlepages to take the swf but you can see how bad it is.http://hank777.googlepages.com/examples HankOn 7/4/06, Stacy Young <[EMAIL PROTECTED]> wrote: They are offset a few pixels but I also found the default sharpness level was way too low. -Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Vinny Timmermans Sent: Tuesday, July 04, 2006 1:14 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] embeded FlashType fonts look bad BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: dinsdag 4 juli 2006 18:58 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall! Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: dinsdag 4 juli 2006 17:24 To: flexcoders@yahoogroups.com Subject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does. As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank AVIS IMPORTANT WARNING Ce message �lectronique et ses pi�ces jointes peuvent contenir des renseignements confidentiels, exclusifs ou l�galement privil�gi�s destin�s au seul usage du destinataire vis�. L'exp�diteur original ne renonce � aucun privil�ge ou � aucun autre droit si le pr�sent message a �t� transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'�tes pas le destinataire vis� du pr�sent message ou si vous l'avez re�u par erreur, veuillez cesser imm�diatement de le lire et le supprimer, ainsi que toutes ses pi�ces jointes, de votre syst�me. La lecture, la distribution, la copie ou tout autre usage du pr�sent message ou de ses pi�ces jointes par des personnes autres que le destinataire vis� ne sont pas autoris�s et pourraient �tre ill�gaux. Si vous avez re�u ce courrier �lectronique par erreur, veuillez en aviser l'exp�diteur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Flex and commercial use
But does someone know how much does FDS multi-CPU or multi-app license cost? I couldn't find it on Adobe site.Thats because they're embarrassed :)Its 6k per server for up to 100 users or 20k per server where you can have as many users as your hardware will handle. But as you need more servers each will cost 20k. Hank Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichler Sent: Tuesday, July 04, 2006 11:51 To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Problem installing CFeclipse to FlexBuilder 2 final
Has anyone else had difficulties with this? When I try to install it I get the following error, and cannot install it:Current configuration contains errors that are not corrected by the requested operation and more errors would be introduced. See details for more information. - Current configuration problems - Error retrieving "feature.xml". [error in opening zip file] - Configuration problems after the operation - Error retrieving "feature.xml ". [error in opening zip file] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] embeded FlashType fonts look bad
They are offset a few pixels but I also found the default sharpness level was way too low. -Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Vinny Timmermans Sent: Tuesday, July 04, 2006 1:14 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] embeded FlashType fonts look bad BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: dinsdag 4 juli 2006 18:58 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall! Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: dinsdag 4 juli 2006 17:24 To: flexcoders@yahoogroups.com Subject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does. As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé. L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système. La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Flex and commercial use
That\s for FlexBuilder I think he wanted to know about Flex itself, yes it is free for use commercially. I don't have the exactly details, but hopefully someone can point u to yhe right URL. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ville WalverantaSent: Tuesday, July 04, 2006 1:20 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex and commercial use No. It's free for the 30 days trial. Then the cost is $499 per developer license as shown here: https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&view=ols_prod&category=/Applications/FlexBuilder&NR=0 You can use ColdFusion, PHP, ASP.NET, or Flex Data Services 2 (free for single-CPU setup, even for commercial use) as the back-end. But does someone know how much does FDS multi-CPU or multi-app license cost? I couldn't find it on Adobe site. Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichlerSent: Tuesday, July 04, 2006 11:51To: flexcoders@yahoogroups.comSubject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé. L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système. La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Flex and commercial use
Technically, you don't need FlexBuilder. You can develop Flex applications for free with the SDK alone. To me, FlexBuilder is absolutely worth the money but it's not required. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ville WalverantaSent: Tuesday, July 04, 2006 10:20 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex and commercial use No. It’s free for the 30 days trial. Then the cost is $499 per developer license as shown here: https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&view=ols_prod&category=/Applications/FlexBuilder&NR=0 You can use ColdFusion, PHP, ASP.NET, or Flex Data Services 2 (free for single-CPU setup, even for commercial use) as the back-end. But does someone know how much does FDS multi-CPU or multi-app license cost? I couldn’t find it on Adobe site. Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichlerSent: Tuesday, July 04, 2006 11:51To: flexcoders@yahoogroups.comSubject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] need some help.. TypeError: Error #1034:
This no longer takes a string. It now takes a URL. The URL constructor is a string so pass in the following. new flash.net.URLRequest( "php/upload.php" ) Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint TredwaySent: Tuesday, July 04, 2006 9:54 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] need some help.. TypeError: Error #1034: I took over this project and the last thing I have to get working is the file upload..I get this error:TypeError: Error #1034: Type Coercion failed: cannot convert "php/upload.php" to flash.net.URLRequest .What would be causing this? it seems that no matter what URL i put there it doesnt work.-- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] embeded FlashType fonts look bad
I would but I dont have a public server available right now.HankOn 7/4/06, Nick Collins <[EMAIL PROTECTED] > wrote: Could you just put it up to your server and post the URLs?On 7/4/06, hank williams < [EMAIL PROTECTED]> wrote: My stuff looks muddy.I have a sample bmp and a sample swf that show the effect. The swf looks fine, and the jpg from my flex app looks muddy. It is 100k so I dont know if its appropriate to post to the list. But I would love to hear what people think. What is the list policy on attachments? HankOn 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 18:58To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall!Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Flex and commercial use
Flex apps can be developed and deployed for free. If you wish to *also* use Flex Data Services, yes, it’s free for single CPU use …How far you can take that will of course depend on the hardware for that one box! Cheers, Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichler Sent: Tuesday, July 04, 2006 12:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? AVIS IMPORTANT WARNING Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé. L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation. Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système. La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur. This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient. No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message. If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Flex and commercial use
No. It’s free for the 30 days trial. Then the cost is $499 per developer license as shown here: https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-US&view=ols_prod&category=/Applications/FlexBuilder&NR=0 You can use ColdFusion, PHP, ASP.NET, or Flex Data Services 2 (free for single-CPU setup, even for commercial use) as the back-end. But does someone know how much does FDS multi-CPU or multi-app license cost? I couldn’t find it on Adobe site. Ville From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of eduardopichler Sent: Tuesday, July 04, 2006 11:51 To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex and commercial use Is Flex free for commercial use on a single cpu? __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] embeded FlashType fonts look bad
Could you just put it up to your server and post the URLs?On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: My stuff looks muddy.I have a sample bmp and a sample swf that show the effect. The swf looks fine, and the jpg from my flex app looks muddy. It is 100k so I dont know if its appropriate to post to the list. But I would love to hear what people think. What is the list policy on attachments? HankOn 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 18:58To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall!Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Handle result/fault from webservice call in Cairngorm 2
With Cairngorm, have your commands implement the Command and the Responder, then you have the onResult and onFault calls to handle as you will. You pass the reference of the command to the delegate, and you should be good to go. The delegate does the real work of hitting up the webservice and the command executes the call, and handles the result of that call whether it be successful or a fault. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Tuesday, July 04, 2006 10:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Handle result/fault from webservice call in Cairngorm 2 Add event listeners on the call since he's a WebService for "fault" and "result". call.addEventListener(mx.rpc.events.FaultEvent.FAULT, onFault); call.addEventListener(mx.rpc.events.ResultEvent.RESULT, onFault); - Original Message - From: Artur Kordowski To: flexcoders@yahoogroups.com Sent: Tuesday, July 04, 2006 6:15 AM Subject: [flexcoders] Handle result/fault from webservice call in Cairngorm 2 I setup an new Project in Flex 2 using Cairngorm 2 and now I'm trying to handle result/fault coming from a webservice. I created a subclass of ServiceLocator for the webservice. When I debug the call it works and I get data: var call:AsyncToken = ServiceLocator.getInstance().getService("webservice").getData(); But now I dont know how I can handle this result/fault. In Flex 1.5 we have do it this way: var call:Object= ServiceLocator.getInstance().getService("webservice").getData(); call.resultHandler = resultHandler(event); call.faultHandler = faultHandler(event); But now it dont work and I have no idea how to do it. I also looking on Adobe Labs but there ist still docs for Cairngorm 0.99. So, can any one help me to solve this problem? Thanks, Artur __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] embeded FlashType fonts look bad
My stuff looks muddy.I have a sample bmp and a sample swf that show the effect. The swf looks fine, and the jpg from my flex app looks muddy. It is 100k so I dont know if its appropriate to post to the list. But I would love to hear what people think. What is the list policy on attachments? HankOn 7/4/06, Vinny Timmermans <[EMAIL PROTECTED]> wrote: BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 18:58To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall!Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Re: Different borderstyles for HBox
Thats pretty cool ben!HankOn 7/4/06, Ben Stucki <[EMAIL PROTECTED]> wrote: I think the correct solution would be to use a custom skin (programmatic or graphic). Feel free to use my programmatic CSS3Box skin and CSSManager classes or just steal some of the code to create your own custom skin. To get started go to my CSS3Box Explorer and paste the following code into the "Input CSS" field. .example { border-color: blue blue green green; border-width: 5px; } That should generate the same result as below with allot less development effort and less cpu usage. It's important to note that these styles aren't recognized by default, but only by the custom classes being used. You can right click on the app to view the source and read more about the classes at my blog entry. Thanks. Ben Stucki http://blog.benstucki.net/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Tuesday, July 04, 2006 10:17 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Different borderstyles for HBox No, there is nothing wrong with using boxes to place borders around components. The issue is that the layering technique where you use four containers to show four different color sides might be a bit wasteful of CPU depending on how much you do it. But it is pretty standard to use boxes with a border color and style. Hank On 7/4/06, Jonas Windey <[EMAIL PROTECTED] > wrote: Thanks a lot, that did the trick. So HBoxes shouldn't be used to place a border around components? From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of n51red Sent: dinsdag 4 juli 2006 14:59 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Different borderstyles for HBox > I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: http://www.adobe.com/2006/mxml" layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } ..boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } ..boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } styleName="boxStyle1" height="50" width="150"> styleName="boxStyle2"/> --- In flexcoders@yahoogroups.com, "Carlos Rovira" <[EMAIL PROTECTED]> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > > Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > __ NOD32 1.1641 (20060704) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS
[flexcoders] need some help.. TypeError: Error #1034:
I took over this project and the last thing I have to get working is the file upload..I get this error:TypeError: Error #1034: Type Coercion failed: cannot convert "php/upload.php" to flash.net.URLRequest .What would be causing this? it seems that no matter what URL i put there it doesnt work.-- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice. __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat
No, you should not use Arrays as dataProviders. From the Migration.pdf: “Do not use raw Arrays or Objects in your dataProvider property if the data provider's values change. The control that displays the data will not get updated when the underlying data changes. Instead, convert your provider to an ArrayCollection class, as in the following example:” Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Tuesday, July 04, 2006 10:01 AM To: flexcoders@yahoogroups.com Subject: [Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat --- In [EMAIL PROTECTED]ups.com, "Shannon Hicks" <[EMAIL PROTECTED]> wrote: > > According to the docs, dataChange fires when the value of the dataProvider > param changes. Now, to my best understanding, that means that if you > switched to a *different* dataProvider, the event would fire. I'm still confused. Is it not advisible to use arrays as dataProviders? I would like to use an array as a dataProvider for my dataGrid At some point I completely change the values of the array (therefore the dataProvider value changes) In my actual implementation I have a datagrid where the dataprovider references a bindable array in my model. When this value updates I hope to catch the dataChange event. Somewhere between a search request and response, the array gets updated: model.searchResultsList = Array(event.call.responseObject) My view references the updated value, which should fire tempFn(): dataProvider="{model.searchResultsList}" > "getText" /> Thanks for your time and patience Tracy __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] embeded FlashType fonts look bad
BTW. They should not look "muddy", but Flex moves them a few pixels.? Vinny From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 18:58To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] embeded FlashType fonts look bad Oh, thanks much Vinny. now I wont bang my head against the wall!Hank On 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] how to create a component in AS?
I have not looked at this example, but presumably it extends some container, like Canvas or VBox. You will want to use the createChild() method of that container to add your label. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkale Sent: Tuesday, July 04, 2006 8:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to create a component in AS? on the Adobe website there is a tutorial to create an AS clock. here : http://www.adobe.com/devnet/flex/articles/creating_comp.html i want do add a label to show the time in digits on top of all. how do i create this label inside the AS file? __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: e4x (undefined has no properties)
--- In flexcoders@yahoogroups.com, Antonio Silva <[EMAIL PROTECTED]> wrote: > > Hi i'm using Flex 2 Beta1 > > > > also i would like to make another question > how can i load another xml file when pressing a button and automatically unload the other one?? > > > __ > Correo Yahoo! > Espacio para todos tus mensajes, antivirus y antispam ¡gratis! > Regístrate ya - http://correo.yahoo.com.mx/ > i just figure it all out -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: Beta 3 WebService Result
I assume you mean set the resultFormat in the . I have set that as well as makeObjectsBindable="false" in the and but I still comes back as an array of complex strings. If I look at the last result in the debugger it looks like this. item=Array(@12345) [0]=mx.rpc.xml.ComplexString(@23423) [1]=mx.rpc.xml.ComplexString(@745545) I am expecting something like item=Object(@12345) [0]=category(@23423) [1]=categoryid(@745545) Then I will be able to reference it by lastResult.items.item.category instead of lastResult.items.item[0]. Any ideas on why I am getting complex strings? Is this something to do with how my wsdl is structured? Thanks --- In flexcoders@yahoogroups.com, "Kelly Birr" <[EMAIL PROTECTED]> wrote: > > If you set makeObjectsBindable="false" and resultFormat="object" in the > webservice tag you should get arrays of objects. > > > > - Kelly > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of someguy7_7 > Sent: Monday, July 03, 2006 2:37 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Beta 3 WebService Result > > I am finally getting back to this issue. I have since moved to Flex 2.0 > released version. Is there no way for me to use resultFormat="object" if the > resulting data contains Object Arrays? Or in flex 2.0 are we required to use > e4x? > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > Either way, > > > > Change the resultFormat: > > > > > > > > Or, cast lastResult to an XML var. > > > > -TH > > > > --- In flexcoders@yahoogroups.com, "someguy7_7" > > wrote: > > > > > > Do you mean change the operation.resultFormat to "xml"? Or somehow > > > cast the lastResult of the operation to a variable typed to "XML"? > > > > > > Brian > > > --- In flexcoders@yahoogroups.com, "Tim Hoff" wrote: > > > > > > > > The default return type from a web service call is object(). If > > you > > > > cast this to XML, you should be able to get the same > > funtionality. > > > > > > > > -TH > > > > > > > > --- In flexcoders@yahoogroups.com, "Brian McPheeters" > > > > wrote: > > > > > > > > > > We are porting an application from 1.5 to 2.0 Beta 3. The app > > > > connects > > > > > to a couple different web services to populate a ListView. In > > the > > > > 1.5 > > > > > version the result from the web service is an object that I > > can > > > > pull > > > > > data for the list view from using the result xml element > > names. > > > > > > > > > > Ex: currentitem.category, currentitem.categoryid > > > > > > > > > > But in 2.0 Beta 3 the result is interpreted by flex as an > > Array. > > > > > currentitem = Array (@38cceb21). This causes me to index into > > the > > > > array > > > > > to get the values. > > > > > > > > > > Ex: currentitem[0],currentitem[1] > > > > > > > > > > Both apps are using the exact same webservices. Do I need to > > > > somehow > > > > > cast the result from the webservice to an object? Any ideas on > > > > what is > > > > > causing this and how to get it so I can reference by element > > name > > > > in 2.0 > > > > > Beta 3? > > > > > > > > > > Thanks > > > > > Brian > > > > > > > > > > > > > > > > > > > > > > -- > 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 > Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Flex and commercial use
Is Flex free for commercial use on a single cpu? -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Re: Different borderstyles for HBox
I think the correct solution would be to use a custom skin (programmatic or graphic). Feel free to use my programmatic CSS3Box skin and CSSManager classes or just steal some of the code to create your own custom skin. To get started go to my CSS3Box Explorer and paste the following code into the “Input CSS” field. .example { border-color: blue blue green green; border-width: 5px; } That should generate the same result as below with allot less development effort and less cpu usage. It’s important to note that these styles aren’t recognized by default, but only by the custom classes being used. You can right click on the app to view the source and read more about the classes at my blog entry. Thanks. Ben Stucki http://blog.benstucki.net/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams Sent: Tuesday, July 04, 2006 10:17 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Different borderstyles for HBox No, there is nothing wrong with using boxes to place borders around components. The issue is that the layering technique where you use four containers to show four different color sides might be a bit wasteful of CPU depending on how much you do it. But it is pretty standard to use boxes with a border color and style. Hank On 7/4/06, Jonas Windey <[EMAIL PROTECTED] > wrote: Thanks a lot, that did the trick. So HBoxes shouldn't be used to place a border around components? From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of n51red Sent: dinsdag 4 juli 2006 14:59 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Different borderstyles for HBox > I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: http://www.adobe.com/2006/mxml" layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } ..boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } ..boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } styleName="boxStyle1" height="50" width="150"> styleName="boxStyle2"/> --- In flexcoders@yahoogroups.com, "Carlos Rovira" <[EMAIL PROTECTED]> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > > Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > __ NOD32 1.1641 (20060704) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] embeded FlashType fonts look bad
Oh, thanks much Vinny. now I wont bang my head against the wall!HankOn 7/4/06, Vinny Timmermans < [EMAIL PROTECTED]> wrote: Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Re: Override default keyboard behaviours
Hello, 1) The default behavior for tabbing is the TAB key. If you want to control the order of tabbing between controls, you would set the tabIndex of the control. To disable tabbing, set the control's tabEnabled property to false. 2) You can trap most keys with an eventListener for the KeyboardEvent.KEY_DOWN event. There are a lot of examples in the help docs. Unfortunately, you are going to run into a problem with the function keys that the browser uses. IE receives notification of the keyboard event before Flex does. By the time Flex traps the event; IE has already performed a function. To my knowledge, there isn't a current workaround. -TH --- In flexcoders@yahoogroups.com, "hans73it" <[EMAIL PROTECTED]> wrote: > > I'm working on the porting of an Oracle Forms application to Flex. > My customer wants the same keyboard functionalities of the old > application and i've some problems: > 1) I've to implement my focus management using the TAB and SHIFT+TAB > keys. How can i disable the default behaviour? > 2) I've to use F1, F2 , F... keys with custom actions but i want to > disable the internet explorer key handling because for example it > opens an help window on F1 key. > I've tried the stop propagation mechanism but it doesn't work. > How can I disable the default keyboard handling? > > Thanks > -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] embeded FlashType fonts look bad
Hank, This is a known issue. A number of people have brought these issues with FlashType to the attention of the Flex team. I assume/hope it gets fixed when Flex 2.0.1 arrives. Vinny From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williamsSent: dinsdag 4 juli 2006 17:24To: flexcoders@yahoogroups.comSubject: [flexcoders] embeded FlashType fonts look bad I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does.As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] A really big problem with FDS. (disappointed)
On Tuesday 04 July 2006 16:20, Luís Gustavo Sanabio wrote: > with FDS. On FDS samples, I can navigate at applications (mxml) fine, but > Collaboration Dashboard, FlexCab, Notes and others show "Send Failed" error > messages. Is this because your incoming proxy doesn't let the client machines connect through it, or just the end point URI is wrong (like, say 'localhost' to 'mydevmahcine.atwork' ? Remember, the end point URI you compile into the Flex app, must be from the point of view of where it is running, and must actually get though any firewalls/proxy etc. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: listData rowIndex ) [f2 final]
Hi Steve, Have you considered using DataGrid.selectedIndex. This is the same index as the dataProvider item. -TH --- In flexcoders@yahoogroups.com, "Steve Cox" <[EMAIL PROTECTED]> wrote: > > I'm hoping I'm making a stupid mistake somewhere regarding rowIndex from > within an item Renderer. > > The docs state: > rowIndex : int > The index of the item in the data provider. > > However in practice the rowIndex I'm actually getting is the rowIndex of > the DataGrid itself, not the dataProvider. So for example if I were to > click onto an item it's rowIndex may be 7, but scrolling down a little > the rowIndex changes. This is obviously not the rowIndex of the > provider, but the datagrid. > > I'm using the following code: > > var evt:DataGridItemEvent = new DataGridItemEvent("editItem"); > evt.rowIndex = listData["rowIndex"]; > var owner:DataGrid = listData["owner"]; > owner.dispatchEvent(evt); > > Where DataGridItemEvent is a simple custom event. > > Any clues? > > Cheers, Steve > 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 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Array of object types returned from remote objects
Tom if you want to avoid casting all away in your flex app you can follow the "new" rules for mapping cfcs & AS. Instead of returning an array of struts, return an array of components with define in them (very same order or it won't work). Better, right click on your AS file and use the CF extensions to generate your cfc. 1) bind your AS class to your cfc generated object 2) in your remote function call define returntype="mypath.to.my.cfc[]" <--- return type of array of mypath.to.my.cfc (don't know if it's mandatory) If it's not clear , generate your AS & CFC based on your table and check what was generated. João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: terça-feira, 4 de Julho de 2006 16:27 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Array of object types returned from remote objects On Tuesday 04 July 2006 16:11, João Fernandes wrote: > If you're using ColdFusion why don't you map your AS class to your CFC > and Sounds good- I take it that says 'when I invoke this RemoteObject, the results are of this type ? Do you have a pointer how to do this ? > get those objects correctly translated? Are you returning Reactor's TO > by any chance? No, not in this case :-) It's an Array of Struts at the ColdFusion end, with the Strut having key/value pairs that match the properties of the ActionScript value object. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] listData rowIndex ) [f2 final]
I’m hoping I’m making a stupid mistake somewhere regarding rowIndex from within an item Renderer. The docs state: rowIndex : int The index of the item in the data provider. However in practice the rowIndex I’m actually getting is the rowIndex of the DataGrid itself, not the dataProvider. So for example if I were to click onto an item it’s rowIndex may be 7, but scrolling down a little the rowIndex changes. This is obviously not the rowIndex of the provider, but the datagrid. I’m using the following code: var evt:DataGridItemEvent = new DataGridItemEvent("editItem"); evt.rowIndex = listData["rowIndex"]; var owner:DataGrid = listData["owner"]; owner.dispatchEvent(evt); Where DataGridItemEvent is a simple custom event. Any clues? Cheers, Steve __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] embeded FlashType fonts look bad
I am trying to use flashtype fonts, which involves embedding the font in a swf and then importing the font from a swf into flex. The problem is that flex seems to be rendering these fonts much less well than flash does. As a test, I have text in the swf that I am embedding. The text looks fine when displayed in this swf. When I import the font and display it in my app, the font looks really muddy. It looks as if it is not using all that cool font rendering stuff that is in flash 8. The edges are extremely soft. I am wondering if anyone has had any experience in getting crisp embedded fonts. By the way I have been playing with fontAntiAliasType, fontGridType, and fontSharpness with the idea that adjusting these might fix the problem, thought nothing has had any effect. Hank __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Re: Different borderstyles for HBox
No, there is nothing wrong with using boxes to place borders around components. The issue is that the layering technique where you use four containers to show four different color sides might be a bit wasteful of CPU depending on how much you do it. But it is pretty standard to use boxes with a border color and style. HankOn 7/4/06, Jonas Windey <[EMAIL PROTECTED] > wrote: Thanks a lot, that did the trick. So HBoxes shouldn't be used to place a border around components? From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of n51red Sent: dinsdag 4 juli 2006 14:59 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Different borderstyles for HBox > I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: http://www.adobe.com/2006/mxml" layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } ..boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } ..boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } styleName="boxStyle1" height="50" width="150"> styleName="boxStyle2"/> --- In flexcoders@yahoogroups.com, "Carlos Rovira" <[EMAIL PROTECTED]> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > > Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > __ NOD32 1.1641 (20060704) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Array of object types returned from remote objects
On Tuesday 04 July 2006 16:11, João Fernandes wrote: > If you're using ColdFusion why don't you map your AS class to your CFC and Sounds good- I take it that says 'when I invoke this RemoteObject, the results are of this type ? Do you have a pointer how to do this ? > get those objects correctly translated? Are you returning Reactor's TO by > any chance? No, not in this case :-) It's an Array of Struts at the ColdFusion end, with the Strut having key/value pairs that match the properties of the ActionScript value object. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] A really big problem with FDS. (disappointed)
Hi all. I'm really disappointed and surprised with FDS message system. My company uses a HTTP Proxy and my clients machines can't comunicate with FDS. On FDS samples, I can navigate at applications (mxml) fine, but Collaboration Dashboard, FlexCab, Notes and others show "Send Failed" error messages. On my company main machine (direct dsl connection) the samples works fine, but not at the stations (using HTTP Proxy). I disappointed, because I think that is a lot of client users around the Internet over a HTTP proxy. So, I will use a PHP instead FDS. Ideas? Gustavo __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Array of object types returned from remote objects
I think (I might be wrong), that arrayElementType can only be defined for Arrays and not for ArrayCollection. "These is filled in in the result handler of a service, which is having an array of objects sent to it. These objects have the same properties as the AS clas com.hw.foo.bar.vo.FileVO" If you're using ColdFusion why don't you map your AS class to your CFC and get those objects correctly translated? Are you returning Reactor's TO by any chance? João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: terça-feira, 4 de Julho de 2006 15:05 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Array of object types returned from remote objects On Tuesday 04 July 2006 14:15, João Fernandes wrote: > Are you applying this to an array or an ArrayCollection? My cairngorm2 model declares a public property that is an arraycollection: public var rejectedCreationRequests:ArrayCollection; These is filled in in the result handler of a service, which is having an array of objects sent to it. These objects have the same properties as the AS clas com.hw.foo.bar.vo.FileVO, and are saved in the model: accfiles:Array = event.result.awaitingCollectionByArchiving as Array; model.rejectedCreationRequests = new ArrayCollection(files); Elsewhere in the app, I have a datagrid: mx:DataGrid dataProvider="model.rejectedCreationRequests" id="grid" At some other points in the code, I want to refer to grid.selectedItem and/or model.rejectedCreationRequests[i] and get back a com.hw.foo.bar.vo.FileVO Casting ( as FileVO) or the ArrayElementType hint don't seem to work. Does that make it clearer ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: Different borderstyles for HBox
I wouldn't say that. The issue is that containers carry with them a substantial processing burden. So it you've got a lot of components visible (say, 20 or 30) with borders added to them in this way, you may start to notice a lag as the components are rendered. N51 --- In flexcoders@yahoogroups.com, "Jonas Windey" <[EMAIL PROTECTED]> wrote: > > So HBoxes shouldn't be used to place a > border around components? > Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Flex print jobs
Has anyone else had problems using the printJob classes ? It seems to be failing silently for me. printJob.start() is returning OK etc. etc. index.mxml: http://www.adobe.com/2006/mxml"; xmlns:print="com.halliwells.flex.archiving.*" height="100%" width="100%"> 0123456 My ref a nice logn description that goes on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and on and CoverSheetPrintView.mxml: http://www.adobe.com/2006/mxml"; backgroundColor="#FF"> @font-face { src: url("/fonts/IDAutomationHC39M_Free.ttf"); fontFamily: myFont; } mystyleEmbed1 { fontFamily:myFont; fontWeight:normal; fontSize: 84; } (this is on Windows, but test pages to the same network printer come out fine) -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. Yahoo! Groups Sponsor ~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Date object
Why does the date object in flex 2 b3 change time zones? For example, if I create a new date like this: Var last_year:Date = new Date(‘2005/12/31’); (using – instead of / doesn’t work for some reason) Var now:Data = "" Date(); The last_year variable is in GMT + 1 (I live in the Netherlands so that is correct); The now variable is in GMT + 2 This behaviour is replicated in DateFields. __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Handle result/fault from webservice call in Cairngorm 2
Add event listeners on the call since he's a WebService for "fault" and "result". call.addEventListener(mx.rpc.events.FaultEvent.FAULT, onFault); call.addEventListener(mx.rpc.events.ResultEvent.RESULT, onFault); - Original Message - From: Artur Kordowski To: flexcoders@yahoogroups.com Sent: Tuesday, July 04, 2006 6:15 AM Subject: [flexcoders] Handle result/fault from webservice call in Cairngorm 2 I setup an new Project in Flex 2 using Cairngorm 2 and now I'm trying to handle result/fault coming from a webservice. I created a subclass of ServiceLocator for the webservice. When I debug the call it works and I get data: var call:AsyncToken = ServiceLocator.getInstance().getService("webservice").getData(); But now I dont know how I can handle this result/fault. In Flex 1.5 we have do it this way: var call:Object= ServiceLocator.getInstance().getService("webservice").getData(); call.resultHandler = resultHandler(event); call.faultHandler = faultHandler(event); But now it dont work and I have no idea how to do it. I also looking on Adobe Labs but there ist still docs for Cairngorm 0.99. So, can any one help me to solve this problem? Thanks, Artur __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Re: Different borderstyles for HBox
Thanks a lot, that did the trick. So HBoxes shouldn’t be used to place a border around components? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of n51red Sent: dinsdag 4 juli 2006 14:59 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Different borderstyles for HBox > I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: 8"?> http://www.adobe.com/2006/mxml" layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } ..boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } ..boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } styleName="boxStyle1" height="50" width="150"> styleName="boxStyle2"/> --- In [EMAIL PROTECTED]ups.com, "Carlos Rovira" ...> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira ...> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > > Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > __ NOD32 1.1641 (20060704) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Handle result/fault from webservice call in Cairngorm 2
On Tuesday 04 July 2006 11:15, Artur Kordowski wrote: > I setup an new Project in Flex 2 using Cairngorm 2 and now I'm trying to > handle result/fault coming from a webservice. I created a subclass of > ServiceLocator for the webservice. When I debug the call it works and I get > var call:AsyncToken = > ServiceLocator.getInstance().getService("webservice").getData(); Eww. Why not use a delegate ? > still docs for Cairngorm 0.99 That had delegates that worked the same way as in 2.0 -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Array of object types returned from remote objects
On Tuesday 04 July 2006 14:15, João Fernandes wrote: > Are you applying this to an array or an ArrayCollection? My cairngorm2 model declares a public property that is an arraycollection: public var rejectedCreationRequests:ArrayCollection; These is filled in in the result handler of a service, which is having an array of objects sent to it. These objects have the same properties as the AS clas com.hw.foo.bar.vo.FileVO, and are saved in the model: accfiles:Array = event.result.awaitingCollectionByArchiving as Array; model.rejectedCreationRequests = new ArrayCollection(files); Elsewhere in the app, I have a datagrid: mx:DataGrid dataProvider="model.rejectedCreationRequests" id="grid" At some other points in the code, I want to refer to grid.selectedItem and/or model.rejectedCreationRequests[i] and get back a com.hw.foo.bar.vo.FileVO Casting ( as FileVO) or the ArrayElementType hint don't seem to work. Does that make it clearer ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Flex 2 Icon in PopUpMenuButton
Any Idea how one could set the icon, tried a few things but dosn't seem to be working. I want an icon on the individual menu items. The data source does have the icon set as a string and the asset is available to the control. Any Ideas ? Jason -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] Dat
--- In flexcoders@yahoogroups.com, "Shannon Hicks" <[EMAIL PROTECTED]> wrote: > > According to the docs, dataChange fires when the value of the dataProvider > param changes. Now, to my best understanding, that means that if you > switched to a *different* dataProvider, the event would fire. I'm still confused. Is it not advisible to use arrays as dataProviders? I would like to use an array as a dataProvider for my dataGrid At some point I completely change the values of the array (therefore the dataProvider value changes) In my actual implementation I have a datagrid where the dataprovider references a bindable array in my model. When this value updates I hope to catch the dataChange event. Somewhere between a search request and response, the array gets updated: model.searchResultsList = Array(event.call.responseObject) My view references the updated value, which should fire tempFn(): Thanks for your time and patience Tracy Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Array of object types returned from remote objects
Are you applying this to an array or an ArrayCollection? João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED] -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: terça-feira, 4 de Julho de 2006 13:27 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Array of object types returned from remote objects On Tuesday 04 July 2006 13:17, Tom Chiverton wrote: > I don't need to put the fully qualified class name in the hint do I ? Didn't work > Or change the declaration / add hint in the model for the > ArrayCollection to have the same hint ? Add the hint, fully qualified and not, still didn't work. This is going to be one of those 'easy when you know how' ones isn't it ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] CF Flash Remoting project results in Jrun servlet error
If I attempt to set up a project using the above wizard, running the project in a browser e.g http://localhost:8500/test/bin/main.html produces the error 404 /test/bin/main.html. This applies even if I am not attempting any remoting e.g just putting a button on the page. The same project done in the basic method produces the correct outcome If I add the additional compiler argument -services "C:\CFusionMX7\wwwroot\WEB-INF\flex\services-config.xml" -locale en_US to a basic project, the page loads correctly. However I cannot make any remote connections work - just get busy cursor Any ideas on what I can do. Is there a log file somewhere I should be accessing. I cannot determine its whereabouts Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: FocusManager problem
Turns out this error was occuring because name of the focusManager variable in the focusOnInput() function was clashing with the mx.core.UIComponent.focusManager property. So the problem was resolved by renaming the variable. --- In flexcoders@yahoogroups.com, "n51red" <[EMAIL PROTECTED]> wrote: > > Hello, > > After migrating an application from f2b3 to the final release of Flex > 2 a new problem has emerged involving the FocusManager. > > I use a FocusManager to focus on a TextInput when its parent becomes > visible. The text input does indeed take the focus and the component > responds to the keyboard without any problems. After this, however, > all mouse clicks in the application give the following error: > > ArgumentError: Error #2025: The supplied DisplayObject must be a > child of the caller. > at flash.display::DisplayObjectContainer/getChildIndex() > at mx.managers::SystemManager/getChildIndex() > at mx.managers::SystemManager/::mouseDownHandler() > > If I click "continue" in the error dialogue the same thing happens > when I next click the mouse. > However, if I click "dismiss all" the problem goes away altogether > and the application responds to clicks as it should. > > After experimenting it appears to be the instantiation of the > FocusManager instance rather than calling its setFocus method that > causes the problem. > > His is the function I call in response to show events on my component: > > private function focusOnInput():void > { > var focusManager:FocusManager=new FocusManager(this); > focusManager.setFocus(searchTextInput); > } > > Does any one know what's going on here or what I might be able to do > about it? > > Thanks, > N51 > 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 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: Different borderstyles for HBox
> I remember read a few days ago that these > invisible components can't be styled. I seems you've been mislead Carlos. Components like HBox and VBox are invisible by default, but styles like backgroundColor do work. Hank's suggestion about using nesting works well (see example), but has implications for performance if it is used on a large number of components. Example code: http://www.adobe.com/2006/mxml"; layout="vertical" horizontalAlign="center" verticalAlign="middle"> Application{ backgroundColor:white; color:black; } .boxStyle1{ borderStyle:"solid"; borderThickness:5; borderColor:blue; borderSides:bottom, left; } .boxStyle2{ borderStyle:"solid"; borderThickness:10; borderColor:green; borderSides:top, right; } --- In flexcoders@yahoogroups.com, "Carlos Rovira" <[EMAIL PROTECTED]> wrote: > > Hank, > > In general visual containers can be styled, but we are talking about Layout > Containers (HBox, VBox,...), and I remember read a few days ago that these > invisible components can't be styled. > > On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: > > > > Containers can definitely be styled, but I am not sure that you can > > assign a different color to different sides. That might require skinning. > > You could use scale9 to do it. I know its not as easy as styles, but I > > *think* that may be your only option. You can turn off certain sides and > > turn on other sides, so perhaps you could do something with layering, but > > thats all I can think of. > > > > Hank > > > > On 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: > > > > > AFAIK, containers for laying out other content can't be styled > > > > > > > > > > > > > > > On 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: > > > > > > > >Hi, is it possible to give a HBox different border colors for each > > > > side? Like border-right: solid 1px #ccc in css? > > > > > > > > > > > > > > > > Thanks! > > > > > > > > > > > > > > > > > -- > > > ::| Carlos Rovira > > > ::| http://www.carlosrovira.com > > > > > > > > > > > > > -- > ::| Carlos Rovira > ::| http://www.carlosrovira.com > Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in Dat
According to the docs, dataChange fires when the value of the dataProvider param changes. Now, to my best understanding, that means that if you switched to a *different* dataProvider, the event would fire. Since all you're doing is changing the values inside the arrayCollection (or array before), it's not firing. That's why I suggested the collectionChange event. In this scenario, I'd create a custom event in your component, and fire it when collectionChange is fired. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11Sent: Tuesday, July 04, 2006 1:06 AMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] [flexcoders] DataChange event in Dat --- In [EMAIL PROTECTED]ups.com, "Shannon Hicks" <[EMAIL PROTECTED]> wrote:>> Looks like now you want to use the arrayCollection.collectionChangeevent to> trap it.The thing is that I need the dataChange event to fire as soon as datahas been updated in that particular view. In my actual code thearrayCollection sits in my Model and the arrayCollection changed eventwould not be captured in the particular view.Am I not using the dataChange event correctly? In what instances doesit work?RegardsTracy --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.8/380 - Release Date: 6/30/2006 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___ -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.8/381 - Release Date: 7/3/2006
[flexcoders] how to create a component in AS?
on the Adobe website there is a tutorial to create an AS clock. here : http://www.adobe.com/devnet/flex/articles/creating_comp.html i want do add a label to show the time in digits on top of all. how do i create this label inside the AS file? Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: New text component problem (flex 2 final release)
This bug is with Adobe now. A workaround it to set the minHeight property of the text components. --- In flexcoders@yahoogroups.com, "n51red" <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm in the process of migrating an appliation from flex 2 beta 3 to the > flex 2 final release and I have come accross a new problem with > adjacent text components inside VBoxes. It appears that when the > positions of the text components are recalculated they momentarily > appear on top of each other before being displayed in the correct > place. This appears not to be a problem with HBoxes. Does anyone know > why this might be occuring and what I can do to get around it? > > Thanks, > Nick > Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Different borderstyles for HBox
Hank,In general visual containers can be styled, but we are talking about Layout Containers (HBox, VBox,...), and I remember read a few days ago that these invisible components can't be styled. On 7/4/06, hank williams <[EMAIL PROTECTED]> wrote: Containers can definitely be styled, but I am not sure that you can assign a different color to different sides. That might require skinning. You could use scale9 to do it. I know its not as easy as styles, but I *think* that may be your only option. You can turn off certain sides and turn on other sides, so perhaps you could do something with layering, but thats all I can think of. HankOn 7/4/06, Carlos Rovira < [EMAIL PROTECTED]> wrote: AFAIK, containers for laying out other content can't be styledOn 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: Hi, is it possible to give a HBox different border colors for each side? Like border-right: solid 1px #ccc in css? Thanks! -- ::| Carlos Rovira::| http://www.carlosrovira.com -- ::| Carlos Rovira::| http://www.carlosrovira.com __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Array of object types returned from remote objects
On Tuesday 04 July 2006 13:17, Tom Chiverton wrote: > I don't need to put the fully qualified class name in the hint do I ? Didn't work > Or change the declaration / add hint in the model for the ArrayCollection > to have the same hint ? Add the hint, fully qualified and not, still didn't work. This is going to be one of those 'easy when you know how' ones isn't it ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Handle result/fault from webservice call in Cairngorm 2
I setup an new Project in Flex 2 using Cairngorm 2 and now I'm trying to handle result/fault coming from a webservice. I created a subclass of ServiceLocator for the webservice. When I debug the call it works and I get data: var call:AsyncToken = ServiceLocator.getInstance().getService("webservice").getData(); But now I dont know how I can handle this result/fault. In Flex 1.5 we have do it this way: var call:Object= ServiceLocator.getInstance().getService("webservice").getData(); call.resultHandler = resultHandler(event); call.faultHandler = faultHandler(event); But now it dont work and I have no idea how to do it. I also looking on Adobe Labs but there ist still docs for Cairngorm 0.99. So, can any one help me to solve this problem? Thanks, Artur __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Override default keyboard behaviours
I'm working on the porting of an Oracle Forms application to Flex. My customer wants the same keyboard functionalities of the old application and i've some problems: 1) I've to implement my focus management using the TAB and SHIFT+TAB keys. How can i disable the default behaviour? 2) I've to use F1, F2 , F... keys with custom actions but i want to disable the internet explorer key handling because for example it opens an help window on F1 key. I've tried the stop propagation mechanism but it doesn't work. How can I disable the default keyboard handling? Thanks Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] E4X (PLEASE READ ANY CLUE WILL HELP)
Tom Chiverton wrote: > On Monday 03 July 2006 23:12, tonyx_788 wrote: > >> IS IT POSSIBLE TO USE THE OPENOFFICE DOCUMENT INSTEAD OF DOING THE >> CHANGE TO XML BY TIPYING ALL OVER AGAIN >> > > Yes. OpenOffice files are just ZIP archives containing XML. > > >> SOME DOCS >> > > Have you tried the OpenOffice site ? > > I think you want server side program that (using xslt) generate openoffice xml doc with swf data, compress them. OO docs are rather big regards to visual information stored there. Robert -- Letnia wyprzedaz aparatow cyfrowych! Aparat Panasonic 5mln pikseli 400zl taniej! http://www.hoopla.pl/about_pr1.php?&ref=40 Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Offline / OCC in 2.0?
Me too! ;-) Paul Ihrig wrote: i would be very interested in this as well. trying to come up with an outline to collect data in the field for our social workers. so they can update the db when they get internet access, after they have collected the data -- __ Phil Marston Learning Technologist Learning Technology Unit Edward Wright G33, University of Aberdeen, Aberdeen, AB24 3QY, UK [EMAIL PROTECTED] Tel: +44(0)1224 273329 / +44(0)7798 723660 http://www.abdn.ac.uk/diss/ltu/pmarston/ http://www.abdn.ac.uk/diss/ltu/ __ The University of Aberdeen Open Day 29th August 2006 Booking is essential www.abdn.ac.uk/openday email [EMAIL PROTECTED] or call 0800 027 1495 __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Different borderstyles for HBox
Containers can definitely be styled, but I am not sure that you can assign a different color to different sides. That might require skinning. You could use scale9 to do it. I know its not as easy as styles, but I *think* that may be your only option. You can turn off certain sides and turn on other sides, so perhaps you could do something with layering, but thats all I can think of. HankOn 7/4/06, Carlos Rovira <[EMAIL PROTECTED]> wrote: AFAIK, containers for laying out other content can't be styledOn 7/4/06, Jonas Windey < [EMAIL PROTECTED]> wrote: Hi, is it possible to give a HBox different border colors for each side? Like border-right: solid 1px #ccc in css? Thanks! -- ::| Carlos Rovira::| http://www.carlosrovira.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Array of object types returned from remote objects
On Tuesday 04 July 2006 12:51, João Fernandes wrote: > [ArrayElementType("MyObjectType")] Doesn't seem to work, get 'can't convert [EMAIL PROTECTED] to MyObjectType' errors at run time. I don't need to put the fully qualified class name in the hint do I ? The docs are lacking on this point. Or change the declaration / add hint in the model for the ArrayCollection to have the same hint ? Currently, it's still just public var rejectedCreationRequests:ArrayCollection; -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Different borderstyles for HBox
AFAIK, containers for laying out other content can't be styledOn 7/4/06, Jonas Windey <[EMAIL PROTECTED]> wrote: Hi, is it possible to give a HBox different border colors for each side? Like border-right: solid 1px #ccc in css? Thanks! -- ::| Carlos Rovira::| http://www.carlosrovira.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Array of object types returned from remote objects
Tom try to define like this: [ArrayElementType("MyObjectType")] var somearray:Array = … João Fernandes Dep. Informática - Área de Desenvolvimento Cofina media Avenida João Crisóstomo, Nº 72 . 1069-043 Lisboa PORTUGAL Tel (+351) 213 185 200 . Fax (+351) 213 540 370 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: terça-feira, 4 de Julho de 2006 11:55 To: flexcoders@yahoogroups.com Subject: [flexcoders] Array of object types returned from remote objects Currently we're doing: var accfiles:Array = event.result.awaitingCollectionByArchiving as Array; model.rejectedCreationRequests = new ArrayCollection(files); Which is fine, but it creates an ArrayCollection of objects. Is there anyway to say 'this array you just got is an array of MyObjectType' ? The current approach is causing us a few issues with data binding, because although we can make a dataGrid's dataProvider model.rejectedCreationRequests, the grids selectedItem is just an object, and if we try and cast it (var temp:MyObjectType = grid.selectedItem as MyObjectType) we get coercion errors :-( -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
Re: [flexcoders] Server push from ColdFusion without FDS?
On Monday 03 July 2006 23:32, Greg Fuller wrote: > So the question is: Can you perform server-to-client-push without > installing FDS? Which is the same as asking (I think): Is > server-to-client-push built into the cf adaptor, like remoting? Or am > I only dreaming? I think the only way is to have your app poll the server every so often. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Array of object types returned from remote objects
Currently we're doing: var accfiles:Array = event.result.awaitingCollectionByArchiving as Array; model.rejectedCreationRequests = new ArrayCollection(files); Which is fine, but it creates an ArrayCollection of objects. Is there anyway to say 'this array you just got is an array of MyObjectType' ? The current approach is causing us a few issues with data binding, because although we can make a dataGrid's dataProvider model.rejectedCreationRequests, the grids selectedItem is just an object, and if we try and cast it (var temp:MyObjectType = grid.selectedItem as MyObjectType) we get coercion errors :-( -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF. A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008. For more information about Halliwells LLP visit www.halliwells.com. Yahoo! Groups Sponsor ~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
Re: [flexcoders] Re: Flex2 release version - PopUp mangager ..sizing popups
I've used the PopupManager to show custom items - and i've never had to set the size (w, or h) in previous version of flex2, with the new release, i cant confirm, but can confirm the previous versions. > thanks for the input. > > The example in the help files titled "Using the PopUpManager to > create a TitleWindow" doesn't have any width or height settings for the > tag this to me implies you dont have to set them. > > in the pre release versions i've never had to set the width and > height..i leave it to flex/layoutmanager (or whatever it is) to > work out a suitable width and height. > > maybe something has changed? > > > > > --- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> > wrote: >> >> I have always set the width and height properties of the > TitleWindows, >> I don;t believe this has changed. >> >> >> >> On 7/3/06, bhaq1972 <[EMAIL PROTECTED]> wrote: >> > Hi >> > can someone confirm this. i'm now having to set the widths and > heights >> > of the popups i create using PopUpManager. >> > i never had to do this before. flex/flashplayer would do it for > me. >> > >> > >> > is this correct? >> > >> > >> > >> > >> > >> > >> > >> > -- >> > 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 >> > >> > >> > >> > >> > >> > >> > >> > >> >> >> -- >> Rich Tretola >> >> http://www.EverythingFlex.com Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
[flexcoders] Re: Flex2 release version - PopUp mangager ..sizing popups
thanks for the input. The example in the help files titled "Using the PopUpManager to create a TitleWindow" doesn't have any width or height settings for the tag this to me implies you dont have to set them. in the pre release versions i've never had to set the width and height..i leave it to flex/layoutmanager (or whatever it is) to work out a suitable width and height. maybe something has changed? --- In flexcoders@yahoogroups.com, "Rich Tretola" <[EMAIL PROTECTED]> wrote: > > I have always set the width and height properties of the TitleWindows, > I don;t believe this has changed. > > > > On 7/3/06, bhaq1972 <[EMAIL PROTECTED]> wrote: > > Hi > > can someone confirm this. i'm now having to set the widths and heights > > of the popups i create using PopUpManager. > > i never had to do this before. flex/flashplayer would do it for me. > > > > > > is this correct? > > > > > > > > > > > > > > > > -- > > 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 > > > > > > > > > > > > > > > > > > > -- > Rich Tretola > > http://www.EverythingFlex.com > Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
RE: [flexcoders] Flex-Java class mapping for SOAP webservices
Uwe, This is only for remote objects. What exactly are you trying to accomplish? It's possible there are other solutions. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Uwe RaddatzSent: Tuesday, July 04, 2006 2:02 AMTo: flexcoders@yahoogroups.com; [EMAIL PROTECTED]Subject: [flexcoders] Flex-Java class mapping for SOAP webservices Hi,may I use the Flex-Java class mapping (registered via Object.registerClass() method) with SOAP webservices or is this feature available for remote object services only?I am using Flex version 1.5.Bye.ur-- Uwe Raddatz[EMAIL PROTECTED]de __._,_.___ -- 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 Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
RE: [flexcoders] Displaying the error string from a web service?
Hey Paul, All of the details are definitely coming back and should be accessible. You mention you're getting the erroNumber. How are you accessing it? Can you share some code so I can see what you're doing? Thanks, Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul NortonSent: Monday, July 03, 2006 10:38 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Displaying the error string from a web service? Hi,I'm using flex 2. I'm trying to interface with a webservice. I can get the app on the server to respond but I'm having trouble interpreting the response. Even thought the response has an error number, an error string, and a result node, all I seem to be able to display is the error number.The response from the server looks like this:ult>>4Unterminated string constantng>>sult>ENV:Body>{WS.RunScript.lastResult} gives me the but I can't see how to get the errorString (or scriptResult, if it had content.)Thanks!Paul __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS Web site design development Computer software development Software design and development Macromedia flex Software development best practice YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. __,_._,___
[flexcoders] Flex-Java class mapping for SOAP webservices
Hi, may I use the Flex-Java class mapping (registered via Object.registerClass() method) with SOAP webservices or is this feature available for remote object services only? I am using Flex version 1.5. Bye. ur -- Uwe Raddatz [EMAIL PROTECTED] Yahoo! Groups Sponsor ~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM ~-> -- 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/