Re: [flexcoders] using an OCX with Flex
boy_trike wrote: > I am considering re-writing a traditional client-server application in Flex. > This will be an > INTRANET application and all of the clients have a registered OCX that my app > has to > communicate with (Interfaces with a phone dialer). If all of your audience must use an OCX phone-dialer, then it sounds like they're all using the Microsoft browser for Windows. (This is the only browser family which uses ActiveX as an extension mechanism.) Flex lives in your development flow and on your server, and it's a SWF which is delivered to their browsers to render. SWFs in IE can communicate with other ActiveX Controls, with the best communication being with those ActiveX Controls which expose a VBScript/JScript interface (Microsoft's "JavaScript" analogues). Two steps here: -- First confirm that the OCX dialer supports a suitable JavaScript API; then -- Do a Google search on "externalinterface flex" to find the range of resources on implementing it. Such work is usually a little trickier than standalone work, because you're asking the plugin, the browser, and the third-party control to all behave as you expect, but it's definitely an achievable goal. jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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: private constructors in flex
Title: quote But if your goal is to create a Singleton pattern...check this out: Gordon Smith said the following: I'm afraid that AS3 doesn't allow a constructor to be private. - Gordon From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of pauland2513 Sent: Friday, September 22, 2006 4:29 PM To: [EMAIL PROTECTED]ups.com Subject: [flexcoders] Re: private constructors in flex --- In [EMAIL PROTECTED]ups.com, "zenwarden" <[EMAIL PROTECTED]> wrote: > > Sometimes in Java I declare a constructor private ( I think this is > called the nullington pattern). Ex: utility classes that have all > static methods or constants. > > > > Can and should the same thing be done in flex? > > Chris Yes, it's an OO design pattern not a Java specific one. I haven't heard of the nullington pattern, but private constructors are used for the Singleton pattern. Paul -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] suppressing Status Error?
look at using try...catch...finaly in the docs, that's what you'll want to do to handle your errors jpg On 9/20/06, aaron smith <[EMAIL PROTECTED]> wrote: hey all, I am wondering how exaclty I suppress this error.. Error #2044: Unhandled StatusEvent:. level=error, code=It is happening when i'm using the HTTPService class and -use-network = false; When the security popup comes up, i press settings, then I immediately get this unhandled status error.. I looked at HTTPService, not seeing any handlers for Status.. Any ideas???thanks, -- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
I have heard a lot of good things about WebOrb. The next version of the app will be rid of the web services so we'll see what works best.On 9/19/06, Sam Shrefler <[EMAIL PROTECTED]> wrote: John, I know you had said you were using webServices...but if you can possibly refactor, using WebOrb.NET Standard (free), you can transfer back and forth classes/objects..For more info you can check out http://blog.shrefler.net/?p=6 Hope that could help... Sam On 9/18/06, John C. Bland II < [EMAIL PROTECTED]> wrote: I don't have a problem getting data. Sending native classes/objects is a problem. :-) On 9/18/06, barry.beattie < [EMAIL PROTECTED] > wrote: John, the July issue of ColdFusion Developers Journal has an article onusing Flex's class introspection to automate getting strong typed datafrom webservices (to get close to the transfer object idea of remoting, but with webservices). not quite remoting but getting there.(ignore the CF bit, it's the Flex code in the article/the techniqueyou may be interested in)just a quick thought.cheers barry.b -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com ---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief GeekKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: ToolTip Timers
Title: quote Tim - I have it working now with custom components and effects (just like JamJar). I have it setup now where I can create as many custom tooltips as I want. It also uses the various errorTipBorderStyles. This what I did: 1.) I created my own ToolTip class which extends UIComponent and implements IToolTips. It has a constructor and empty get/set text methods. 2.) I create my custom component classes which always extend my custom ToolTip class. I overrride several methods the two most important are createChildren() and updateDisplayList(). In these methods I build my components (createChildren) and handle the various styles including the nice errorTipBorderStyles. I also have various eventListeners to handle mouse clicks to call destroyToolTip method. 3.) I have a custom tooltip manager which extends ToolTipManager. In this class I have a createCustomToolTip and a destroyToolTip. The createCustomToolTip is like the createToolTip signature except instead of passing text, I just pass the class reference (in its place) described in step 1. The problem with createToolTip is it uses ToolTip class in the addChild() call. So there was no way to override it. This way any component class which extends my extended ToolTip class will work. 4.) For effects I just do a createInstance passing the ToolTip returned from the createCustomToolTip. I'm not sure I made this more difficult that it should have been but it is flexible and it works?? Thanks. .j Tim Hoff said the following: Hi John, Sam's suggestion to use the ToolTipManager's createToolTip and destroyToolTip methods would allow you to use your custom ToolTip component. But, since you would manually have to position and destroy the component anyway, have you considered using a popup instead? -TH --- In [EMAIL PROTECTED]ups.com, John Kirby <[EMAIL PROTECTED]> wrote: > > Sam - > > Thanks... I've looked at that. The problem is I'm creating custom > components in my tooltip. So I was trapping the create event to use my > own custom tooltip which implements IToolTip. This worked fine. > > Where I got stuck was on how to intercept the hide event. Nothing I > tried seem to work which would allow the tooltip to continue showing > once the mouse was moved off the target. I was trying to recreate the > tooltips used in Adobe's JamJar application. > > So now my approach is to create my own class which extends > ToolTipManager. I want added another method (createCustomToolTip) where > I pass the custom tooltip class and try to override some methods so I > can control when to call destroytooltip? > > Not sure this is the best approach? > > .j > > Samuel Reuben said the following: > > Hi J, > > > > You could look into the documentation for ToolTipManager and use the > > methods (createToolTip and destroyToolTip) that are listed there to > > achieve what you are trying to do. > > > > Hope this helps, > > -sam > > > > > > On 9/16/06, *josiah_kirby* <[EMAIL PROTECTED] > > <mailto:jjkirby@...>> wrote: > > > > I'm building a custom tooltip (implements IToolTip) which will have > > components in it. Once the tooltip is shown I want to keep it shown > > until I trigger an event to hide it. > > > > I have created a listener on the component for the tooltipHide to > > keep > > it from hiding with no luck. > > > > Anyone know how keep a tooltip open until you want to close/hide it? > > > > Thanks. > > > > .j > > > > > > > > -- > /Whether you think that you can, or that you can't, you are usually right./ > - Henry Ford > -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
I don't have a problem getting data. Sending native classes/objects is a problem. :-)On 9/18/06, barry.beattie < [EMAIL PROTECTED]> wrote: John, the July issue of ColdFusion Developers Journal has an article on using Flex's class introspection to automate getting strong typed data from webservices (to get close to the transfer object idea of remoting, but with webservices). not quite remoting but getting there. (ignore the CF bit, it's the Flex code in the article/the technique you may be interested in) just a quick thought. cheers barry.b -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] ToolTip Timers
Title: quote Sam - Thanks... I've looked at that. The problem is I'm creating custom components in my tooltip. So I was trapping the create event to use my own custom tooltip which implements IToolTip. This worked fine. Where I got stuck was on how to intercept the hide event. Nothing I tried seem to work which would allow the tooltip to continue showing once the mouse was moved off the target. I was trying to recreate the tooltips used in Adobe's JamJar application. So now my approach is to create my own class which extends ToolTipManager. I want added another method (createCustomToolTip) where I pass the custom tooltip class and try to override some methods so I can control when to call destroytooltip? Not sure this is the best approach? .j Samuel Reuben said the following: Hi J, You could look into the documentation for ToolTipManager and use the methods (createToolTip and destroyToolTip) that are listed there to achieve what you are trying to do. Hope this helps, -sam On 9/16/06, josiah_kirby <[EMAIL PROTECTED]net> wrote: I'm building a custom tooltip (implements IToolTip) which will have components in it. Once the tooltip is shown I want to keep it shown until I trigger an event to hide it. I have created a listener on the component for the tooltipHide to keep it from hiding with no luck. Anyone know how keep a tooltip open until you want to close/hide it? Thanks. .j -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Gauges in Flex Charting
Title: quote Check this out: http://www.maani.us/gauge Ely Greenfield said the following: Hi Pramod. Building a guage in Flex/Flash should be pretty simple. Take two assets (background + needle), slap them together, and give the component a minimum, maximum, and value property. Set the rotation of the needle to match the ratio of value between min and max. Obviously, there's a lot more you can do (labels, color, etc), but that's the basics. There's really no functionality that you would need to leverage out of the charting package to do this. Unless you're trying to do something more complicated that I'm not thinking of. Ely. From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pramod Sent: Sunday, September 17, 2006 7:54 PM To: [EMAIL PROTECTED]ups.com Subject: [flexcoders] Gauges in Flex Charting Hi All, Has anyone tried and implemented a Gauge or a speedometer in Flex Charting? What i am looking for is to implement some dashboards as in the link - http://www.xcelsius.com/Examples/Overview.html. Thanks and Regards, Pramod -- Whether you think that you can, or that you can't, you are usually right. - Henry Ford __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
I'm using WS because it is what was created for the project. The next revision will be using remoting.Serializing the returned data just seems like an extra step that is unnecessary. If I can return a List of User objects and Flex receives it and I can access it as an ArrayCollection, etc then why would I add 2 more steps (serializing and deserializing)? I'm not saying there isn't a place for it. I just don't see it.On 9/12/06, Sam Shrefler <[EMAIL PROTECTED] > wrote: John: I'm a little confused by your reply. Could you educate me why you are using WS's if you feel you could use remoting? Also, JSON plugs right into Web Services. It simply serializes and deserializes the data to allow for easy transfers of data types. Sam On 9/8/06, John C. Bland II <[EMAIL PROTECTED] > wrote: Nah, I'm not interested in JSON. If we weren't using WSs we'd be using Remoting. Thanks though. On 9/7/06, Sam Shrefler < [EMAIL PROTECTED] > wrote: John: You might want to also check out JSON + .NET + Flex. I've written a tiny little little tutorial to help get people started at: http://blog.shrefler.net/?p=5 Sam On 9/5/06, John C. Bland II < [EMAIL PROTECTED] > wrote: FLIPPIN' NAMESPACEI set the namespace and I'm rollin'! Now I can finish this app. :-) Thanks. On 9/5/06, John C. Bland II < [EMAIL PROTECTED] > wrote: Which code are you referring to seeing? I can't pass the WS code or url. As for the Flex code, it is based 100% off of the livedocs example but with our url's, etc. We don't use .NET datasets. We are returning "VO's" (classes) or List. This is .NET 2.0 so generics are used semi-heavily.Thanks. On 9/5/06, Tim Hoff < [EMAIL PROTECTED]> wrote: Hi John, Without seeing the code, the first error seems E4X related. I'm not sure if this will help you with the second error, but natively Flex doesn't accept .Net datasets without receiving this error. If that's the case, you can solve this by casting the dataset to a class that is returned by the webservice. Here's an ASP.Net webservice code sample: http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1 -TH --- In [EMAIL PROTECTED] ups.com, "John C. Bland II" <[EMAIL PROTECTED]> wrote: >> Flex seems to have problems hitting .NET web services. Specifically, it has> problems handling method overloads and, for whatever reason, can't seem to> work with working .NET WS's. I setup the operation, etc just as examples > showed to make sure my own knowledge wasn't lacking and it still didn't work> right.> > The errors are as follows (extracted from my Google searches the other day):> * The Proxy class does not implement getDescendants. It must be overridden > by a subclass.> * [WSDLError faultString="Element :SiteProvider_GetBySiteID not resolvable"> faultCode="WSDL.BadElement" faultDetail="null"]> > The second one is odd because I KNOW the method is there AND that it works. > I can hit the wsdl with another tool and it works perfectly fine.> > Any ideas?> > -- > John C. Bland II> Chief Developer> Katapult Media, Inc. - www.katapultmedia.com> ---> Biz Blog - http://blogs.katapultmedia.com/jb2> Personal Blog - http://blog.blandfamilyonline.com> http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to> Wear Them" > Home of FMUG.az - http://www.gotoands top.org > Home of AZCFUG - http://www.azcfug.org> -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com ---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com ---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.com http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz
[flexcoders] Newbie FlexUnit/FlexBuilder setup
I'm attempting to sensibly set up a directory structure in FlexBuilder for unit testing -- setting things up in a way analagous to my AS2.0/ASUnit projects back in Eclipse doesn't seem possible. Can someone point me in the right direction? In the project root, I have a src folder and a tests folder. projectFolder |__src |__com (etc) |__tests |__com (etc) |__defaultProject.mxml |__testRunnerProject.mxml Like that. My 'src' folder is defined as the default source folder. I've been trying various ways to assign the tests folder as an additional source folder, with strange happenings happening thanks to all of them. No success. Any help? -Mark -- John Mark Hawley The Nilbog Group 773-968-4980 -- 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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: Passing Custom Classes to .NET Web Service
Has anyone successfully done so? I found this blog (here: http://weblogs.asp.net/soever/archive/2005/10/29/428902.aspx) that showed how he did it with the mx:operation but I want to pass MyFunction(MyClassObject) and have it do what it needs to do. Any ideas?-- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
[flexcoders] FDS: Trouble Pushing Data To the Client
We are having some trouble pushing data back to the client based on the results of a server side operation. Basically after updating some 'preference' data, we need to get the newly generated information for the preference changes. The updates seem to be working, but when we try to refresh the data on the client with DataServiceTransaction.refreshFill() or updateItem() the problems ensue. Here are some of the details:Client Side code to retreive the data (ServiceNames is a list of enumerated values for our destination names) : // LOAN APPLICATIONloanAppReference = service.getDataService(ServiceNames.LOAN_APPLICATION).getItem({loanID: model.user.activeLoanNumber}, model.loanApplication);service.getDataService(ServiceNames.LOAN_APPLICATION).addEventListener(ResultEvent.RESULT, onLoanApplicationResult);service.getDataService(ServiceNames.LOAN_APPLICATION).addEventListener(FaultEvent.FAULT, onLoanApplicationFault); Server Side Code that we have tried to push data to the client // RefreshFillDataServiceTransaction dst =DataServiceTransaction.getCurrentDataServiceTransaction( ); dst.refreshFill( "aims.finding", null ); dst.commit( ); List loanID = new ArrayList();loanID.add( newPrefs.getLoanID( ) );dst.refreshFill( "aims.loanApplication", loanID ); dst.commit( ); This doesn't see to have any effect. // updateItemMap loanID = new HashMap(); loanID.put( "loanID", newPrefs.getLoanID( ) ); Object updatedFindings = (Object) new FindingAssembler( ).getFinding( loanID ); dst.updateItem( "aims.loanApplication", updatedFindings, null, null ); dst.commit( ); Receive The Following Error: [RPC Fault faultString="Could not invoke sync method on data adapter for destination 'aims.borrowerPreference' due to the following error: class java.lang.ClassCastException:java.lang.String."faultCode="Server.Processing" faultDetail="null"] Although the aims.borrowerPreferences destination doesn't have anything to do with the aims.finding destination that we are trying to update.~So this is where we stand. If you could point us in the direction of a solution, or something else to try we'd much very happy!Thanks in advance for any help thrown our way.John. __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
Nah, I'm not interested in JSON. If we weren't using WSs we'd be using Remoting. Thanks though.On 9/7/06, Sam Shrefler < [EMAIL PROTECTED]> wrote: John: You might want to also check out JSON + .NET + Flex. I've written a tiny little little tutorial to help get people started at: http://blog.shrefler.net/?p=5 Sam On 9/5/06, John C. Bland II < [EMAIL PROTECTED]> wrote: FLIPPIN' NAMESPACEI set the namespace and I'm rollin'! Now I can finish this app. :-) Thanks. On 9/5/06, John C. Bland II < [EMAIL PROTECTED]> wrote: Which code are you referring to seeing? I can't pass the WS code or url. As for the Flex code, it is based 100% off of the livedocs example but with our url's, etc. We don't use .NET datasets. We are returning "VO's" (classes) or List. This is .NET 2.0 so generics are used semi-heavily.Thanks. On 9/5/06, Tim Hoff < [EMAIL PROTECTED]> wrote: Hi John, Without seeing the code, the first error seems E4X related. I'm not sure if this will help you with the second error, but natively Flex doesn't accept .Net datasets without receiving this error. If that's the case, you can solve this by casting the dataset to a class that is returned by the webservice. Here's an ASP.Net webservice code sample: http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1 -TH --- In [EMAIL PROTECTED] ups.com, "John C. Bland II" <[EMAIL PROTECTED]> wrote: >> Flex seems to have problems hitting .NET web services. Specifically, it has> problems handling method overloads and, for whatever reason, can't seem to> work with working .NET WS's. I setup the operation, etc just as examples > showed to make sure my own knowledge wasn't lacking and it still didn't work> right.> > The errors are as follows (extracted from my Google searches the other day):> * The Proxy class does not implement getDescendants. It must be overridden > by a subclass.> * [WSDLError faultString="Element :SiteProvider_GetBySiteID not resolvable"> faultCode="WSDL.BadElement" faultDetail="null"]> > The second one is odd because I KNOW the method is there AND that it works. > I can hit the wsdl with another tool and it works perfectly fine.> > Any ideas?> > -- > John C. Bland II> Chief Developer> Katapult Media, Inc. - www.katapultmedia.com> ---> Biz Blog - http://blogs.katapultmedia.com/jb2> Personal Blog - http://blog.blandfamilyonline.com> http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to> Wear Them" > Home of FMUG.az - http://www.gotoands top.org > Home of AZCFUG - http://www.azcfug.org> -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com ---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.com http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
FLIPPIN' NAMESPACEI set the namespace and I'm rollin'! Now I can finish this app. :-) Thanks.On 9/5/06, John C. Bland II < [EMAIL PROTECTED]> wrote:Which code are you referring to seeing? I can't pass the WS code or url. As for the Flex code, it is based 100% off of the livedocs example but with our url's, etc. We don't use .NET datasets. We are returning "VO's" (classes) or List. This is .NET 2.0 so generics are used semi-heavily.Thanks.On 9/5/06, Tim Hoff < [EMAIL PROTECTED]> wrote: Hi John, Without seeing the code, the first error seems E4X related. I'm not sure if this will help you with the second error, but natively Flex doesn't accept .Net datasets without receiving this error. If that's the case, you can solve this by casting the dataset to a class that is returned by the webservice. Here's an ASP.Net webservice code sample: http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1 -TH--- In [EMAIL PROTECTED] ups.com, "John C. Bland II" <[EMAIL PROTECTED]> wrote: >> Flex seems to have problems hitting .NET web services. Specifically, it has> problems handling method overloads and, for whatever reason, can't seem to> work with working .NET WS's. I setup the operation, etc just as examples > showed to make sure my own knowledge wasn't lacking and it still didn't work> right.> > The errors are as follows (extracted from my Google searches the other day):> * The Proxy class does not implement getDescendants. It must be overridden > by a subclass.> * [WSDLError faultString="Element :SiteProvider_GetBySiteID not resolvable"> faultCode="WSDL.BadElement" faultDetail="null"]> > The second one is odd because I KNOW the method is there AND that it works. > I can hit the wsdl with another tool and it works perfectly fine.> > Any ideas?> > -- > John C. Bland II> Chief Developer> Katapult Media, Inc. - www.katapultmedia.com> ---> Biz Blog - http://blogs.katapultmedia.com/jb2> Personal Blog - http://blog.blandfamilyonline.com> http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to> Wear Them" > Home of FMUG.az - http://www.gotoands top.org> Home of AZCFUG - http://www.azcfug.org> -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.com http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
Re: [flexcoders] Re: Flex + .NET Web Services irritations
Which code are you referring to seeing? I can't pass the WS code or url. As for the Flex code, it is based 100% off of the livedocs example but with our url's, etc.We don't use .NET datasets. We are returning "VO's" (classes) or List. This is .NET 2.0 so generics are used semi-heavily.Thanks.On 9/5/06, Tim Hoff <[EMAIL PROTECTED]> wrote: Hi John, Without seeing the code, the first error seems E4X related. I'm not sure if this will help you with the second error, but natively Flex doesn't accept .Net datasets without receiving this error. If that's the case, you can solve this by casting the dataset to a class that is returned by the webservice. Here's an ASP.Net webservice code sample: http://www.cflex.net/showFileDetails.cfm?ObjectID=418&Object=File&ChannelID=1 -TH--- In [EMAIL PROTECTED]ups.com, "John C. Bland II" <[EMAIL PROTECTED]> wrote: >> Flex seems to have problems hitting .NET web services. Specifically, it has> problems handling method overloads and, for whatever reason, can't seem to> work with working .NET WS's. I setup the operation, etc just as examples > showed to make sure my own knowledge wasn't lacking and it still didn't work> right.> > The errors are as follows (extracted from my Google searches the other day):> * The Proxy class does not implement getDescendants. It must be overridden > by a subclass.> * [WSDLError faultString="Element :SiteProvider_GetBySiteID not resolvable"> faultCode="WSDL.BadElement" faultDetail="null"]> > The second one is odd because I KNOW the method is there AND that it works. > I can hit the wsdl with another tool and it works perfectly fine.> > Any ideas?> > -- > John C. Bland II> Chief Developer> Katapult Media, Inc. - www.katapultmedia.com> ---> Biz Blog - http://blogs.katapultmedia.com/jb2> Personal Blog - http://blog.blandfamilyonline.com> http://www.lifthimhigh.com - "Christian Products for Those Bold Enough to> Wear Them"> Home of FMUG.az - http://www.gotoands top.org> Home of AZCFUG - http://www.azcfug.org> -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe __,_._,___
[flexcoders] Flex + .NET Web Services irritations
Flex seems to have problems hitting .NET web services. Specifically, it has problems handling method overloads and, for whatever reason, can't seem to work with working .NET WS's. I setup the operation, etc just as examples showed to make sure my own knowledge wasn't lacking and it still didn't work right. The errors are as follows (extracted from my Google searches the other day):* The Proxy class does not implement getDescendants. It must be overridden by a subclass.* [WSDLError faultString="Element :SiteProvider_GetBySiteID not resolvable" faultCode=" WSDL.BadElement" faultDetail="null"]The second one is odd because I KNOW the method is there AND that it works. I can hit the wsdl with another tool and it works perfectly fine.Any ideas? -- John C. Bland IIChief DeveloperKatapult Media, Inc. - www.katapultmedia.com---Biz Blog - http://blogs.katapultmedia.com/jb2 Personal Blog - http://blog.blandfamilyonline.comhttp://www.lifthimhigh.com - "Christian Products for Those Bold Enough to Wear Them" Home of FMUG.az - http://www.gotoandstop.orgHome of AZCFUG - http://www.azcfug.org __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] Finding the root clip + getting the URL
You know more than I do at this point ;)On 9/1/06, Daniel Wabyick <[EMAIL PROTECTED]> wrote: Thanks John, That definitely works, although I was curious how to do this using non-Flex API calls. I figured out that part of my problem is that at creationComplete(), the Application is not added to the display-list, and thus you can't find out the root or stage. So, I changed the example to applicationComplete, and at that point the stage, root, and loaderInfo objects are defined and you can access them. My next question - how do you find the base URL in a data class with no reference to a DisplayObject? It seems like you need to get access to the global display list, but I am unsure how to do that. Working code to access the url and stage. http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="{ showURL(); }"> John Grden wrote: > application.url is what you're looking for > > Look at mx.core.Application properties > > hth, > > JPG > > > On 8/31/06, *Daniel Wabyick* <[EMAIL PROTECTED] > [EMAIL PROTECTED]>> wrote: > > I am trying to find the URL in which an application is running. > Reading > the documentation, I get the impression that I can use the "root" > property off on any DisplayObject, and then get the loaderInfo > from there. > > Unfortunately, the root property seems to be null. I must be doing > something wrong. Can someone help? > > > http://www.adobe.com/2006/mxml > <http://www.adobe.com/2006/mxml>" > layout="absolute" creationComplete="{ showRoot(); }"> > > > > > > > > > > > > -- > [ JPG ] > -- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] Xray Logger for Flex2 - Updated
http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/flex/XrayLogger_as3_alpha.zip?format=raw Apologies to those that tired to compile and got the error as well as the status event errors without having the xray interface open. My bad!I've fixed those, and compiled and tested and it works ;) Please let me know what you think,-- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] Finding the root clip + getting the URL
application.url is what you're looking for Look at mx.core.Application properties hth, JPG On 8/31/06, Daniel Wabyick <[EMAIL PROTECTED]> wrote: I am trying to find the URL in which an application is running. Reading the documentation, I get the impression that I can use the "root" property off on any DisplayObject, and then get the loaderInfo from there. Unfortunately, the root property seems to be null. I must be doing something wrong. Can someone help?http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="{ showRoot(); }"> -- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] XrayLogger for AS3
I'm in the very early stages of getting Xray's connector ported over the AS3 and the first step has been to get the new Logger up and running. So far, it's working great and I've included an OutputPanel.mxml that users can include it in their app if they don't want to use the xray interface ( plus, i've not implemented log level switching with xray's interface yet ). http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/flex/XrayLogger_as3_alpha.zip?format=raw screenshot:http://www.rockonflash.com/xray/images/XrayLogger_Flex2_withInterface_0.png some featurues: 1. log level support (debug, info, warn, error, fatal) 2. time stamp 3. Calling method is reported 4. objects are recursed 5. outputs to Xray's interface if you have it running OutputPanel features (not necessary for running logger): 1. runtime log level control 2. Resizeable (drag lower right corner) 3. Window shade by double clicking header of OutputPanel's header area 4. Search Usage:copy com.blitzagency.xray.logger into your classes/src folderif you want to use the OutputPanel (optional):copy OutputPanel.mxml to your src folder or where ever your main app is. Add this line to your app:Add this property to your mx:Application node: xmlns:ns1="*"Using it in your app: import com.blitzagency.xray.logger.XrayLog; . public var log:XrayLog; . log = new XrayLog(); log.debug(message:String [, dump:object]); log.info(message:String [, dump:object]); log.warn(message:String [, dump:object]); log.error(message:String [, dump:object]); log.fatal(message:String [, dump:object]);I've included the FlashDevelop project in the zip. I would love suggestions/comments on implementation and features. Right now, it doesn't color code the output based on the log level, but that is something I'm looking into. Anyway, if anyone wants to give it a whirl, I'd really appreciate the feedback,Thanksjpg __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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: Blitz XRay
LOL yep! man, lately, that's all I've been hearing about...guess I should get on it ;)On 8/25/06, Renaun Erickson < [EMAIL PROTECTED]> wrote: Thanks, that is what I thought, just got confused with the talk of Flex connector. Any plans for a AS3 connnector? --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > Sorry, it doesn't support AS3 yet. 1.6 connector is for AS2 applications > only. The Xray interface that communicates with that connector is a Flex2 > application however. > > On 8/24/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: > > > > Would be less confusing if the OSFlash site stated it supported AS3. > > How do you put the connector directly into a Flex2 application? Do > > you have the SWC or AS source code for the connector? > > > > Thanks for the info, > > > > > > --- In flexcoders@yahoogroups.com , "John > > Grden" wrote: > > > > > > Yes, click on the link for the 1.6 version: > > > > > > > > > > http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.mxp?format=raw > > > > > > On 8/24/06, Renaun Erickson wrote: > > > > > > > > The connectors link shows: > > > > Connectors (8.11.2006) > > > > > > > > * > > > > Latest component package for AS2 (xray_conn_1.6.mxp) > > > > * > > > > Latest component package for AS1 (xray_component_as1.mxp) > > > > * > > > > Connector-only package for MTASC, SFWMill, etc. > > > > * > > > > Connector Only Tutorial (Tutorial in French) > > > > > > > > Is there a AS3 connector? > > > > > > > > > > > > > > > > > > > > > > > > > -- > [ JPG ] > -- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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: XML editor (contd)
Tim, hi. Ta. Now just to figure out how to do that ... :) J -Original Message- From: Tim Hoff [mailto:[EMAIL PROTECTED] Sent: Friday, 25 August 2006 3:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: XML editor (contd) Hi John, Sure, the data object contains all of the individual column elements. You would have to conditionally change states or control types by checking the dataField name and binding the appropriate field. -TH --- In flexcoders@yahoogroups.com, "John Mazzocchi" <[EMAIL PROTECTED]> wrote: > > Never mind about my 2nd question, I've solved it :) > > Buty I'd still like an answer to my first one ... > > Can each row of a DataGrid have a separate and different custom ItemRenderer/Editor? > > Ta. > J > -- 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] writing an XML editor ... or trying to
Ok, I'm trying to write an XML editor to edit stuff like this ... public var myXML:XML = Fishing twiddle ; - Now, I like the idea of using a DataGrid (the alternating colour rows make the XML easy to compartmentlise and read, so that you're editing each one as a separate entity. My first question is, can each row of a DataGrid have a separate and different custom ItemRenderer/Editor? My second question is with the following component, which is the custom itemRenderer that I've been working on ... (The "text" field is currently set to debugging values, rather than the final string it will hold.) Now while the ternary operators used for fontStyle, fontWeight, textDecoration, and textAlign work fine - the following ones in the scaleX and scaleY fields don't work when @charwidth or @charheight is empty. scaleX="{([EMAIL PROTECTED] == '') ? Number(1.0) : Number([EMAIL PROTECTED])}" scaleY="{([EMAIL PROTECTED] == '') ? Number(1.0) : Number([EMAIL PROTECTED])}" Any clues? Ta. John -- 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] XML editor (contd)
Never mind about my 2nd question, I've solved it :) Buty I'd still like an answer to my first one ... Can each row of a DataGrid have a separate and different custom ItemRenderer/Editor? Ta. J -- 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: Blitz XRay
Sorry, it doesn't support AS3 yet. 1.6 connector is for AS2 applications only. The Xray interface that communicates with that connector is a Flex2 application however.On 8/24/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: Would be less confusing if the OSFlash site stated it supported AS3. How do you put the connector directly into a Flex2 application? Do you have the SWC or AS source code for the connector? Thanks for the info, --- In flexcoders@yahoogroups.com, "John Grden" <[EMAIL PROTECTED]> wrote: > > Yes, click on the link for the 1.6 version: > > http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.mxp?format=raw > > On 8/24/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: > > > > The connectors link shows: > > Connectors (8.11.2006) > > > > * > > Latest component package for AS2 (xray_conn_1.6.mxp) > > * > > Latest component package for AS1 (xray_component_as1.mxp) > > * > > Connector-only package for MTASC, SFWMill, etc. > > * > > Connector Only Tutorial (Tutorial in French) > > > > Is there a AS3 connector? > > > > > > > -- [ JPG ] __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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: Blitz XRay
Yes, click on the link for the 1.6 version:http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.mxp?format=raw On 8/24/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: The connectors link shows: Connectors (8.11.2006) * Latest component package for AS2 (xray_conn_1.6.mxp) * Latest component package for AS1 (xray_component_as1.mxp) * Connector-only package for MTASC, SFWMill, etc. * Connector Only Tutorial (Tutorial in French) Is there a AS3 connector? __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] Blitz XRay
http://www.osflash.org/xray#connectors_8.11.2006Let mek now if you have any questionsJPGOn 8/24/06, Chad Callahan <[EMAIL PROTECTED]> wrote: I was looking at http://osflash.org/xray for the XRay connector for Flex2 but couldn't find any downloads or links to it. If anyone knows where to download the connector for Flex2, please email me a link. Thanks CHAD CALLAHAN PROGRAMMER T8DESIGN.COM | P 319.266.7574 - x195 | 877.T8IDEAS | F 888.290.4675 This e-mail, including attachments, is covered by the Electronic Communications Privacy Act, 18 U.S.C. 2510-2521, is confidential, and may be legally privileged. If you are not the intended recipient, you are hereby notified that any retention, dissemination, distribution, or copying of this communication is strictly prohibited. Please reply to the sender that you have received the message in error, and then please delete it. Thank you. -- [ JPG ] __._,_.___ -- 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] Can Flex handle mixed-content XML?
Thanks. -Original Message-From: Michael Schmalle [mailto:[EMAIL PROTECTED]Sent: Monday, 21 August 2006 1:02 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Can Flex handle mixed-content XML?Hi,That is an XMLList(), I don't know what you are doing but, you could load it asvar list:XMLList = new XMLList('I like to drink beer every day(s).'); Peace, Mike On 8/20/06, John Mazzocchi <[EMAIL PROTECTED]> wrote: Just a quickie here ... can Flex handle mixed-content XML? As in where we have something like ...I like to drink beer every day(s).It doesn't seem to ... any clues?Thanks for any help.John-- What goes up, does come down. __._,_.___ -- 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] Can Flex handle mixed-content XML?
Just a quickie here ... can Flex handle mixed-content XML? As in where we have something like ... I like to drink beer every day(s). It doesn't seem to ... any clues? Thanks for any help. John -- 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: FDS 2.0
klumikaze wrote: > Can anybody define Adobe's definition of a CPU? > For example, we just purchased a new server with two dual core > processors in it. Is a dual core processor considered one CPU? or two? As João and Tom noted, that would be counted as one... here's the citation from the Adobe site: > (Q) Does the per-CPU pricing for Flex Data Services pertain to > "per CPU as in server" or "per CPU as in processor"? > (A) Per CPU as in processor. CPU is defined as a central processing > unit in a hardware device, including devices accessed by multiple > users through a network (for example, a server). A dual-core CPU > is considered a single CPU for licensing purposes. http://www.adobe.com/products/flex/productinfo/faq/#item-34 jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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] Flex and Rails - examples?
http://coenraets.com/viewarticle.jsp?articleId=101 Note:That is Christophe's old blog. His new one is .org. On 8/17/06, karstendwolf <[EMAIL PROTECTED]> wrote: Hi there, besides the excellent tutorial at href="" href="http://www.liverail.net/articles/2006/04/16/rubyonrails-1-1-and-flex-2-0-pt-1" target="_blank" >http://www.liverail.net/articles/2006/04/16/rubyonrails-1-1-and-flex-2-0-pt-1 ">Liverail , who else is doing stuff with Flex and Rails? Projects, demos, example code… e.g. has anybody used it to use it as a backend for RemoteObjects? cheers, karsten http://kadewe.blogspot.com -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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] ViewStack in TabNavigator + autoresize
I have a TabNavigator that, in all tabs, load separate custom components with ViewStacks in them.//TabNavigator //Canvas // //Canvas//TabNavigator That's the main component that is shown after login. Presently there are 4 main tabs. The tab in question (only one with substantial content/layout complete) is like this: //Canvas //VBox //ToggleButtonBar //ViewStack //hbox //TileList//CanvasNow, for 1...the TabNavigator will resize but not all of the way around the TileList. My main application isn't scrolling (only certain internal elements) when the content is too big. There is a 2nd state that adds a Panel inside of the hbox. This causes the TileList to resize and the panel slides into place. The ViewStatck then shows scroll bars (vertical and horizontal) since the panel is pretty big (namely vertically). The TabNavigator will load properly but it doesn't scale vertically with the TileList. It is longer than the TabNavigator (which stays within screen of the browser; even though I don't have a constraint on it). What I've tried:- removing all widths/heights from parent items of TileList- removing all constraints (top, bottom, etc) from parent items of TileList- set specific widths/heights of numerous combinations of items - set TabNavigator to resize with content- etc, etc, etcAnyone have any ideas here? I have to be missing something small here.-- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talks http://www.gotoandstop.org - Home of FMUG.az -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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 Software development tool Software development Software development services Home design software Software development company 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 doesn't like well-formed XML
This chokes Flex ... Recreation Licence while this doesn't ... public var blah:XML = Recreation Licence ; Can anyone tell me why? Thanks John -- 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] Image manipulation on client side
Summary: Search term "colormatrixfilter flex" pulls up details. edugalvez wrote: > How can my flex 2 application manipulate images on the client file > system? > Read manipulate as sepia-toning, resizing, rotating, exif-reading and > uploading to server. Mainly jpgs. That's funny... I just replied to a similar question on a ColdFusion mailing list... let me paste the links here: > Subject: Re: OT: Flash or Ajax to Compliment CF Project > Date: Tue, 15 Aug 2006 11:29:48 -0700 > From: John Dowdell <[EMAIL PROTECTED]> > To: cf-talk@houseoffusion.com > References: <[EMAIL PROTECTED]> > > Dakota Burns wrote: >> I have a fairly large CF project coming up with an interactive piece that >> will involve changing colors on car parts (roll mouse over hood for design >> or color, select & post to database or session), possibly an audio greeting >> - that sort of thing. > > The audio requirement may resolve the question in itself, although for > some presentations it may not matter exactly how each browser invokes > the audio file. > > A more subtle advantage may be in the on-demand coloring... it's > possible to use the realtime color matrix filtering in Adobe Flash > Player 8 and above to change the coloring of an image without having to > download a new file. Docs & example: > http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=2079.html > http://page.freett.com/isolations_nest/upload/test20.html The realtime clientside filtering capabilities can be set through the Adobe Flash Professional 8 authoring environment, but are also exposed to ActionScript control. Lots of good Flex-specific links here too: http://www.google.com/search?q=ColorMatrixFilter+flex jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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] SOT: Flash Player 9 distribution
Rick Root wrote: > I don't want to have to tell my client base *NOT* to download the Yahoo > Toolbar, and it annoys the heck out of me that Adobe puts that on their > download page and checks it by default. > > Are there any other options besides directing people to the adobe page herE: > http://www.macromedia.com/go/getflashplayer FAQ here: http://www.adobe.com/products/flashplayer/productinfo/faq/#item-4-1 Summary, as I recall: Those few IE/Win users who do not use the normal ActiveX background installation, but are instead directed to the Adobe webpages, are the ones who can see additional download offers on those pages. Specifying a minimum version in your OBJECT tag should be enough to avoid any exposure to unwanted offers. jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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] Re: Tree-to-tree drag & drop
Kinda, yeah. Thanks. I'll keep working on my DND methods. John -Original Message- From: Michael Montagna [mailto:[EMAIL PROTECTED] Sent: Friday, 11 August 2006 3:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tree-to-tree drag & drop COPY operations arent supported in the Tree by default because the framework cant guarantee deep copies of your objects. You'll need to implement your own COPY logic in the DND methods (MOVE can stay the same) including your own object copy. HTH, -Michael > > On 8/9/06 10:47 PM, "John Mazzocchi" <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > This seems like such a simple thing, and yet ... > > > > I'd like to be able to drag & drop nodes between 2 trees ... both to copy and > > to move. > > > > Now both trees have: > > dragEnabled="true" dropEnabled="true". > > > > Scenario (a): they both have dragMoveEnabled="true" ... so while they *will* > > MOVE nodes between each other, they *won't* COPY them when holding down > > CTRL-key (as they're supposed to). > > > > Scenario (b): they both have dragMoveEnabled="false" ... by default, the nodes > > should COPY across, but it doesn't allow this, as if dropEnabled were *false*. > > > > In short, you can't COPY nodes between them ... do I really need to write my > > own drag & drop functions? :/ > > > > Thanks > > John > > > > > -- 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/
RE: [flexcoders] Tree-to-tree drag & drop
Title: Re: [flexcoders] Tree-to-tree drag & drop Thanks, in the meantime I've written some drag-n-drop functions (not that they work completely yet ;) John -Original Message-From: Joan Tan [mailto:[EMAIL PROTECTED]Sent: Friday, 11 August 2006 6:55 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Tree-to-tree drag & dropThis should work. I believe it is a bug and I will log it in our internal database.JoanOn 8/9/06 10:47 PM, "John Mazzocchi" <[EMAIL PROTECTED]> wrote: This seems like such a simple thing, and yet ...I'd like to be able to drag & drop nodes between 2 trees ... both to copy and to move.Now both trees have:dragEnabled="true" dropEnabled="true".Scenario (a): they both have dragMoveEnabled="true" ... so while they *will* MOVE nodes between each other, they *won't* COPY them when holding down CTRL-key (as they're supposed to).Scenario (b): they both have dragMoveEnabled="false" ... by default, the nodes should COPY across, but it doesn't allow this, as if dropEnabled were *false*.In short, you can't COPY nodes between them ... do I really need to write my own drag & drop functions? :/ThanksJohn __._,_.___ -- 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] Tree-to-tree drag & drop
This seems like such a simple thing, and yet ... I'd like to be able to drag & drop nodes between 2 trees ... both to copy and to move. Now both trees have: dragEnabled="true" dropEnabled="true". Scenario (a): they both have dragMoveEnabled="true" ... so while they *will* MOVE nodes between each other, they *won't* COPY them when holding down CTRL-key (as they're supposed to). Scenario (b): they both have dragMoveEnabled="false" ... by default, the nodes should COPY across, but it doesn't allow this, as if dropEnabled were *false*. In short, you can't COPY nodes between them ... do I really need to write my own drag & drop functions? :/ Thanks John -- 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] Can a Tree node/leaf have a customItemRenderer?
The subject says it all - can a tree node, especially a leaf, have a customItemRenderer? What I'd like to do is have a tree for navigating an xml structure and then populate leaves (say) by using a combobox or some other renderer ... if anyone's ever used the Magnolia CMS ... you'll understand the paradigm that I'm considering (even though Magnolia doesn't use ComboBoxes, per se). Cheers John -- 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] Finding the x/y position of an object
I've been using this for a while now:public static function localToLocal(from:MovieClip, to:MovieClip, origin:Object):Object { var point:Object = origin == undefined ? {x: 0, y: 0} : origin; from.localToGlobal(point); to.globalToLocal(point); return point; } its never failed me yet. Of course, this code is as2, so fix it up for your as3 usage, but should work just the same. jpgOn 8/8/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: I have a nested object (an HBox) in my app, and I'm trying to figure out the global x/y position of it. __._,_.___ -- 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] Was: Why does it take so long
I think it WAS the filter for gmail-- [ JPG ] __._,_.___ -- 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] Why does it take so long for a message to appear on this list?
I see them on other lists, but maybe there is something wrong with the flexcoders filter - thanks for the tip ;)On 8/8/06, Tom Chiverton < [EMAIL PROTECTED]> wrote:On Monday 07 August 2006 21:50, John Grden wrote: > I think the issue is that on this list, you don't see your own post.I do.You, however, are on Gmail, which hides them until someone replies.--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. CONFIDENTIALITYThis 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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/ -- [ JPG ] __._,_.___ -- 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] Why does it take so long for a message to appear on this list?
I think the issue is that on this list, you don't see your own post.I think that's something they should turn on if that's possible. I always check on other lists to make sure my post made it, it'd be nice if this one was the same ;) On 8/7/06, Dave Bobby <[EMAIL PROTECTED]> wrote: I have a follow up thought to my earlier post. But my post has not shown up yet. I understand that this forum is moderated but sometimes it seems like snail mail and not email. -- [ JPG ] __._,_.___ -- 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: RadioButtons as customItemRenderers/Editors in DataGrids
Tim, thanks ... yeah I did discover that. My RadioButtons have: groupName="{(data.parent())[EMAIL PROTECTED]" My only issue now is that there are *multiple* RadioButtonGroups in my app, and I need to set the id of each one from the XML I've read in. It seems that the id can only be of type text? I'd like it to be of the form as above, i.e. id="{(data.parent())[EMAIL PROTECTED]" , but it doesn't seem to work. Cheers J -Original Message-From: Tim Hoff [mailto:[EMAIL PROTECTED]Sent: Saturday, 5 August 2006 8:06 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: RadioButtons as customItemRenderers/Editors in DataGrids Hi John, To get the RadioButtons inside an itemRenderer to work together, you need to associate them with a common RadioButtonGroup. Place this tag right above the DataGrid in your application: Then, use code like this in your itemRenderer: -TH--- In flexcoders@yahoogroups.com, "John Mazzocchi" <[EMAIL PROTECTED]> wrote:>> The subject line pretty much says it all ... has anyone had any experience with this? The problem being that the RadioButtons, each one created by a customItemEditor/Renderer and appearing one per row in a DataGrid, seem to act independently of each other ...> > Ta.> John> __._,_.___ -- 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] gotoAndStop Crash
Hi:I have uploaded an example of the gotoAndStop causing the flash player to crash... just quickly move the character about randomly and let me know if it crashes on yours! http://www.ukmn.net/studio/playframe/test_02/boxtrix.htmlPlease could you let me know if this is an issue with my system or does it crash on every machine?Regards:John __._,_.___ -- 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] gotoAndStop causing browser to crash
Hi:I am embedding a movieclip into one of my classes using this method:[Embed(source='/sprites.swf', symbol='PlayerSprite')]private var PlayerSprite:Class;I need to use gotoAndStop to reflect a state change... e.g.:if(_isMoving){ mc.gotoAndStop("walk_"+angle);}else{ mc.gotoAndStop("idle_"+angle);}The script works but it causes both IE and FireFox to crash completly at random times when gotoAndStop is executed. Has anybody else experienced this?Regards:John __._,_.___ -- 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] Styles editor
Yes Yes Yes, that's the one!Sam rocks \m/Haha, sounds like "shamrocks" ;)On 8/4/06, sam / pixelconsumption < [EMAIL PROTECTED]> wrote: John, Do you mean the styles explorer? If so this one runs fine for me in the release player, http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html . - Sam John Grden wrote: > > Has that little gem been updated for the final release of FP9/flex 2? > > -- > John Grden > > -- John Grden __._,_.___ -- 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] Styles editor
Has that little gem been updated for the final release of FP9/flex 2?-- John Grden __._,_.___ -- 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] RadioButtons as customItemRenderers/Editors in DataGrids
The subject line pretty much says it all ... has anyone had any experience with this? The problem being that the RadioButtons, each one created by a customItemEditor/Renderer and appearing one per row in a DataGrid, seem to act independently of each other ... Ta. John -- 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] WOW - FLEX/AS3 Performance
Hi:I am porting a game done in AS2 to FLEX/AS3. It has physics & collision detection on an isometric playing board. The AS2 version used to slow down when you had maybe 10 objects moving at a time but in FLEX/AS3 there seems to be no slowing down even with over 100 objects on screen! Amazing! Check out this small test (100 blocks):http://www.ukmn.net/studio/playframe/test_01/boxtrix.htmlI just thought I would share this with you guys. Regards:John __._,_.___ -- 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: Serverside FLV conversion?
Use FFMPEG. I did a preso on it some time ago but I THINK it was lost in the sauce once the Breeze url's changed.http://ffmpeg.mplayerhq.hu/It is free, easy to use, and highly powerful. On 8/2/06, Renaun Erickson <[EMAIL PROTECTED]> wrote: On2 Flix Engine http://www.on2.com/developer/flix-engine-sdk/ There are other transcoding services or boxes that people sale. I think ffmpeg is also used to encode FLV its open source but will take some configuration to make it work as you want. Renaun --- In flexcoders@yahoogroups.com, "Rick Schmitty" <[EMAIL PROTECTED]> wrote: > > Are there any tools out there that will let users submit mpeg/avi/wmv > through a form and have a server component convert into flv for use > with Flex apps? > -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Populating Tree from XML thru HTTPService - agony
Man, I've spent hours on this ... and the documentation seems no help. I'm trying to populate a Tree from the following XML file: can anyone explain why the following code works (pretty much): while the following does *not*: also using: result="firstList.dataProvider=treeModel.lastResult.*" in the HTTPService doesn't help, instead of the decalring the dataProvider in the Tree doesn't seem to change anything. In fact, I'm kinda fuzzy about the whole lastResult / event.result methods anyway ... any pointers here? Or best practices? Is using URLLoader instead an option? Thanks John -- 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] Game Depth Management
Hi:I have just started using Flex Builder 2 and am finding authoring Actionscript 3.0 projects a dream.I am having issues getting my head round the new way of managing depths. Specifically in an isometric game I am porting to AS3. Here is a snippet of code that shifts a sprite to a specific depth: _sprite.swapDepths( int(newX + (newY * 900)) );The important thing here is that I am swapping to a SPECIFIC depth... so when other movieclips redraw and swap depth they are placed in the correct depth relative to the others. This is very loose (you could have movieclips at depth 100,000 easily) but is worked fine in AS2.Has anybody got any ideas on how to approach this in AS3? If you think my question is too vague let me know and ill try to elaborate more. Regards:John __._,_.___ -- 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] I need a ColorPicker dataGrid Renderer
Hello, I'm looking for a colorPicker renderer for a dataGrid. Has anyone successfully built one of these you could share? THanks John __._,_.___ -- 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] IconFunction issue
Ok, here goes: I'm trying to implement a "Windows File Explorer"-like interface to a data repository. For the time being I'm assuming that I receive XML from some API. So I'm using a static XML file for now, it's called "treexmldatastruct.xml". The problem I'm having is this ... I'd like the icons in my explorer interface (which is implemented as a Tree) to be indicative of the filetype. I've created icon files and written an IconFunction to do this and it works fine. Except that branches of the Tree also wind up having their icons changed ... in spite of the fact that I've defined a folderOpenIcon and a folderClosedIcon. The docs claim that an IconFunction can't override these, but in fact it does seem to be. Here's the relevant code: The XML file "treexmldatastruct.xml" is: Thanks for any help. Cheers John This email and any files transmitted with it may be confidential and are intended solely for the use of the individual or entity to whom they are addressed. This email may contain personal information of individuals, and be subject to Commonwealth and/or State privacy laws in Australia. This email is also subject to copyright. If you are not the intended recipient, you must not read, print, store, copy, forward or use this email for any reason, in accordance with privacy and copyright laws. If you have received this email in error, please notify the sender by return email, and delete this email from your inbox. -- 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: using E4X to filter data in a datagrid
ben, that worked thanks!Now to further complicate matters :)my end goal is that I have 5 combo boxes with filters. Each can be fired off in any order. I'd like to figure out how have one function see the newly filtered data and filter that data further, based on user input. I haven't been able to get my varialbes to match up between XMLList and XML to get it to work. Here's the flow I'm envisioning. Set my root XML data to a temp var on init. Each function looks at that var, applies the E4X filtering, then saves the new XML to the temp var so that subsequent filters can see that data and filter on it. Thx!On 7/28/06, John Wilker <[EMAIL PROTECTED]> wrote: that is what I mean :) I'll give that a shot. ThanksOn 7/28/06, ben.clinkinbeard < [EMAIL PROTECTED] > wrote: I don't have the IDE in front of me but I would think something like this should work: function changeDP(attrName):void { var list:XMLList = baseXml..myNodes.([EMAIL PROTECTED]); myDG.dataProvider = list; } Is that what you mean? HTH, Ben http://www.returnundefined.com/ --- In flexcoders@yahoogroups.com, "John Wilker" <[EMAIL PROTECTED]> wrote: > > I'm working on a project that has a datagrid, who gets data from an XML > object. > > I'm trying to figure out how to use E4X to filter the XML data I got and > update the datagrid so I have less roundtrips to the server. I've found > several examples in language reference, but those make use of either > directly binding to an E4X statement, or using MX binding to do the same. > > I'd like to have a function, that will filter my large XML dataset, using > E4X (ie, get just the nodes that are of type XYZ) and use that to populate > the datagrid. > > Hopefully that makes sense? > > -- > John Wilker > Vice President Software Development/Writer > Red Omega Solutions, Inc. > www.johnwilker.com / www.red-omega.com > > "Everything changes, nothing remains without change." ~Buddha c.483 bc > -- John WilkerVice President Software Development/WriterRed Omega Solutions, Inc. www.johnwilker.com / www.red-omega.com"Everything changes, nothing remains without change." ~Buddha c.483 bc -- John WilkerVice President Software Development/WriterRed Omega Solutions, Inc.www.johnwilker.com / www.red-omega.com"Everything changes, nothing remains without change." ~Buddha c.483 bc __._,_.___ -- 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: using E4X to filter data in a datagrid
that is what I mean :) I'll give that a shot. ThanksOn 7/28/06, ben.clinkinbeard <[EMAIL PROTECTED] > wrote: I don't have the IDE in front of me but I would think something like this should work: function changeDP(attrName):void { var list:XMLList = baseXml..myNodes.([EMAIL PROTECTED]); myDG.dataProvider = list; } Is that what you mean? HTH, Ben http://www.returnundefined.com/ --- In flexcoders@yahoogroups.com, "John Wilker" <[EMAIL PROTECTED]> wrote: > > I'm working on a project that has a datagrid, who gets data from an XML > object. > > I'm trying to figure out how to use E4X to filter the XML data I got and > update the datagrid so I have less roundtrips to the server. I've found > several examples in language reference, but those make use of either > directly binding to an E4X statement, or using MX binding to do the same. > > I'd like to have a function, that will filter my large XML dataset, using > E4X (ie, get just the nodes that are of type XYZ) and use that to populate > the datagrid. > > Hopefully that makes sense? > > -- > John Wilker > Vice President Software Development/Writer > Red Omega Solutions, Inc. > www.johnwilker.com / www.red-omega.com > > "Everything changes, nothing remains without change." ~Buddha c.483 bc > -- John WilkerVice President Software Development/WriterRed Omega Solutions, Inc.www.johnwilker.com / www.red-omega.com"Everything changes, nothing remains without change." ~Buddha c.483 bc __._,_.___ -- 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] using E4X to filter data in a datagrid
I'm working on a project that has a datagrid, who gets data from an XML object.I'm trying to figure out how to use E4X to filter the XML data I got and update the datagrid so I have less roundtrips to the server. I've found several examples in language reference, but those make use of either directly binding to an E4X statement, or using MX binding to do the same. I'd like to have a function, that will filter my large XML dataset, using E4X (ie, get just the nodes that are of type XYZ) and use that to populate the datagrid.Hopefully that makes sense? -- John WilkerVice President Software Development/WriterRed Omega Solutions, Inc.www.johnwilker.com / www.red-omega.com "Everything changes, nothing remains without change." ~Buddha c.483 bc __._,_.___ -- 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] What is the difference between an Array and an ArrayCollection?
You mean I'm supposed to throw those (socks with wholes) away?On 7/25/06, Tobias Patton <[EMAIL PROTECTED] > wrote: You can also supply sorting and filtering criteria to an array collection. This would be like a chest of drawers that folds your socks and tosses the ones that have holes in them. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com ] On Behalf Of Pan Troglodytes Sent: Tuesday, July 25, 2006 3:11 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] What is the difference between an Array and an ArrayCollection? To add to Jester's imaginative response, ArrayCollection actually wraps an Array. So inside, there is an Array, which can be accessed through the source property. But if you directly access the array, you don't get the cool events the make data binding work. On 7/25/06, JesterXL <[EMAIL PROTECTED]> wrote: A drawer from Disney's "Beauty and the Beast" that goes, "Dude, you just put something in me!". It does this by emitting an event, collectionChanged, when this happens. Controls can listen for this event and know when the array is updated in order to redraw themselves, like the DataGrid, List, etc. An Array is like a drawer in the real world. You can put something in it, but it doesn't talk to you. - Original Message - From: Bill Brown To: flexcoders@yahoogroups.com Sent: Tuesday, July 25, 2006 5:59 PM Subject: [flexcoders] What is the difference between an Array and an ArrayCollection? This is a pretty newbie programming question, but coming from an AS1/AS2 background I'm not familiar with the difference between an Array and an ArrayCollection. Could someone please explain the difference, or suggest a URL that explains the difference? When I learned about arrays through Phillip Kerman's Actionscript book, he suggested that a "variable" was like a drawer that could hold data and an "array" was like a chest of drawers where you could reference each drawer with an index. What would an "arrayCollection" be in this analogy? Thanks, BB -- Jason -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] VideoPlayer.metadataReceived - were'd it go?
I did a search on the archives and through gmail/google and can't seem to find the infoany clues, much appreciated -- John Grden __._,_.___ -- 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: Populating ComboBox from Model/XML
Thank you. Much appreciated. John -Original Message- From: ericonanson [mailto:[EMAIL PROTECTED] Sent: Saturday, 22 July 2006 12:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Populating ComboBox from Model/XML Hi, here is something that works, if you know cold fusion then create a cfc that has the data you want and call it from a webservice, other wise populate an xml file and call that. Step one; Create xml file - name it mydata.xml AL Montgomery AK Juneau AR Little Rock Step two; copy and paste this code into flex builder http://www.adobe.com/2006/mxml"; layout="absolute"> The file myData.xml is used to populate the combo boxes >From one newbie to another. Hope this helps Eric --- In flexcoders@yahoogroups.com, "John Mazzocchi" <[EMAIL PROTECTED]> wrote: > > Hi, newbie question here ... just learning. I'm using Flex 2. There seem to be numerous errors and typos in the Adobe Flex Help files/PDFs and I'm hitting a snag here ... > > What I'd like to do, to begin with, is to populate a ComboBox from an external XML file. The section in the help files called "Populating a ComboBox control using variables and models" seems pertinent, but the second part of example doesn't work. > > The relevant code is this ... > > > > > > AK > Juneau > > > AR > Little Rock > > > > > > > > > Should I be using XML or XMLList instead? Later I'd like to have the dataProvider be from an external source (HTTPService or WebService), but I can't even get this simpler code to work. Any help appreciated. Thanks. > > > This email and any files transmitted with it may be confidential and are intended solely for the use of the individual or entity to whom they are addressed. This email may contain personal information of individuals, and be subject to Commonwealth and/or State privacy laws in Australia. This email is also subject to copyright. If you are not the intended recipient, you must not read, print, store, copy, forward or use this email for any reason, in accordance with privacy and copyright laws. If you have received this email in error, please notify the sender by return email, and delete this email from your inbox. > -- 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/
Re: [flexcoders] Flash 9/AS3 (speech recognition & generation)
geminy555 wrote: > I'm interested in connecting a Flash 9 /AS3 app to a speech > recognition engine. That is sending audio from the client computer to > a SR engine at the server and creating the response in flash. Do you > know of any links source or documentation that would be helpful? Questions about general Flash Platform abilities usually don't pull well on this Flex-specific mailing list, particularly now that everyone's talking about Flex 2.0, but this sounds like a great topic for other Flash problem-solving lists. I know there are serverside speech recognition engines. I haven't yet studied their implementations, though. I don't know much. But I do know that many speech recognition systems are for telephone navigation systems, and so should be able to accept input pretty freely, within certain digital audio formats. I suspect that the microphone controls within Adobe Flash Player should let you send an audio stream from the visitor's browser to your media server, and then redirect that to your speech-recognition server. For generation, I wasn't sure I could see what you were visualizing, whether you'd generate the machine's reply as an MP3 file on your server, or what. There could be different types of solutions, depending on the types of answers that might need to be generated. For a limited command set, you might be able to do it all locally, no server... check the pattern of volume in the microphone and determine which canned audio snippet to present... mic volume alone can distinguish most speakers' "back" from "forward", for instance. http://livedocs.macromedia.com/labs/as3preview/langref/flash/media/Microphone.html#activityLevel Sorry you didn't get more replies, but this list is focused more on the coding abilities in the new Flex release than in general media issues with the Adobe Flash Player. Interesting topic, though, and I wish you luck on the project. jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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] DateField cellRenderer not working with date as String
I still get this error when I select the date, tab off of the cell, and return back to that cell. Type Coercion failed: cannot convert "04/13/2005" to Date Is there something I am missing here? Here is my code below: And this is my RendererDate.mxml component: http://www.adobe.com/2006/mxml"> On 7/20/06, Ralf Bokelberg <[EMAIL PROTECTED]> wrote: Works for me, if i use the following external itemEditor http://www.adobe.com/2006/mxml "> cheers,Ralf. On 7/20/06, John Buhl < [EMAIL PROTECTED]> wrote: Yes. The data can be parsed fine. I think I need somehow to use a Model with my XML so I can massage the data first, and then set the dataProvider to the Model instead of the XML object. Still researching... On 7/20/06, Tom Chiverton < [EMAIL PROTECTED]> wrote: On Thursday 20 July 2006 15:53, John Buhl wrote:> field comes across as text, so I'm trying to cast it into a Date object > before using the cellRenderer component. But it just won't work. Has What format is the data string in ? Is it one Date can parse itself ?--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. CONFIDENTIALITYThis 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 ~-->Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM ~->--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/ -- ***John Buhl770-722-5209 (c)770-234-6710 (f) *** -- Ralf Bokelberg <[EMAIL PROTECTED]> Flex & Flash Consultant based in Cologne/Germany -- *** John Buhl770-722-5209 (c)770-234-6710 (f)*** __._,_.___ -- 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] Populating ComboBox from Model/XML
Hi, newbie question here ... just learning. I'm using Flex 2. There seem to be numerous errors and typos in the Adobe Flex Help files/PDFs and I'm hitting a snag here ... What I'd like to do, to begin with, is to populate a ComboBox from an external XML file. The section in the help files called "Populating a ComboBox control using variables and models" seems pertinent, but the second part of example doesn't work. The relevant code is this ... AK Juneau AR Little Rock Should I be using XML or XMLList instead? Later I'd like to have the dataProvider be from an external source (HTTPService or WebService), but I can't even get this simpler code to work. Any help appreciated. Thanks. This email and any files transmitted with it may be confidential and are intended solely for the use of the individual or entity to whom they are addressed. This email may contain personal information of individuals, and be subject to Commonwealth and/or State privacy laws in Australia. This email is also subject to copyright. If you are not the intended recipient, you must not read, print, store, copy, forward or use this email for any reason, in accordance with privacy and copyright laws. If you have received this email in error, please notify the sender by return email, and delete this email from your inbox. 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] DateField cellRenderer not working with date as String
Yes. The data can be parsed fine. I think I need somehow to use a Model with my XML so I can massage the data first, and then set the dataProvider to the Model instead of the XML object. Still researching... On 7/20/06, Tom Chiverton <[EMAIL PROTECTED]> wrote: On Thursday 20 July 2006 15:53, John Buhl wrote:> field comes across as text, so I'm trying to cast it into a Date object > before using the cellRenderer component. But it just won't work. HasWhat format is the data string in ? Is it one Date can parse itself ?--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. CONFIDENTIALITYThis 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 ~-->Something is new at Yahoo! Groups. Check out the enhanced email design. http://us.click.yahoo.com/SISQkA/gOaOAA/yQLSAA/nhFolB/TM~->-- Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/-- ***John Buhl770-722-5209 (c)770-234-6710 (f) *** __._,_.___ -- 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] DateField cellRenderer not working with date as String
The DateField cellRenderer works great when your date is already a Date object. However, since I am dynamically reading in an XML file the date field comes across as text, so I'm trying to cast it into a Date object before using the cellRenderer component. But it just won't work. Has anyone run into this problem yet? __._,_.___ -- 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] Mac equivalent of ActiveX
FineLine wrote: > Hi, I have a question for the Mac experts. On Windows, I can embed a > component written in Flex into a host application using the Shockwave Flash > ActiveX object, and communicate with it using various method calls and > events. Is there any equivalent mechanism(s) on the Macintosh? Sorry I'm late to the discussion... here's a couple of things you might be seeking: (Q) Is there a Mac ActiveX? (A) There was, but few used it, and IE/Mac was abandoned by Microsoft awhile back. (Q) Can I add a browser extension to my native-code Macintosh applications? (A) Yes, if you can emulate the Netscape Plugin hosting mechanism. (Q) Is there a protocol for Netscape Plugins to communicate with their host, on Macintosh? (A) Yes, the Adobe Flash Player uses a generic externalInterface wrapper layer for using various host communication protocols, and for the Netscape Plugin protocol you'd be implementing this API: http://www.mozilla.org/projects/plugins/npruntime.html (Q) How can I render Flash within native-code applications across platforms? (A) Via the above path, but it's a lot of work to write one native-code application, much less multiple ones which integrate platform-neutral renderers. jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, 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] Applet running on Flex (production version)
I think that project description may boil down to the question "How can I display a Java applet within a SWF in my audience's various browsers?" (If I'm understanding the wrong question from the project description, then please advise.) If I'm looking at the correct question, then there is no direct answer, because web browsers can allocate a rectangular area of the screen to browser extensions like plugins and applets. Browser technology does not offer a way to literally put an applet inside a plugin's display. That said, though, there may be ways to get an effect similar to what you wish: a) You could *try* WMODE overlay support, but this varies with browser, and even when it worked would probably be a little strange, to try to overlay an applet atop a plugin. b) Another technique to give the appearance of an applet within a SWF would be to put a frame of SWF around the applet: four individual SWFs, placed seamlessly together, with the applet in the center. That's five engines running simultaneously, though, and could also be strange in some browsers. c) Other possibilities would depend on what communication abilities your scanning applet possesses -- it could send image data to the server which is then dynamically loaded by a single SWF, or might be able to pass numeric image data to the browser which then passes it to the SWF which then uses imaging techniques to create the image from the data, etc. I'm guessing we're talking about getting image data from a desktop photoscanner here, where the user might put in a photo and see the material in their web browser. If so, then it seems simple to just use the applet in the regular way, either in the same HTML page or in its own popup window... most users would find it natural to see and approve a photoscan in a new window, I think. But at this point I can't offer design tips on the project; all I know is that browsers do not tend to let you display an applet within a plugin. Maybe one of the above paths could lead you where you wish...? jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, thanks. 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] Compiling Flex--thank you!
Hi Tom,thanks again for all your help`-`I could not get this to work.I put the flex sdk in the Applications folder,and I try:java -jar /Applications/flex/lib/mxmlc.jar -flexlib /Applications/flex/frameworks/Flex.mxmlerror-->command line: Error: unknown configuration variable 'flexlib'Use 'mxmlc -help' for information about using the command line.However, a friend told me to use this command line:java -jar /Applications/flex/lib/mxmlc.jar --strict=true -load-config /Applications/flex/frameworks/flex-config.xml -file-specs /Users/johnbarrett/Hello.mxmlerror-->Loading configuration file /Applications/flex/frameworks/flex-config.xmldefaults: Error: unable to open './macFonts.ser'Any thought?Thanks so much for your help,JohnTom Chiverton <[EMAIL PROTECTED]> wrote: On Wednesday 05 July 2006 14:28, John wrote:> (3) java -jar {flex}/lib/mxmlc.jar -flexlib> {flexdir}/frameworks/Flex.mxml>> This command line instructions came from:> http://labs.adobe.com/wiki/index.php/Flex_Builder:tutorials:compiling_mxmlc>> ---Error---> Unable to access jarfile {flex}/lib/mxmlc.jarWhere it says {flex}you need to write the path (from /) that will take you to the thing it wants, not a literal set of curly braces around a string.Something likejava -jar /System/Library/lib/mxmlc.jar -flexlib /System/Library/frameworks/Flex.mxmlshould work better.-- Tom ChivertonThis 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.CONFIDENTIALITYThis 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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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/ Yahoo! Music Unlimited - Access over 1 million songs. Try it free. __._,_.___ -- 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] Compile flex on Mac--Problem is fixed!
Hi,Thanks to all you have offered help, and I am happy to say that the problem is fixed,and I can compile the final release of the flex SDK.my friend Chris has helped me figure out what was going on.in the flex-config.xml: macFonts.serI enabled the attribute and changed it to macFonts.ser from localFonts.serBoth the command line now compiled and my ANT task in Eclipse worked as well.This is a very happy day, as I can compile flex on the mac again`-`Thanks to all who helped`-`John How low will we go? Check out Yahoo! Messengers low PC-to-Phone call rates. __._,_.___ -- 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] Compiling Flex--thank you!
Hi Ted,Thanks for the update. I am sure that when adobe makes the flex builder for the mac it will be great.Thanks,JohnTed Patrick <[EMAIL PROTECTED]> wrote: I have a MacBook Pro and run bootcamp + Flexbuilder. Many devs internally are running Parallels to use Flex Builder and the set-up works great. The entire Flex Builder team got MacBooks for development of the Mac version of Flex Builder. Adobe is very serious about making FlexBuilder great on both Win and Mac similar to all other Adobe tools. More to come⦠Ted Patrick Flex Evangelist Adobe Systems Incorporated From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon Hicks Sent: Wednesday, July 05, 2006 8:30 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Compiling Flex--thank you! Thanks for the link! Turns out my information was 3 days older. Perhaps I can get that MacBook Pro sooner than I thought? :) Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ted Patrick Sent: Wednesday, July 05, 2006 10:07 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Compiling Flex--thank you!Shan, Not exactly true⦠http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_builder_on.cfm Via the Flex Team Blog⦠June 30, 2006 Flex Builder on the Mac There have been many questions over the last few days as to Adobe's intentions for releasing Flex Builder on the Mac. As part of our continuing effort at transparency here is a short list of questions and attempts at answers. Let us preface this by saying that we have only begun the planning phases of the next release(s), so many of these answers will be incomplete until we've had some more time (and sleep). Q: Is there going to be a Flex Builder release for the Mac? A: Yes Q: Why wasn't it released with the Windows version? A: We began by developing Flex Builder for both Mac and Windows at the same time. However during development we ran into a number of issues that were specific to OS X and needed to be addressed in Eclipse itself. Fixing those issues would have meant delaying the overall schedule, so we decided to focus on finishing the Windows release before returning to the Mac in a follow-up. In the meantime the Eclipse community has been working on Eclipse 3.2 which fixes a number of the issues we ran into earlier. This makes the likelihood of a timely Mac release that much better, and we're looking forward to continuing to improve Eclipse on the Mac. Q: When will Flex Builder for the Mac be available? A: We are still in our planning phases but we are hoping to have a public beta on Labs this year and the production release early next year. One can imagine a particular event in October where we'd be thrilled if we could launch the beta, but we simply don't know our timelines yet. We can say that a whole lot of Flex Builder engineers just received shiny new toys to help in this pursuit, while Product Management received nothing. Not that Product Management is jealous. Q: If I buy Flex Builder for Windows can I transfer that license to the Mac when it comes out? A: Honestly we're not sure yet, we still need to figure this out. We'll need another few weeks to answer this, hopefully before the trial expires. Q: Will Flex Builder for Mac run on PPC, Intel, or both? A: We're very excited about the new Intel-based Macs (at least the engineers who received them are, PM is still not jealous) and at minimum we will be supporting that platform. We'd be interested in getting your feedback on the importance of supporting PPC given how quickly the Intel is getting adopted. Feel free to leave feedback here. Q: What about Flash Player 9 on the Intel for Mac? A: You can grab a beta version of that Player here: http://www.adobe.com/products/flashplayer/public_beta Q: What do I do in the meantime if I have a Mac? A: Download and use the free SDK. A number of developers have come up with workflows for building Flex applications using the Mac; we'll try to put together a more comprehensive list of them in the next few days.From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shannon Hicks Sent: Wednesday, July 05, 2006 6:50 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Compiling Flex--thank you!Just keep in mind that Adobe has not announced any plans to release a Mac version. They did remark that if they do release a Mac version (and we all assume they will), it won't be until the next major revision of Flex Builder. (Does that mean Flex Builder 3? If so, that's 16+ months away!) Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Sent: Tuesday, July 04, 2006 9:45 PM To: flexcoders Subject: [flexcoders] Compiling Flex--thank you!Hi, I would like to thank everyb
Re: [flexcoders] Compiling Flex--thank you!
Hi Tom, Thanks so much for your helpl`-` here is a very simple example: ---Flex.mxml--- http://www.adobe.com/2006/mxml";> ---compile--- (1) open termnial (2) cd flex (3) java -jar {flex}/lib/mxmlc.jar -flexlib {flexdir}/frameworks/Flex.mxml This command line instructions came from: http://labs.adobe.com/wiki/index.php/Flex_Builder:tutorials:compiling_mxmlc ---Error--- Unable to access jarfile {flex}/lib/mxmlc.jar I also tried to cd into the flex/lib, as well as flex/framework The Flex.mxml is located in flex/frameworks I just downloaded the flex SDK, and remaned the folder(the SDK) flex. Any help that you could provide to compile using the command line would be wonderful. Thanks so much, John --- Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Wednesday 05 July 2006 03:45, John wrote: > > I can't figure out how to compile flex > applications using eclipse (or any > > IDE) on the Mac, and have given up on it. > > Just use the command line. It's fine. > If not, post what you typed, what it did, and your > code :-) > > -- > 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 > > > [EMAIL PROTECTED] > > > > > > __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.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/
[flexcoders] Compiling Flex--thank you!
Hi,I would like to thank everybody who has offered me help`-`I can't figure out how to compile flex applications using eclipse (or any IDE) on the Mac, and have given up on it. It worked fine in beta 3, but the final release does not work for me!I guess I will have to wait for flex builder to come to the mac, as I heard that is being worked on.If anybody has a detailed solution and would like to help, please contact me at school:[EMAIL PROTECTED]Thanks very much for all those who have helped`-`John Want to be your own boss? Learn how on Yahoo! Small Business. __._,_.___ -- 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] macFonts.ser file
Hi,I am still trying to configure eclipse with ANT on the mac.I was wondering if anybody knows if the .ser files are new in the final release. When I configure the ANT set up, the compiler is looking for this file, but can't find it. Was this file included before in the frameworks? This error is causing eclipse not to compile the mxml files.I was wondering if anybody can help me figure out how to work with the final release using the mac with eclipse?? Does somebody use eclipse with the mac to compile mxml files?I feel like it is impossible at this point, been trying for 3 days, and am about to give up!Thanks,John Do you Yahoo!? Next-gen email? Have it all with the all-new Yahoo! Mail Beta. __._,_.___ -- 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] using Mac to compile
Hi Tom,Thanks again for your help.I was wondering if you know the command to compile flex files using the terminal? I tried the mxmlc command, but I assume that I need more argements along with it.If I could compile the flex files in the termnial I would be happy, I would rather use eclipse, but at this point whatever works.Thanks,JohnTom Chiverton <[EMAIL PROTECTED]> wrote: On Friday 30 June 2006 11:47, John wrote:> Hi Tom,> Thanks so much for getting back to me.> Been trying to get the final release to work with> Eclipse & ANT, but have had no luck!Does it work without ANT ?I.e., install the SDK, open a terminal, and run 'mxmlc' ?> so many problems trying to compile the flex files. I> can't seem to get anything to work, very frustrating!It's totally changed 1.5->2, so I can understand that.> Thanks so much for your help, it is very nice of you> to help`-`Doing my best, not having a Mac or a Windows machine :-)-- Tom ChivertonThis 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.CONFIDENTIALITYThis 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.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards 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 ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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/ Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min. __._,_.___ -- 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] using Mac to compile
Hi Tom, Thanks so much for getting back to me. Been trying to get the final release to work with Eclipse & ANT, but have had no luck! Just tried with Xcode, which worked with beta 2, and beta 3, but now it does not work with the final release. Looks like I need to get a macbook so I can run windows, then I can use FlexBuilder. I have never had so many problems trying to compile the flex files. I can't seem to get anything to work, very frustrating! Thanks so much for your help, it is very nice of you to help`-` Thanks again, John --- Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Friday 30 June 2006 02:12, John wrote: > > Since I can't figure out how to compile the final > release using the mac & > > eclipse I am stuck > > mxmlc is just a Java program, so if you have the > runtime it should just work. > > -- > 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. > > We are pleased to announce that Halliwells LLP has > been voted AIM Lawyer of the Year at the 2005 Growth > Company Awards > > > > 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 > > > [EMAIL PROTECTED] > > > > > > __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.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] using Mac to compile
Hi Matt,Thanks very much for your response. I have been using Ant to compile, and with beta 2 and beta3 with no problems, and worked great. I can't get it to work with the final release. Where the .ser files new with the final release? Your right, there are additional problems with the swfs, even illegal notices. I would say I need to re-compile all the application files.Please don't think that I am complaining, I am not just frustrated. I am going to try XCode again, hopefully I can get that to work. I was using that before, but wanted eclipse as I use cfeclipse, and figureed one IDE would be best!Thanks so much for your help,JohnMatt Chotin <[EMAIL PROTECTED]> wrote: Swfs built for beta3 are incompatible with the release player and vice versa. Iâm not sure why compiling with the SDK is any different in release vs. beta 3, I donât believe we changed much there. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Sent: Thursday, June 29, 2006 6:13 PM To: flexcoders Subject: [flexcoders] using Mac to compile Hi, When I use beta 3 to compile, and try to view in the final release of flash player 9, I get this error with many of my applications: Error #2044: Unhandled IOErrorEvent: Now, none of the code changed at all and worked using beta 3. Since I can't figure out how to compile the final release using the mac & eclipse I am stuck using beta 3, which is fine, but I would like to use the latest flash player, especially since I didn't save the beta flash player once the new one came out. I am hoping somebody can help me fi! gure this out, as I am really stuck:( Is anybody using eclipse on the mac with the final release? Thanks, John Yahoo! Music Unlimited - Access over 1 million songs. Try it free. Do you Yahoo!? Get on board. You're invited to try the new Yahoo! Mail Beta. __._,_.___ -- 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] using Mac to compile
Hi,When I use beta 3 to compile, and try to view in the final release of flash player 9, I get this error with many of my applications:Error #2044: Unhandled IOErrorEvent:Now, none of the code changed at all and worked using beta 3.Since I can't figure out how to compile the final release using the mac & eclipse I am stuck using beta 3, which is fine, but I would like to use the latest flash player, especially since I didn't save the beta flash player once the new one came out.I am hoping somebody can help me figure this out, as I am really stuck:(Is anybody using eclipse on the mac with the final release?Thanks,John Yahoo! Music Unlimited - Access over 1 million songs. Try it free. __._,_.___ -- 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] Sample project for CRUD type application
We did a simple admin for a client. I can't open it up freely right now but can jump in breeze and show you a preview.On 6/29/06, geiger947 < [EMAIL PROTECTED]> wrote: I am just getting into flex and I can not find a good sample application for a CRUD style app. There are lots that get and show data, but none that have a grid and an update form and use databinding to tie it all together. If anyone has a sample they can share, I would appreciate it. -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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: Net.Connection debugger - Is there something like it in Flex2?
Steve, you can set your proxy info and ServiceCapture will work in Firefox and Flock. I don't know about any other browser, don't use anything else.On 6/29/06, stevenkeys2003 <[EMAIL PROTECTED]> wrote: Duncan, I use Kevin Landon's ServiceCapture.. works pretty decent and will run over https as well. Only drawback is it can be a tad buggy, and will only capture for IE. http://kevinlangdon.com/serviceCapture/ -Steve --- In flexcoders@yahoogroups.com, Duncan McMillan <[EMAIL PROTECTED]> wrote: > > Hi Pete > > I'm using Flex 1.5 and it seems that mx.utils.ObjectUtil and the > TraceTarget facilities are not available. > > I'm trying to debug an RPC using RemoteObject and getting nowhere as I > cannot seem to use the NetConnectionDebugger either. The network monitor > sees the RPC call but the busy cursor just remains for ever. > > Any further ideas? > > Thanks > > Duncan > > > Peter Farland wrote On 06/06/06 15:42,: > > > > > > If you're using a raw NetConnection, then... no, not natively from the > > client. There are third party tools out there that sniffing AMF over > > HTTP traffic. > > > > However, I'd first try using some of the utilities that Flex has to > > dumping an object graph to a string: > > > > import mx.utils.ObjectUtil; > > > > ... > > > > trace(ObjectUtil.toString(result)); > > > > > > If you were using FDS channels and messaging then you could take > > advantage of the mx.logging framework by creating a trace target to dump > > the traffic out to the flashlog.txt file. A simple way to do this is to add > > > > > > > > to your MXML to see everything that was logged... however if you want to > > filter this information you'll need to read up on the ASDoc on logging > > targets and use some script to customize the information being displayed. > > > > FWIW, NetConnection Debugger relied on some mix-ins in your app that > > intercepted trace calls to an underlying NetConnection and then > > broadcast this information on a local connection to the NCD... Flex 2 > > has moved beyond this architecture and now uses a messaging framework > > and a logging API that decouples how a request is made from the service > > being contacted. I would love to see people in the community writing > > their own implementations of mx.messaging.Channel or perhaps a simple > > mx.logging.ILoggingTarget that reported info back to the old NCD! > > > > Pete > > > > > > -- > > *From:* flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] > > *On Behalf Of *Phil Marston > > *Sent:* Tuesday, June 06, 2006 9:52 AM > > *To:* flexcoders@yahoogroups.com > > *Subject:* [flexcoders] Net.Connection debugger - Is there something > > like it in Flex2? > > > > or any other way of seeing what's being sent to AMFPHP and coming back? > > > > Cheers, > > > > Phil > > > > -- > > __ > > Phil Marston > > Learning Technologist > > Learning Technology Unit > > Edward Wright G33, University of Aberdeen, Aberdeen, AB24 3QY, UK > > [EMAIL PROTECTED] p.marston% 40abdn.ac.uk> Tel: +44(0)1224 > > 273329 / +44(0)7798 723660 > > http://www.abdn.ac.uk/diss/ltu/pmarston/ > > <http://www.abdn.ac.uk/diss/ltu/pmarston/> > > http://www.abdn.ac.uk/diss/ltu/ < 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] openday% 40abdn.ac.uk> > > or call 0800 027 1495 > > > > > -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Final release--problems--please help
Hi Tom, Thanks so much for getting back to me. I am not sure, as I only got that error when I had 2 different framework paths, or at least 2 different macFonts.ser files. It has been very troubling, and I have been trying to fix it since last night. I have been using beta 3 still, but I think that there have been changes in the new flash player, and therefore have problems still. Thanks again, I might have to get flex builder, and a windows machine, as I can't seem to figure out how to compile mxml files on the mac with the final release:( Thanks again for all your help, John --- Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Thursday 29 June 2006 11:41, John wrote: > > So the set up--Eclipse--make new java > project--name it {project > > name(anything really)}, and put the flex sdk in > there so that it has the > > form of {project name}/{flex}/{framework} > > Sorry, I meant - what is the content of your > mx:Model tag ? > > -- > 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. > > We are pleased to announce that Halliwells LLP has > been voted AIM Lawyer of the Year at the 2005 Growth > Company Awards > > > > 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 > > > [EMAIL PROTECTED] > > > > > > __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.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] Final release--problems--please help
Hi Tom,Thanks again for geting back to me.What I am trying to do is to replace the final release from the beta 3 set up. I am using eclipse on the mac, and it is really trying to use a build.xml file to compile the mxml files. Attached is the build.xml file.I noticed that there are extra files included in the final release that was not in the beta 3 zip, and perhaps the macFonts.ser is new. I don't remember this file in beta 3.So the set up--Eclipse--make new java project--name it {project name(anything really)}, and put the flex sdk in there so that it has the form of {project name}/{flex}/{framework}I am sorry I can't be more clear, as I am a newbie at flex. Thanks for any help that you might be able to provide,ThanksJohnTom Chiverton <[EMAIL PROTECTED]> wrote: On Wednesday 28 June 2006 23:19, John wrote:> Buildfile: /Users/johnbarrett/flexSamples/build.xml> cForm:> compileMXML:> [exec] Loading configuration file> /Users/johnbarrett/flexSamples/flex/frameworks/flex-config.xml [exec]> /Users/johnbarrett/flexSamples/formmodel.mxml(11): Error: Only one root tag> is allowed. [exec] What's the content of you model there ?In Final, it must be well formed XML (as the message says) which wasn't the case in beta 3.-- Tom ChivertonThis 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.CONFIDENTIALITYThis 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.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email.http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM~-> --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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/ Do you Yahoo!? Next-gen email? Have it all with the all-new Yahoo! Mail Beta. __._,_.___ -- 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 2 Video Player (with funny videos)
In light of the Flex 2 news, I finished this little video player app just to show how Flex 2 can interact with Flash Media Server 2 for streaming videos. There isn't much visually to see but check the source (right click->View Source) to see the code (which there isn't much code there either; lol). This started out by me working on Christophe's FMS app then I couldn't help but do something with Video. Click here to see the app. This videos are pretty coo too. :-)-- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Final release--problems--please help
Hi, I am having a big problem! I can't figure this out.When I update everything to the final release, I can't compile.I use eclipse on the mac, and it uses a build.xml file. I have a Java project defined in eclipse, and in this case it is called "flexSamples". inside there I have a folder called flex, and in there is the frameworks.When I compile I get this error:Buildfile: /Users/johnbarrett/flexSamples/build.xmlcForm:compileMXML: [exec] Loading configuration file /Users/johnbarrett/flexSamples/flex/frameworks/flex-config.xml [exec] defaults: Error: unable to open '/Users/johnbarrett/flexSamples/frameworks/macFonts.ser' [exec] Result: 2BUILD SUCCESSFULTotal time: 1 secondI notice that it is looking for the macFonts.ser file outside of the usually framework, and so when I try to replace the file in the way that it is looking for I get this new error:Buildfile: /Users/johnbarrett/flexSamples/build.xmlcForm:compileMXML: [exec] Loading configuration file /Users/johnbarrett/flexSamples/flex/frameworks/flex-config.xml [exec] /Users/johnbarrett/flexSamples/formmodel.mxml(11): Error: Only one root tag is allowed. [exec] [exec] Result: 2BUILD SUCCESSFULTotal time: 10 secondsCan anybody please help me figure this out.Thanks,John Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail Beta. __._,_.___ -- 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 Release problems, Please Help
Hi Tom,Thanks so much for your help`-`I tried the download twice, I think that it is okay.That file was in /frameworks/macFonts.serIn the beta 3 release, everything worked fine, but when I tried to replace it with the final version, is where i have problems. I am a little bit of a newbie.I am using Eclipse on the mac, and they way it is set up I have a workspace/flex/frameworks/Basically, I replaced the new framework directory where the old one was(beta 3), and replaced the flex-enterprise-services.xml Hopefully, I can fix this tomorrow, as it is already 3 in the morning in Hawaii, and I need sleep:(Thanks again for all your help,JohnTom Chiverton <[EMAIL PROTECTED]> wrote: On Wednesday 28 June 2006 13:17, John wrote:> macFonts.seIt's in /frameworks/macFonts.serhere.Are you sure the download wasn't damaged ?b73f557badd77aad1ac1452f3ca57ae3 flex_sdk_2.zip-- Tom ChivertonThis 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.CONFIDENTIALITYThis 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.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards Yahoo! Groups Sponsor ~--> See what's inside the new Yahoo! Groups email.http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM~-> --Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 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/ How low will we go? Check out Yahoo! Messengers low PC-to-Phone call rates. __._,_.___ -- 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 Release problems, Please Help
hi, I just install the new flex SDK, but I can't compile, I get this error: Error: unable to open '/Users/johnbarrett/John/frameworks/macFonts.ser' The file does exsist, any ideas how to fix this I am using eclipse on the mac with a build.xml file. Thanks, John __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.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] Can Flex record audio locally?
So you can't receive callbacks from .Net when the waves change, etc? Maybe even have Flex use NetStream to connect with .Net to play the live stream back. I don't know. I haven't used Rebus so I'm not sure. Either way, I don't think there is an option available at this present time using Flex locally with no streaming server. On 6/26/06, Jeremy Lu <[EMAIL PROTECTED]> wrote: Yap, I'm playing with Rebus lately and surely it provide sound recording capability (via .NET) but that's really not quite enough, what if I need to show the sound wave in Flex 2 or do some simple sound editing, this is where flex 2 (as a UI front-end) come short of. Btw, letting flash player do some low level mic/sound stream processing doesn't really means it will rule out FMS, they are for very different kind of use cases in my opinion.Jeremy. On 6/26/06, John C. Bland II <[EMAIL PROTECTED]> wrote: I don't recall anything. What they can do is look into Rebus by MDM. It is in beta/testing right now. This is if they are bent on using Flex for the UI. They could do it all with .Net but Flex would most likely provide the front-end and Flash Player the install base they'd like. http://www.mdmforum.com/forum/index.php?showtopic=16153&hl=rebus We built a sound recording app using Flash 8 and Zinc 2.5 so they aren't bound to Rebus if they don't want to be Windows specific.On 6/26/06, Mike Potter < [EMAIL PROTECTED] > wrote: Hi all: Drupal is looking to create a project that will allow users to record audio locally and then upload that audio to the server. Does Flex allow developers to record audio to shared object and store it locally? I think the answer to this is no and that developers need Flash Media Server to record video and audio, but I just want to make sure. Thanks, Mike -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talks http://www.gotoandstop.org - Home of FMUG.az -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Can Flex record audio locally?
I don't recall anything. What they can do is look into Rebus by MDM. It is in beta/testing right now. This is if they are bent on using Flex for the UI. They could do it all with .Net but Flex would most likely provide the front-end and Flash Player the install base they'd like. http://www.mdmforum.com/forum/index.php?showtopic=16153&hl=rebusWe built a sound recording app using Flash 8 and Zinc 2.5 so they aren't bound to Rebus if they don't want to be Windows specific.On 6/26/06, Mike Potter <[EMAIL PROTECTED] > wrote: Hi all: Drupal is looking to create a project that will allow users to record audio locally and then upload that audio to the server. Does Flex allow developers to record audio to shared object and store it locally? I think the answer to this is no and that developers need Flash Media Server to record video and audio, but I just want to make sure. Thanks, Mike -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Breeze, SyncSWF and Flash 9?
This will probably be updated in the next version of Breeze.On 6/24/06, mark_g_wales <[EMAIL PROTECTED]> wrote: This is mostly a question for the Adobe folks who monitor this list but happy to hear from anyone who knows the answer. Is there a timetable of any kind for updating the Sync SWF product to permit the inclusion of Flash 9-based SWFs in Breeze? My understanding is that the current iteration only permits Flash 8 and below. Not being able to embed Flex 2-based SWFs in Breeze seems like it could be a detriment to both products. Thanks, -Mark -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] FP 9 for Intel-based Macs?
lol. I didn't read that blurb. A site visitor sent it and I skimmed the first paragraph. :-) Thx for pointing it out.Yes, I heard the #'s were down. I think MM's products and vision will help Adobe a great deal. We'll see as time goes on. ;-) On 6/22/06, Shannon Hicks <[EMAIL PROTECTED]> wrote: The text you provided says that Flash Player 9 for Intel macs will be released sometime after the release for windows & PPC Mac. So, I'd guess that means, no... not next week, but sometime after that. Considering Adobe isn't launching any Intel versions of their applications till 2007, I'm not feeling terribly confident that it will be soon. Speculation says that Adobe's latest earnings were hurt because a lot of customers are waiting for intel versions of their apps. Shan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John C. Bland IISent: Thursday, June 22, 2006 6:25 PMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] FP 9 for Intel-based Macs? I don't have one but one of our customers wrote and provide the text below. It is regarding FP 8 so my next thought was...what about 9? We're about to Flex (trick) out our site so this is a crucial component to the success of our site. Troubleshooting Macromedia Flash Player for Intel-based Macs This document provides troubleshooting guidelines for users of the Macromedia Flash Player by Adobe and Intel-based Macs. Adobe has provided a preview release of Flash Player 8 for Intel-based Mac users, which is available for download from this TechNote. The preview release of Flash Player 8 runs natively on Intel-based Macs, but it has not been extensively tested and customers may run into compatibility, performance, and other issues. Alternatively, users can view Flash content on Intel-based Macs with Safari in Rosetta mode. Running the Flash Player preview release in Rosetta mode may be noticeably slower than when running on a PowerPC-based Mac. Adobe plans to support the new Intel-based Macs with Flash Player 9, after the initial release of the Windows and PowerPC-based Mac versions. The preview release of Flash Player 8 for Intel-based Macs will then be replaced with a final release version of Flash Player 9 for the platform. For more information about Flash Player and Intel-based Macs, see... FULL Text here: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=2dda3d81----Thanks!-- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az --No virus found in this incoming message.Checked by AVG Free Edition.Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006 -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.2/372 - Release Date: 6/21/2006 -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] FP 9 for Intel-based Macs?
I don't have one but one of our customers wrote and provide the text below. It is regarding FP 8 so my next thought was...what about 9? We're about to Flex (trick) out our site so this is a crucial component to the success of our site. Troubleshooting Macromedia Flash Player for Intel-based Macs This document provides troubleshooting guidelines for users of the Macromedia Flash Player by Adobe and Intel-based Macs. Adobe has provided a preview release of Flash Player 8 for Intel-based Mac users, which is available for download from this TechNote. The preview release of Flash Player 8 runs natively on Intel-based Macs, but it has not been extensively tested and customers may run into compatibility, performance, and other issues. Alternatively, users can view Flash content on Intel-based Macs with Safari in Rosetta mode. Running the Flash Player preview release in Rosetta mode may be noticeably slower than when running on a PowerPC-based Mac. Adobe plans to support the new Intel-based Macs with Flash Player 9, after the initial release of the Windows and PowerPC-based Mac versions. The preview release of Flash Player 8 for Intel-based Macs will then be replaced with a final release version of Flash Player 9 for the platform. For more information about Flash Player and Intel-based Macs, see... FULL Text here: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=2dda3d81 Thanks!-- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talks http://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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/ASO and ZoneAlarm Security Suite (v6.5.714.000).
They're latest version fixes this issue. Just released yesterdayOn 6/21/06, John Grden <[EMAIL PROTECTED]> wrote: If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being updated when you save and having to clear ASO or do a clean build with Flex2. ZoneAlarm Security Suite (v6.5.714.000) apparently causes this issue. You need to downgrade to the last version or un-install until they get a fix together.Hth,PS> I'm going to verbally harass them to tears and general weeping. No need to spam them...nah, go ahead. -- John Grden - Blitz -- John Grden - Blitz __._,_.___ -- 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] Flash/ASO and ZoneAlarm Security Suite (v6.5.714.000).
If you use zone alarm and you did the latest update (like I did), you might notice that you're going through a slight nightmare right now with file modified dates not being updated when you save and having to clear ASO or do a clean build with Flex2. ZoneAlarm Security Suite (v6.5.714.000) apparently causes this issue. You need to downgrade to the last version or un-install until they get a fix together.Hth,PS> I'm going to verbally harass them to tears and general weeping. No need to spam them...nah, go ahead. -- John Grden - Blitz __._,_.___ -- 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] labs downloads site down?
https://www.adobe.com/cfusion/entitlement/index.cfm?e=labsisn't working, anyone else seeing this?-- John Grden - Blitz __._,_.___ -- 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 recover from 'cleaning' project?
never mind. If I make a change in an mxml file (component) and save, it's not built. It *used* to work, but now it's not working and I have to clean everytime to get it to rebuild the app. I did the workaround with creating a new project and copying the files, but same issue exists. On 6/19/06, John Grden <[EMAIL PROTECTED]> wrote: This worked for me just fine ;) Thanks for the help,JGOn 6/15/06, Michael Schmalle < [EMAIL PROTECTED] > wrote: Hi, This is what I do, Rename your project, oldProj or something. Create a new project with the same name as your old one. If I were you with this still in beta, rebuild your project if not to complicated. In the new project, you then have new swf's and .html files. You also could copy the files back into the old and rename it back. But, when something like that happens to me, I am more than willing to just start from scratch with a new project with the same name. It only takes me about 1-2 minutes to rename, move and delete stuff and it's back up and running. If anybody knows a better way, I am all ears. Peace, MikeOn 6/15/06, Phil Marston < [EMAIL PROTECTED]> wrote: Hi all, Making a mess here! For some reason Flex Builder didn't seem to be incorporating changes I'd made to source files, so I figured there was some sort of caching issue (I don't really know how Eclipse works) so I figured if I clear out all the compiled stuff and get FB to build from scratch that'd do it ... big mistake it's now refusing to build apparently because the html file to display the swf in is missing - my projects bin directory is empty! What do I have to do? :'( -- __ 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 -- What goes up, does come down. -- John Grden - Blitz -- John Grden - Blitz __._,_.___ -- 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 recover from 'cleaning' project?
This worked for me just fine ;) Thanks for the help,JGOn 6/15/06, Michael Schmalle <[EMAIL PROTECTED] > wrote: Hi, This is what I do, Rename your project, oldProj or something. Create a new project with the same name as your old one. If I were you with this still in beta, rebuild your project if not to complicated. In the new project, you then have new swf's and .html files. You also could copy the files back into the old and rename it back. But, when something like that happens to me, I am more than willing to just start from scratch with a new project with the same name. It only takes me about 1-2 minutes to rename, move and delete stuff and it's back up and running. If anybody knows a better way, I am all ears. Peace, MikeOn 6/15/06, Phil Marston < [EMAIL PROTECTED]> wrote: Hi all, Making a mess here! For some reason Flex Builder didn't seem to be incorporating changes I'd made to source files, so I figured there was some sort of caching issue (I don't really know how Eclipse works) so I figured if I clear out all the compiled stuff and get FB to build from scratch that'd do it ... big mistake it's now refusing to build apparently because the html file to display the swf in is missing - my projects bin directory is empty! What do I have to do? :'( -- __ 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 -- What goes up, does come down. -- John Grden - Blitz __._,_.___ -- 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] Using HTTPService in a function
When you're interacting with the webservice, are you retrieving the SWF from the same domain as the web service? The Flex Documentation states : Macromedia Flash Player operates within a security sandbox that limits what Flex applications and other Flash applications can access over HTTP. Flash applications are only allowed HTTP access to resources on the same domain and by the same protocol from which they were served. Having developed a few Applets I'd say this could be one of the problems if the player seems to be spinning its wheels and not getting anywhere. I built one of the web service examples and found the player didn't tell me I couldn't contact the service in Firefox, in IE there was a security exception and ironically, in Netscape 8.0 I could contact the service and it worked ok. This is what I'd check first. Secondly, you might check this out : If you are not using Flex Data Services, you can access web services in the same domain as your Flex application or a crossdomain.xml (cross-domain policy) file that allows access from your application's domain must be installed on the web server hosting the RPC service. For more information about crossdomain.xml files, see Applying Flex Security in Building and Deploying Flex Applications. Both of these came from the Flex 2.0 Developer's Guide > Flex Data Features > Using RPC Components section of the Developer's guide. NZEYIMANA Emery Fabrice wrote: Hello Group, I am new here and seeking help from you. I have created a function in my Flex application and would like to use the HTTPService object from retreiving XML data from my webservice (based on PHP). All the examples I have seen on the Adobe website use same approach (that I don't like) of binding the object to some controls. What I trying to achieve is: Create an HTTP object, instruct that object to retreive a web XML string, store that string locally in a variable. Using the code I have provided below, the application gives an error saying that the object is not yet created (null). And if I watch the task bar after the error message (in Firefox), I see that the flash application is accessing the webXML. What might be wrong? private function SampleFunction():void { var http:HTTPService; var myXML:String; http = new HTTPService(); http.url = ""http://www.domain.com/my_xml.php">http://www.domain.com/my_xml.php"; http.method="POST"; http.useProxy = false; http.showBusyCursor = true; http.resultFormat = "text"; http.send(); myXML = http.lastResult.toString(); // Do something with XML } __._,_.___ -- 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] Flash Player 9 Projected Adoption rate
Evan Gifford wrote: > What's curious to me is that flash player 8 was > not markedly faster due to new "in-context upgrade" (which I have had > some trouble with). > http://www.flickr.com/photos/mannu/148867953/ It may be hard to see on that graph, but I do know that the Flash Player 8 adoption rate exceeded that of v7 and prior... new records were definitely set on this round, both before and after the auto-update kicked in. (When I look closely at that chart it seems to be showing beta adoption as well... Flash Player 8 was released to the general public in the last few days of August 2005... I think that chart is a rough estimate, given that we've only seen two NPD audit periods so far, and that December 2006 has not quite arrived yet. ;-) > Does anyone have a way to project the Flash player 9 adoption rate > with the new "in context" upgrade? > Also, I've called adobe last week and after some probing, got an > updated "couple week" Flex 2.0 time estimate! can I trust this? It's hard for me to predict the future. I see no reason to expect that the trends would reverse. The increasing acceptance of web video over the psat three months seems like it would offer even more update spurs. But then again, in March NPD found that above 70% of consumers tested already had the 8.0 Player, which will suffice for most video sites for awhile. If you're trying to make a case to a client, I might suggest saying it will be darn fast... that historical graph bears this out. Beyond that, looking carefully at the client's particular audience may help... if users do not have installation privileges on the machines they use, for instance, then the general consumer adoption rate may not matter so much as the IT staffing for a particular audience. (That "Flex 2.0 Really Soon Now" estimate matches the guidance I've seen on this list, as well as elsewhere... I don't know the date, but we're close.) jd -- John Dowdell . Adobe Developer Support . San Francisco CA USA Weblog: http://weblogs.macromedia.com/jd Aggregator: http://weblogs.macromedia.com/mxna Technotes: http://www.macromedia.com/support/ Spam killed my private email -- public record is best, thanks. Yahoo! Groups Sponsor ~--> You can search right from your browser? It's easy and it's free. See how. http://us.click.yahoo.com/_7bhrC/NGxNAA/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: Uh oh Ajax...
Well, I'd say it is good for Flex but only due to the scare factor. If JS starts getting hit with more and more viruses Ajax will become a liability more than anything. This is one of the reasons some network admins shut off JS. On 6/14/06, sourcecoderia <[EMAIL PROTECTED]> wrote: And yet another, this seems to be a good? Thing for Flex? But very bad for ajax. QUOTE. "Just wait. Ajax is just asking for it." http://www.informationweek.com/software/showArticle.jhtml? articleID=188703194 Sure glad swf is compiled. (but still not un breakable) jason --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 14 June 2006 12:21, John C. Bland II wrote: > > AJAX IS _javascript_ > ^ and XML > > :--) > > -- > Tom Chiverton > -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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] Uh oh Ajax...
lol. I hear you but X can be nixed, for most ajax implementations at least. You know what I mean though.On 6/14/06, Tom Chiverton < [EMAIL PROTECTED]> wrote:On Wednesday 14 June 2006 12:21, John C. Bland II wrote: > AJAX IS _javascript_^ and XML:--)--Tom ChivertonThis 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. CONFIDENTIALITYThis 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.We are pleased to announce that Halliwells LLP has been voted AIM Lawyer of the Year at the 2005 Growth Company Awards Yahoo! Groups Sponsor ~-->Home is just a click away. Make Yahoo! your home page now. http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/nhFolB/TM~->--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/ -- John C. Bland II"I do what I can do when I can do it." - Chris Tucker, Money Talkshttp://www.gotoandstop.org - Home of FMUG.az __._,_.___ -- 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. __,_._,___