Open GoogleCodeExporter opened 8 years ago
hi did you ever find a way to use the as3xls in flash cs4? im needing this for
a project
Original comment by brookfr...@gmail.com
on 24 Feb 2011 at 3:47
i have same issue in flash cs5 with air and ac3
this is the error :-
Error: Could not find resource bundle collections
at mx.resources::ResourceBundle$/getResourceBundle()[E:\dev\flex_201_borneo\sdk\frameworks\mx\resources\ResourceBundle.as:125]
at mx.collections::ListCollectionView$cinit()
at global$init()[E:\dev\flex_201_borneo\sdk\frameworks\mx\collections\ListCollectionView.as:73]
at global$init()[E:\dev\flex_201_borneo\sdk\frameworks\mx\collections\ArrayCollection.as:59]
at com.as3xls.xls::ExcelFile()[/Users/manuelwudka-robles/Documents/Flex Builder 3/as3xls/com/as3xls/xls/ExcelFile.as:33]
at excel_air_fla::MainTimeline/onFileLoaded()[excel_air_fla.MainTimeline::frame1:22]
this is the code
//*************************/
import com.as3xls.xls.ExcelFile;
import com.as3xls.xls.Sheet;
import flash.utils.ByteArray;
var f:File;
var xls:ExcelFile;
f = new File();
f = File.desktopDirectory.resolvePath('xls/qs.xls');
f.addEventListener(Event.COMPLETE, onFileLoaded);
f.load();
function onFileLoaded(event:Event):void
{
trace("File loaded from Desktop");
xls = new ExcelFile();
//xls= new com.as3xls.xls.ExcelFile();
xls.loadFromByteArray(f.data);
var sheet:Sheet = xls.sheets[0];
//(A BUNCH OF CODE)
}
//*************************/
Original comment by adham202...@gmail.com
on 1 Jul 2012 at 11:13
any help ?
Original comment by adham202...@gmail.com
on 1 Jul 2012 at 11:14
Original issue reported on code.google.com by
zeljko.b...@gmail.com
on 7 Jul 2010 at 8:39