How to generate mxml(flex code) from excel file. how to Create flex code from xls file.

link|improve this question

33% accept rate
Any code from any file? – Constantiner Jul 29 '11 at 12:02
4  
Normally you wouldn't want to do this. Excel is a horrible IDE for writing Flex code. – www.Flextras.com Jul 29 '11 at 12:07
I want to read excel file and generate mxml file as the fields specified in excel (tabbar,text box or button fields),i mean tosay the layout should come from excel file(eg. like code generator for flex using excel) – Sun Jul 29 '11 at 13:19
How can i get this? – Sun Jul 29 '11 at 13:19
There are about 4 specific questions here: reading from Excel to Flex (if your doing it at runtime)... before I continue, are you actually ever going to do this? – Brian Bishop Jul 29 '11 at 16:32
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

One approach is to use Excel to create the data that you want instead of the application you want. Use excel to generate a .csv or the xml that represents your data in away that Flex can easily consume it.

If you want to use excel to actually be some sort of code generator, I wouldn't say it's impossible but the effort behind it would not be of any monetary benefit. You have to write up a custom mapper (that does not exist) that will generate .mxml markup document.

link|improve this answer
How to Consume xml data in flex?how can we do that? – Sun Jul 29 '11 at 19:03
do you know how to create a custom mapper for flex? – Sun Jul 30 '11 at 9:55
How to consume XML data in Flex? Stack overflow will help you - stackoverflow.com/questions/2941842/… – Mark Lapasa Aug 2 '11 at 13:53
A custom mapper would involve taking the output of Excel (.xls, .csv, .xml, etc) and creating a mapping against entities that exist in MXML. But then you would also have to deal with if open tags will be properly closed. Going through this approach is a bad idea because there is probably some other approach that would achieve your desired goal for way less effort. – Mark Lapasa Aug 2 '11 at 13:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.