Hi, I'm a beginner to RIA development. I'm trying to develop a music player using flex. Currently I load a list of songs in a datagrid. When the user clicks an item, the media contoller and player plays the song. I would like the player to automatically go to the next song in the grid after the song is completed. Can anyone advise on how to approach this.
Thanks Venkat >From: [email protected] >Reply-To: [email protected] >To: [email protected] >Subject: [flexcoders] Digest Number 877 >Date: 6 Jun 2005 11:24:21 -0000 > >There are 23 messages in this issue. > >Topics in this digest: > > 1. RE: Re: file handling > From: "Abdul Qabiz" <[EMAIL PROTECTED]> > 2. NetConnecton Debugger Debugging > From: dave buhler <[EMAIL PROTECTED]> > 3. RE: XML Encoding > From: "Abdul Qabiz" <[EMAIL PROTECTED]> > 4. RE: Accessiblity and Section 508 Complience with Flex? > From: "Abdul Qabiz" <[EMAIL PROTECTED]> > 5. RE: XML Encoding > From: "Matt Chotin" <[EMAIL PROTECTED]> > 6. RE: [flex coders] tree datagrid - needs a text renderer too .. >pls help > From: "Abdul Qabiz" <[EMAIL PROTECTED]> > 7. RE: XML Encoding > From: "Abdul Qabiz" <[EMAIL PROTECTED]> > 8. Flex's Layout manager for Flash? > From: Aldo Bucchi <[EMAIL PROTECTED]> > 9. Flex best with which server side technology ? (CFM/Java/ASPX?) > From: "Tolulope Olonade" <[EMAIL PROTECTED]> > 10. Re: Flex best with which server side technology ? >(CFM/Java/ASPX?) > From: "r0main" <[EMAIL PROTECTED]> > 11. RE: Re: file handling > From: "Drew Falkman" <[EMAIL PROTECTED]> > 12. Flex Builder is dead, viva Flex builder ! > From: "r0main" <[EMAIL PROTECTED]> > 13. RE: Flex Builder is dead, viva Flex builder ! > From: "Jeroen De Vos" <[EMAIL PROTECTED]> > 14. Re: Flex Builder is dead, viva Flex builder ! > From: "r0main" <[EMAIL PROTECTED]> > 15. Drag & Drop > From: "tony_lic" <[EMAIL PROTECTED]> > 16. RE: Re: file handling > From: "Ian Welsh" <[EMAIL PROTECTED]> > 17. RE: Flex best with which server side technology ? >(CFM/Java/ASPX?) > From: "David Mendels" <[EMAIL PROTECTED]> > 18. RE: Drag & Drop > From: "David Mendels" <[EMAIL PROTECTED]> > 19. Flex futures...(was RE: Re: file handling) > From: "David Mendels" <[EMAIL PROTECTED]> > 20. RE: Flex's Layout manager for Flash? > From: "David Mendels" <[EMAIL PROTECTED]> > 21. Custimizing Tooltip > From: "rockmoyosa" <[EMAIL PROTECTED]> > 22. RE: Flex best with which server side technology ? >(CFM/Java/ASPX?) > From: "Tolulope Olonade" <[EMAIL PROTECTED]> > 23. RE: Flex futures... > From: "Rick Bullotta" <[EMAIL PROTECTED]> > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 1 > Date: Sun, 5 Jun 2005 21:21:51 -0700 > From: "Abdul Qabiz" <[EMAIL PROTECTED]> >Subject: RE: Re: file handling > >Hi, > >I guess, that is possible by setting some HTTP headers from a >server-side script. I guess, Content-Disposition header. > >http://www.faqs.org/rfcs/rfc2183 > > >Content-Type -> "audio/x-mpeg" >Content-Disposition -> "attachment" > > > > >In PHP, I will do like this: > ><?php > //getsong.php > header('Content-type: audio/x-mpeg'); > header('Content-Disposition: attachment; filename="song.mp3"'); > > readfile('song1.mp3'); >?> > > >You will request the mp3 through the server-side script, it means you >will not use direct url of mp3 in flex, instead send a query to a >server-side script... > > >Does it make sense? > > > >-abdul > >-----Original Message----- >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of drew_falk >Sent: Monday, June 06, 2005 5:23 AM >To: [email protected] >Subject: [flexcoders] Re: file handling > >Sorry for delay on this replay...set the project aside for a bit. > >I was actually referring to DOWNLOADING. Currently, if you load an >MP3, you can play it, but I want to actually prompt the user to save >the file on their local drive... > >Thanks, > >Drew > >--- In [email protected], "Tracy Spratt" <[EMAIL PROTECTED]> >wrote: > > Found it. It is under this subject: > > "Great Abdul (c++/flex) source c++ <--> flex " > > Posted around 4/14 > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Tracy Spratt > > Sent: Thursday, May 26, 2005 4:27 PM > > To: [email protected] > > Subject: RE: [flexcoders] file handling > > > > Short answer: No. > > > > Long answer: Client file system access is limited by the security > > sandbox, both at the browser and Flash Player level. > > > > You can achieve file upload capability using a custom HTML wrapper > > containing custom javascript. Here's one link, google will find >more. > > http://www.flexauthority.com/articlesArchive/fileUpload.cfm. > > > > You can achieve local file access using a C# program with >javascript and > > Flex. Davis, I think, posted a solution, but I haven't found it >yet. > > > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Drew Falkman > > Sent: Thursday, May 26, 2005 3:05 PM > > To: [email protected] > > Subject: [flexcoders] file handling > > > > Is there any moderately simple way to do file handling on the >client > > (e.g. > > to prompt for a user to save a file, such as an mp3)? > > > > TIA. > > > > Drew Falkman > > Veraison, LLC > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > >Yahoo! Groups Links > > > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 2 > Date: Mon, 6 Jun 2005 00:23:53 -0400 > From: dave buhler <[EMAIL PROTECTED]> >Subject: NetConnecton Debugger Debugging > >My Flex Netconnection debugger has died. > >It only makes one request and handles one result. All subsequent requests >don't show. > >I tried: > > 1. Uninstalling NDB / reinstalling NDB > 2. Deleting all SOLs > 3. Ported my code back to a 1 day old version (that was working) > >None of the above makes a difference. NDB only shows my login call and the >result. Then, it stops working entirely. > >Suggestions? >Dave > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 3 > Date: Sun, 5 Jun 2005 21:24:52 -0700 > From: "Abdul Qabiz" <[EMAIL PROTECTED]> >Subject: RE: XML Encoding > >Not sure, if there is one.... > >But you can make modification in XML itself and send the xml structure >back...I mean, set the resultFormt=xml in HTTPService, you will get XML >object instead of AS Object, you can change the nodes and send back the >XMLObject... > > >Or you can get the XML object, create a clone of it, convert it to AS >Object to populate the UI..If some data is changed, make the relevant >changes to orignal XML Object also... > >-abdul > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Drew Falkman >Sent: Monday, June 06, 2005 5:15 AM >To: [email protected] >Subject: [flexcoders] XML Encoding > > > >Hello- > > > >If I request XML using HTTPService, then make modifications to it and >then want to send it back to a Java class, how would I re-encapsulate >the resulting AS Object into XML again? Is there a simple method to do >this? > > > >Thanks, > > > >Drew Falkman > > >________________________________ > >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] ><mailto:[EMAIL PROTECTED]> > >* Your use of Yahoo! Groups is subject to the Yahoo! Terms of >Service <http://docs.yahoo.com/info/terms/> . > > >---- >This email may contain confidential and privileged material for the sole >use of the intended recipient(s). Any review, use, distribution or >disclosure by others is strictly prohibited. If you are not the intended >recipient (or authorized to receive for the recipient), please contact >the sender by reply email and delete all copies of this message. > >To reply to our email administrator directly, send an email to >[EMAIL PROTECTED] > >Littler Mendelson, P.C. >http://www.littler.com > > > > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 4 > Date: Sun, 5 Jun 2005 21:29:24 -0700 > From: "Abdul Qabiz" <[EMAIL PROTECTED]> >Subject: RE: Accessiblity and Section 508 Complience with Flex? > >Hi, > >Most of the Flex components support accessibility to some level. You can >check the flex docs, macromedia website and Bob's blog.... > >Flex Docs: >http://livedocs.macromedia.com/flex/15/flex_docs_en/00000669.htm > >Accessibility docs on Macromedia site: >http://www.macromedia.com/macromedia/accessibility/features/flex/overvie >w.html > >Accessibility in Flex components: >http://www.macromedia.com/macromedia/accessibility/features/flex/compone >nts.html > >Bob Regan's blog: http://www.markme.com/accessibility/ (check the >archives, blog is full of information) > > >Hope that helps... > >-abdul > > > >-----Original Message----- >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Ryan Guill >Sent: Monday, June 06, 2005 3:02 AM >To: [email protected] >Subject: Re: [flexcoders] Accessiblity and Section 508 Complience with >Flex? > >Thats great news Bob. Do you have any specific examples of accessible >flash that I could look at and show some of my clients that are >interested? Thanks for the help! > >On 6/5/05, dave buhler <[EMAIL PROTECTED]> wrote: > > http://www.macromedia.com/macromedia/accessibility/features/flash/ > > > > > > > > > > Flex uses the Flash player and inherents all of the accessibility >features > > of Flash. To make authoring accessible apps in Flex even easier, we >spent a > > lot of time enabling the accessibility layer of the components that >ship > > with Flex. Thus Flex apps will voice and expose the functionality > > encapsulated in the components with little effort. > > > > Posted by Bob Regan > > > > > > On 6/5/05, rynoguill9 <[EMAIL PROTECTED]> wrote: > > > > > > Hey guys, first time poster here. I have an advanced coldfusion > > > background and we are evaluating flex for use in a large project we > > > have coming up for an educational system. One of our biggest > > > considerations when developing this app will be Accessibility and > > > Section 508 complience. I am new to accessibility concerns so I am > > > not even really sure what I am asking for, but is this possible >using > > > flash/flex swfs? Are there things that we can do to ensure >usability > > > for blind, visually and mobility impared, and other disabled >persons? > > > > > > Thanks for any help, and if anyone has any examples I could look at >or > > > any resources at all they will be greatly appreciated! > > > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > > > > ________________________________ > > 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 the Yahoo! Terms of Service. > > >-- >Ryan Guill >BlueEyesDevelopment >[EMAIL PROTECTED] >www.ryanguill.com >(270) 217.2399 >Want gmail? Get it here while its hot. > >www.ryanguill.com/blog/ > > > >Yahoo! Groups Links > > > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 5 > Date: Sun, 5 Jun 2005 21:33:15 -0700 > From: "Matt Chotin" <[EMAIL PROTECTED]> >Subject: RE: XML Encoding > >If you set your content type to be application/xml the request object >will be re-serialized into XML and sent back across the wire. You'd >need to have a servlet that can handle a POST of that format though. > > > >Matt > > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Abdul Qabiz >Sent: Sunday, June 05, 2005 9:25 PM >To: [email protected] >Subject: RE: [flexcoders] XML Encoding > > > >Not sure, if there is one.... > > > >But you can make modification in XML itself and send the xml structure >back...I mean, set the resultFormt=xml in HTTPService, you will get XML >object instead of AS Object, you can change the nodes and send back the >XMLObject... > > > > > >Or you can get the XML object, create a clone of it, convert it to AS >Object to populate the UI..If some data is changed, make the relevant >changes to orignal XML Object also... > > > >-abdul > > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Drew Falkman >Sent: Monday, June 06, 2005 5:15 AM >To: [email protected] >Subject: [flexcoders] XML Encoding > >Hello- > > > >If I request XML using HTTPService, then make modifications to it and >then want to send it back to a Java class, how would I re-encapsulate >the resulting AS Object into XML again? Is there a simple method to do >this? > > > >Thanks, > > > >Drew Falkman > >---- >This email may contain confidential and privileged material for the sole >use of the intended recipient(s). Any review, use, distribution or >disclosure by others is strictly prohibited. If you are not the intended >recipient (or authorized to receive for the recipient), please contact >the sender by reply email and delete all copies of this message. > >To reply to our email administrator directly, send an email to >[EMAIL PROTECTED] > >Littler Mendelson, P.C. >http://www.littler.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] ><mailto:[EMAIL PROTECTED]> > >* Your use of Yahoo! Groups is subject to the Yahoo! Terms of >Service <http://docs.yahoo.com/info/terms/> . > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 6 > Date: Sun, 5 Jun 2005 21:34:29 -0700 > From: "Abdul Qabiz" <[EMAIL PROTECTED]> >Subject: RE: [flex coders] tree datagrid - needs a text renderer too .. >pls help > >Hi, > >Can you post the simple code for right hand side cell renderer? If it is >properly coded, it should allow you data entry.... > >-abdul > >-----Original Message----- >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of send2martin >Sent: Saturday, June 04, 2005 8:03 PM >To: [email protected] >Subject: [flexcoders] [flex coders] tree datagrid - needs a text >renderer too .. pls help > >hi > i am on a project and it needs a data grid that has a "tree at the >left hand column - i implemented using a cell renderer for that >column " > > now i need a right hand side column to be populated using another >cell rederer for that column that is a textinput field .. i need to >make someof them as labels and some as text Input fileds .... i made >it but is flickering too much and is not allowing me to enter data in >those text fileds > > > + node | |[text input filed ] | > - node | |[label ] | > > > > this is a sample of that i need .. both those columns i am using two >different cell renderers .... but the right hand column is not >allowing user input and flickers too much > > > pls .. help > > Thanks in advance > > > > > > > >Yahoo! Groups Links > > > > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 7 > Date: Sun, 5 Jun 2005 21:36:40 -0700 > From: "Abdul Qabiz" <[EMAIL PROTECTED]> >Subject: RE: XML Encoding > >Great, I was not aware of that. This shows, how Flex makes developer >life easy... > >Thanks Matt for correcting me... > >-abdul > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Matt Chotin >Sent: Monday, June 06, 2005 10:03 AM >To: [email protected] >Subject: RE: [flexcoders] XML Encoding > > > >If you set your content type to be application/xml the request object >will be re-serialized into XML and sent back across the wire. You'd >need to have a servlet that can handle a POST of that format though. > > > >Matt > > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Abdul Qabiz >Sent: Sunday, June 05, 2005 9:25 PM >To: [email protected] >Subject: RE: [flexcoders] XML Encoding > > > >Not sure, if there is one.... > > > >But you can make modification in XML itself and send the xml structure >back...I mean, set the resultFormt=xml in HTTPService, you will get XML >object instead of AS Object, you can change the nodes and send back the >XMLObject... > > > > > >Or you can get the XML object, create a clone of it, convert it to AS >Object to populate the UI..If some data is changed, make the relevant >changes to orignal XML Object also... > > > >-abdul > > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Drew Falkman >Sent: Monday, June 06, 2005 5:15 AM >To: [email protected] >Subject: [flexcoders] XML Encoding > >Hello- > > > >If I request XML using HTTPService, then make modifications to it and >then want to send it back to a Java class, how would I re-encapsulate >the resulting AS Object into XML again? Is there a simple method to do >this? > > > >Thanks, > > > >Drew Falkman > >---- >This email may contain confidential and privileged material for the sole >use of the intended recipient(s). Any review, use, distribution or >disclosure by others is strictly prohibited. If you are not the intended >recipient (or authorized to receive for the recipient), please contact >the sender by reply email and delete all copies of this message. > >To reply to our email administrator directly, send an email to >[EMAIL PROTECTED] > >Littler Mendelson, P.C. >http://www.littler.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] ><mailto:[EMAIL PROTECTED]> > >* Your use of Yahoo! Groups is subject to the Yahoo! Terms of >Service <http://docs.yahoo.com/info/terms/> . > > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 8 > Date: Mon, 6 Jun 2005 02:20:43 -0400 > From: Aldo Bucchi <[EMAIL PROTECTED]> >Subject: Flex's Layout manager for Flash? > >After some Flex projects I'm back to Flash. >I miss many features, mainly the layout manager... > >Can Flex classes be used programmatically form within Flash? >I have been looking at the sources for both, but besides the obvious >differences, there are several extensions to the foundation classes >(UIObject for instance) which trouble me a bit. > >anyway, I noticed the folder FlexforFlash\Flex Classes\... >What is this? > >Regards, >ABC >-- >::::: Aldo Bucchi ::::: >mobile (56) 8 429 8300 > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 9 > Date: Mon, 6 Jun 2005 08:10:15 +0100 > From: "Tolulope Olonade" <[EMAIL PROTECTED]> >Subject: Flex best with which server side technology ? (CFM/Java/ASPX?) > >Can anyone please hit the bull's eye for me on which server side >platform Flex is best with? >I know there no support for .NET for now. >But what of ColdFusion and Java as most of our applications here tie >into Databases a lot. > > >Thanks. > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 10 > Date: Mon, 06 Jun 2005 07:49:10 -0000 > From: "r0main" <[EMAIL PROTECTED]> >Subject: Re: Flex best with which server side technology ? (CFM/Java/ASPX?) > >If you start from scratch a Flex project, and none of your developers >are Coldfusion experts, start in Java/J2EE ! >Else you'll have to train people on a dying language/plateform... > >That's my opinion only (I'm now gonna be flamed by all CF experts ;-) >). r0main > > >--- In [email protected], "Tolulope Olonade" <[EMAIL PROTECTED]> >wrote: > > Can anyone please hit the bull's eye for me on which server side > > platform Flex is best with? > > I know there no support for .NET for now. > > But what of ColdFusion and Java as most of our applications here tie > > into Databases a lot. > > > > > > Thanks. > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 11 > Date: Sun, 5 Jun 2005 21:44:06 -0700 > From: "Drew Falkman" <[EMAIL PROTECTED]> >Subject: RE: Re: file handling > >Makes perfect sense. Thanks. > > > > _____ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Abdul Qabiz >Sent: Sunday, June 05, 2005 9:22 PM >To: [email protected] >Subject: RE: [flexcoders] Re: file handling > > > >Hi, > >I guess, that is possible by setting some HTTP headers from a >server-side script. I guess, Content-Disposition header. > >http://www.faqs.org/rfcs/rfc2183 > > >Content-Type -> "audio/x-mpeg" >Content-Disposition -> "attachment" > > > > >In PHP, I will do like this: > ><?php > //getsong.php > header('Content-type: audio/x-mpeg'); > header('Content-Disposition: attachment; filename="song.mp3"'); > > readfile('song1.mp3'); >?> > > >You will request the mp3 through the server-side script, it means you >will not use direct url of mp3 in flex, instead send a query to a >server-side script... > > >Does it make sense? > > > >-abdul > >-----Original Message----- >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of drew_falk >Sent: Monday, June 06, 2005 5:23 AM >To: [email protected] >Subject: [flexcoders] Re: file handling > >Sorry for delay on this replay...set the project aside for a bit. > >I was actually referring to DOWNLOADING. Currently, if you load an >MP3, you can play it, but I want to actually prompt the user to save >the file on their local drive... > >Thanks, > >Drew > >--- In [email protected], "Tracy Spratt" <[EMAIL PROTECTED]> >wrote: > > Found it. It is under this subject: > > "Great Abdul (c++/flex) source c++ <--> flex " > > Posted around 4/14 > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Tracy Spratt > > Sent: Thursday, May 26, 2005 4:27 PM > > To: [email protected] > > Subject: RE: [flexcoders] file handling > > > > Short answer: No. > > > > Long answer: Client file system access is limited by the security > > sandbox, both at the browser and Flash Player level. > > > > You can achieve file upload capability using a custom HTML wrapper > > containing custom javascript. Here's one link, google will find >more. > > http://www.flexauthority.com/articlesArchive/fileUpload.cfm. > > > > You can achieve local file access using a C# program with >javascript and > > Flex. Davis, I think, posted a solution, but I haven't found it >yet. > > > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Drew Falkman > > Sent: Thursday, May 26, 2005 3:05 PM > > To: [email protected] > > Subject: [flexcoders] file handling > > > > Is there any moderately simple way to do file handling on the >client > > (e.g. > > to prompt for a user to save a file, such as an mp3)? > > > > TIA. > > > > Drew Falkman > > Veraison, LLC > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > >Yahoo! Groups Links > > > > > > > > > > _____ > >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] ><mailto:[EMAIL PROTECTED]> > >* Your use of Yahoo! Groups is subject to the Yahoo! ><http://docs.yahoo.com/info/terms/> Terms of Service. > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 12 > Date: Mon, 06 Jun 2005 07:55:30 -0000 > From: "r0main" <[EMAIL PROTECTED]> >Subject: Flex Builder is dead, viva Flex builder ! > >Hi, today is a great day ! >just read publically available informations about Zorn, the next Flex >Builder IDE being based on Eclipse... Sounds very good ! >Yet I'm already coding 100% of my Flex code (As2 + MXML) under eclipse >with free plugins (FAME, FAMES, FLAMES or any of the crappy words).. >But Eclipse being the official dev tool + pro-level quality editors >will greatly boost Flex visibility in the Java/J2EE world, + will >greatly improve code quality, fasten coding and allow a better >entreprise-level integration... > >Cheers, r0main > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 13 > Date: Mon, 6 Jun 2005 10:00:47 +0200 > From: "Jeroen De Vos" <[EMAIL PROTECTED]> >Subject: RE: Flex Builder is dead, viva Flex builder ! > >R0main, > >Could you send me the link of this article? > >Thanks, >Jeroen. > >-----Oorspronkelijk bericht----- >Van: [email protected] [mailto:[EMAIL PROTECTED] >Namens r0main >Verzonden: maandag 6 juni 2005 9:56 >Aan: [email protected] >Onderwerp: [flexcoders] Flex Builder is dead, viva Flex builder ! > >Hi, today is a great day ! >just read publically available informations about Zorn, the next Flex >Builder IDE being based on Eclipse... Sounds very good ! >Yet I'm already coding 100% of my Flex code (As2 + MXML) under eclipse >with free plugins (FAME, FAMES, FLAMES or any of the crappy words).. >But Eclipse being the official dev tool + pro-level quality editors will >greatly boost Flex visibility in the Java/J2EE world, + will greatly >improve code quality, fasten coding and allow a better entreprise-level >integration... > >Cheers, r0main > > > > > >Yahoo! Groups Links > > > > > > > >___ > >Deze e-mail en alle gekoppelde bestanden zijn officiele documenten van het >Gemeentelijk Havenbedrijf Antwerpen en kunnen vertrouwelijke of >persoonlijke informatie bevatten. Gelieve de afzender onmiddellijk via >e-mail of telefonisch te verwittigen als u deze e-mail per vergissing heeft >ontvangen en verwijder vervolgens de e-mail zonder deze te lezen, te >reproduceren, te verspreiden of te ontsluiten naar derden. Het Gemeentelijk >Havenbedrijf Antwerpen is op geen enkele manier verantwoordelijk voor >fouten of onnauwkeurigheden in de inhoud van deze e-mail. Het Gemeentelijk >Havenbedrijf Antwerpen kan niet aansprakelijk gesteld worden voor directe >of indirecte schade, verlies of ongemak veroorzaakt als gevolg van een >onnauwkeurigheid of fout in deze e-mail. --- English Translation: This >e-mail and all attached files are official documents of Antwerp Port >Authority and may contain confidential or personal information. If you have >received this e-mail in error, you are asked to inform the sender by e-mail >or telephone immediately, and to remove it from your system without reading >or reproducing it or passing it on to other parties. Antwerp Port Authority >is in no way responsible for any errors or inaccuracies in the contents of >this e-mail, nor can it be held liable for any direct or indirect loss, >damage or inconvenience arising from any such errors or inaccuracies. >[GHA#Disclaimer] > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 14 > Date: Mon, 06 Jun 2005 08:19:50 -0000 > From: "r0main" <[EMAIL PROTECTED]> >Subject: Re: Flex Builder is dead, viva Flex builder ! > >Here they are: > >Mike's blog: >http://weblogs.macromedia.com/mesh/archives/2005/06/macromedia_ecli.cfm > >Official news: >http://news.com.com/Macromedia+aligns+with+Eclipse/2100-1032_3-5730781.html?part=rss&tag=5730781&subj=news > >Bloggin' about: >http://www.protozoo.com/index.php?postId=90 >http://soenkerohde.com/2005/06/06/macromedia-joins-eclipse-foundation/ > >PDF links are here: >http://www.rewindlife.com/archives/000229.cfm > >Cheers, r0main > >--- In [email protected], "Jeroen De Vos" <[EMAIL PROTECTED]> >wrote: > > R0main, > > > > Could you send me the link of this article? > > > > Thanks, > > Jeroen. > > > > -----Oorspronkelijk bericht----- > > Van: [email protected] [mailto:[EMAIL PROTECTED] > > Namens r0main > > Verzonden: maandag 6 juni 2005 9:56 > > Aan: [email protected] > > Onderwerp: [flexcoders] Flex Builder is dead, viva Flex builder ! > > > > Hi, today is a great day ! > > just read publically available informations about Zorn, the next Flex > > Builder IDE being based on Eclipse... Sounds very good ! > > Yet I'm already coding 100% of my Flex code (As2 + MXML) under eclipse > > with free plugins (FAME, FAMES, FLAMES or any of the crappy words).. > > But Eclipse being the official dev tool + pro-level quality editors will > > greatly boost Flex visibility in the Java/J2EE world, + will greatly > > improve code quality, fasten coding and allow a better entreprise-level > > integration... > > > > Cheers, r0main > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > ___ > > > > Deze e-mail en alle gekoppelde bestanden zijn officiele documenten >van het Gemeentelijk Havenbedrijf Antwerpen en kunnen vertrouwelijke >of persoonlijke informatie bevatten. Gelieve de afzender onmiddellijk >via e-mail of telefonisch te verwittigen als u deze e-mail per >vergissing heeft ontvangen en verwijder vervolgens de e-mail zonder >deze te lezen, te reproduceren, te verspreiden of te ontsluiten naar >derden. Het Gemeentelijk Havenbedrijf Antwerpen is op geen enkele >manier verantwoordelijk voor fouten of onnauwkeurigheden in de inhoud >van deze e-mail. Het Gemeentelijk Havenbedrijf Antwerpen kan niet >aansprakelijk gesteld worden voor directe of indirecte schade, verlies >of ongemak veroorzaakt als gevolg van een onnauwkeurigheid of fout in >deze e-mail. --- English Translation: This e-mail and all attached >files are official documents of Antwerp Port Authority and may contain >confidential or personal information. If you have received this e-mail >in error, you are asked to inform the sender by e-mail or telephone >immediately, and to remove it from your system without reading or >reproducing it or passing it on to other parties. Antwerp Port >Authority is in no way responsible for any errors or inaccuracies in >the contents of this e-mail, nor can it be held liable for any direct >or indirect loss, damage or inconvenience arising from any such errors >or inaccuracies. [GHA#Disclaimer] > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 15 > Date: Mon, 06 Jun 2005 07:42:38 -0000 > From: "tony_lic" <[EMAIL PROTECTED]> >Subject: Drag & Drop > >Hi All, > I'm a novice developer of Flex. I have a doubt. Is it possible >to do cross application drag & drop in Flex. > i.e., can i drag an image from flex to other application say ms-word. >with regards, >tony > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 16 > Date: Mon, 6 Jun 2005 09:39:32 +0100 > From: "Ian Welsh" <[EMAIL PROTECTED]> >Subject: RE: Re: file handling > >Just for info., the recent news on the Flash Platform here .. > >http://www.macromedia.com/platform/whitepapers/platform_overview.pdf > >mentions file upload and download capabilities within the new Maelstrom >player ... > >"New file upload and download: Maelstrom supports file upload and download >capabilities, which are under full user control. A Flash application can >request that a file be selected for upload by presenting an Open dialog box >to the user to navigate to a file and select it. Applications can also >offer >to download a file by presenting a Save dialog box. This paves the way for >a >whole class of RIAs that can intermediate between local content on a user's >machine and the web such as web-based photo management applications that >enable users to upload their photos easily." > >Regards >Ian > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Drew Falkman >Sent: 06 June 2005 05:44 >To: [email protected] >Subject: RE: [flexcoders] Re: file handling > > > >Makes perfect sense. Thanks. > > > >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of Abdul Qabiz >Sent: Sunday, June 05, 2005 9:22 PM >To: [email protected] >Subject: RE: [flexcoders] Re: file handling > > > >Hi, > >I guess, that is possible by setting some HTTP headers from a >server-side script. I guess, Content-Disposition header. > >http://www.faqs.org/rfcs/rfc2183 > > >Content-Type -> "audio/x-mpeg" >Content-Disposition -> "attachment" > > > > >In PHP, I will do like this: > ><?php > //getsong.php > header('Content-type: audio/x-mpeg'); > header('Content-Disposition: attachment; filename="song.mp3"'); > > readfile('song1.mp3'); >?> > > >You will request the mp3 through the server-side script, it means you >will not use direct url of mp3 in flex, instead send a query to a >server-side script... > > >Does it make sense? > > > >-abdul > >-----Original Message----- >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of drew_falk >Sent: Monday, June 06, 2005 5:23 AM >To: [email protected] >Subject: [flexcoders] Re: file handling > >Sorry for delay on this replay...set the project aside for a bit. > >I was actually referring to DOWNLOADING. Currently, if you load an >MP3, you can play it, but I want to actually prompt the user to save >the file on their local drive... > >Thanks, > >Drew > >--- In [email protected], "Tracy Spratt" <[EMAIL PROTECTED]> >wrote: > > Found it. It is under this subject: > > "Great Abdul (c++/flex) source c++ <--> flex " > > Posted around 4/14 > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Tracy Spratt > > Sent: Thursday, May 26, 2005 4:27 PM > > To: [email protected] > > Subject: RE: [flexcoders] file handling > > > > Short answer: No. > > > > Long answer: Client file system access is limited by the security > > sandbox, both at the browser and Flash Player level. > > > > You can achieve file upload capability using a custom HTML wrapper > > containing custom javascript. Here's one link, google will find >more. > > http://www.flexauthority.com/articlesArchive/fileUpload.cfm. > > > > You can achieve local file access using a C# program with >javascript and > > Flex. Davis, I think, posted a solution, but I haven't found it >yet. > > > > Tracy > > > > -----Original Message----- > > From: [email protected] >[mailto:[EMAIL PROTECTED] On > > Behalf Of Drew Falkman > > Sent: Thursday, May 26, 2005 3:05 PM > > To: [email protected] > > Subject: [flexcoders] file handling > > > > Is there any moderately simple way to do file handling on the >client > > (e.g. > > to prompt for a user to save a file, such as an mp3)? > > > > TIA. > > > > Drew Falkman > > Veraison, LLC > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > >Yahoo! Groups Links > > > > > > > > > > >________________________________ > >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] ><mailto:[EMAIL PROTECTED]> > >* Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service ><http://docs.yahoo.com/info/terms/> . > > > > > >---------------------------------------------------- >This E-mail scanned for viruses by Harlaxton College >---------------------------------------------------- > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 17 > Date: Mon, 6 Jun 2005 05:45:55 -0400 > From: "David Mendels" <[EMAIL PROTECTED]> >Subject: RE: Flex best with which server side technology ? (CFM/Java/ASPX?) > >Hi, > >I think you will find Flex is equally well designed to work with both >CFMX (which itself runs on J2EE) or any of the widely used Java/J2EE >servers. Your choice at that tier should be based on other >considerations. In general, if you are already using CFMX, I'd stay >with it; if you are already using Java/J2EE I'd stay with that. If you >are not familiar with Java/J2EE ColdFusion is a faster learning curve >and a more RAD model for building apps and I would reccomend you check >it out. > >Regards, >David >Macromedia > >________________________________ > > From: [email protected] >[mailto:[EMAIL PROTECTED] On Behalf Of Tolulope Olonade > Sent: Monday, June 06, 2005 3:10 AM > To: [email protected] > Subject: [flexcoders] Flex best with which server side >technology ? (CFM/Java/ASPX?) > > > Can anyone please hit the bull's eye for me on which server side >platform Flex is best with? > I know there no support for .NET for now. > But what of ColdFusion and Java as most of our applications here >tie into Databases a lot. > > > Thanks. > > >________________________________ > > 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] ><mailto:[EMAIL PROTECTED]> > > * Your use of Yahoo! Groups is subject to the Yahoo! Terms >of Service <http://docs.yahoo.com/info/terms/> . > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 18 > Date: Mon, 6 Jun 2005 05:46:46 -0400 > From: "David Mendels" <[EMAIL PROTECTED]> >Subject: RE: Drag & Drop > >Hello, > >This is not possible today. > >Regards, >David >Macromedia > > > -----Original Message----- > > From: [email protected] > > [mailto:[EMAIL PROTECTED] On Behalf Of tony_lic > > Sent: Monday, June 06, 2005 3:43 AM > > To: [email protected] > > Subject: [flexcoders] Drag & Drop > > > > Hi All, > > I'm a novice developer of Flex. I have a doubt. Is it > > possible to do cross application drag & drop in Flex. > > i.e., can i drag an image from flex to other application > > say ms-word. > > with regards, > > tony > > > > > > > > > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 19 > Date: Mon, 6 Jun 2005 05:50:49 -0400 > From: "David Mendels" <[EMAIL PROTECTED]> >Subject: Flex futures...(was RE: Re: file handling) > > Hi, > >Good catch Ian. While today was not a product announcement, we are >talking more about the long term roadmap for both the Flash Player and >Flex. The whitepaper his some high-level information on both. > http://www.macromedia.com/platform/whitepapers/platform_overview.pdf > >Regards, >David > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 20 > Date: Mon, 6 Jun 2005 05:42:47 -0400 > From: "David Mendels" <[EMAIL PROTECTED]> >Subject: RE: Flex's Layout manager for Flash? > >Hello, > > > Can Flex classes be used programmatically form within Flash? > > >No, they can not be. This is not the intent of the license. > >Regards, >David >Macromedia > > > -----Original Message----- > > From: [email protected] > > [mailto:[EMAIL PROTECTED] On Behalf Of Aldo Bucchi > > Sent: Monday, June 06, 2005 2:21 AM > > To: [email protected] > > Subject: [flexcoders] Flex's Layout manager for Flash? > > > > After some Flex projects I'm back to Flash. > > I miss many features, mainly the layout manager... > > > > > > anyway, I noticed the folder FlexforFlash\Flex Classes\... > > What is this? > > > > Regards, > > ABC > > -- > > ::::: Aldo Bucchi ::::: > > mobile (56) 8 429 8300 > > > > > > > > Yahoo! Groups Links > > > > > > > > > > > > > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 21 > Date: Mon, 06 Jun 2005 10:35:16 -0000 > From: "rockmoyosa" <[EMAIL PROTECTED]> >Subject: Custimizing Tooltip > >Is ther A simple way to, for example, change backgroundcolor of a >tooltip of a textinput. > >Both (mouseover) tooltip as validation tooltip? > > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 22 > Date: Mon, 6 Jun 2005 11:55:09 +0100 > From: "Tolulope Olonade" <[EMAIL PROTECTED]> >Subject: RE: Flex best with which server side technology ? (CFM/Java/ASPX?) > >Thanks All, > David what about people like me comfortable with C family of languages >like C/C++ and C#? >I heard the transition from those languages to Java is not much? How >true is that? >There was a time I was trying to set up a Java web development >environment and I had to fiddle with things like JBoss, Apache,Tomcat, >http conf, text files, xml files etc >On the contrary on IIS its just few clicks and you are up and running... >I think Xamlon is trying to preempt Macromedia by throwing weight behind >these families of developers i.e. they love flash but prefer C# on >MS.NET OR Click once Web/App server deployment. >So between CFM and Java help compare ease of use AND Power to achieve >things from a Flex perspective. > >Thanks a lot. >________________________________ > >From: [email protected] [mailto:[EMAIL PROTECTED] On >Behalf Of David Mendels >Sent: Monday, June 06, 2005 10:46 AM >To: [email protected] >Subject: RE: [flexcoders] Flex best with which server side technology ? >(CFM/Java/ASPX?) > >Hi, > >I think you will find Flex is equally well designed to work with both >CFMX (which itself runs on J2EE) or any of the widely used Java/J2EE >servers. Your choice at that tier should be based on other >considerations. In general, if you are already using CFMX, I'd stay >with it; if you are already using Java/J2EE I'd stay with that. If you >are not familiar with Java/J2EE ColdFusion is a faster learning curve >and a more RAD model for building apps and I would reccomend you check >it out. > >Regards, >David >Macromedia > > >________________________________ > > From: [email protected] >[mailto:[EMAIL PROTECTED] On Behalf Of Tolulope Olonade > Sent: Monday, June 06, 2005 3:10 AM > To: [email protected] > Subject: [flexcoders] Flex best with which server side >technology ? (CFM/Java/ASPX?) > Can anyone please hit the bull's eye for me on which server side >platform Flex is best with? > I know there no support for .NET for now. > But what of ColdFusion and Java as most of our applications here >tie into Databases a lot. > > > Thanks. > > >________________________________ > > 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] ><mailto:[EMAIL PROTECTED]> > > * Your use of Yahoo! Groups is subject to the Yahoo! Terms >of Service <http://docs.yahoo.com/info/terms/> . > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > >Message: 23 > Date: Mon, 6 Jun 2005 06:10:46 -0500 > From: "Rick Bullotta" <[EMAIL PROTECTED]> >Subject: RE: Flex futures... > >David: > >One "convergence" question for you (or product marketing): > >Ironically, Flash Player "Lite" has support for SVG-T, but Flash/Flex do >not (only embedding of static SVG on the server-side for Flex). Any plans >to add the SVG-T capabilities to the mainstream Flash Player? I would >certainly encourage it, and I know your new friends at Adobe can help <g>. > >Best regards, > >- Rick Bullotta > CTO > Lighthammer Software > > >________________________________ > >From: [email protected] on behalf of David Mendels >Sent: Mon 6/6/2005 5:50 AM >To: [email protected] >Subject: Flex futures...(was RE: [flexcoders] Re: file handling) > > >Hi, > >Good catch Ian. While today was not a product announcement, we are >talking more about the long term roadmap for both the Flash Player and >Flex. The whitepaper his some high-level information on both. >http://www.macromedia.com/platform/whitepapers/platform_overview.pdf > >Regards, >David > > > > >[This message contained attachments] > > > >________________________________________________________________________ >________________________________________________________________________ > > > >------------------------------------------------------------------------ >Yahoo! Groups Links > > > > >------------------------------------------------------------------------ > > > _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ 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/

