aoiu / as3xls

Automatically exported from code.google.com/p/as3xls
0 stars 0 forks source link

Could not find resource bundle collections #32

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
[code]
import com.as3xls.xls.Sheet;
var sheet:Sheet = new Sheet();
[/code]

Error: Could not find resource bundle collections
    at mx.resources::ResourceBundle$/getResourceBundle()
    at mx.collections::ListCollectionView$cinit()
    at global$init()
    at global$init()
    at com.as3xls.xls::Sheet()
    at example_fla::MainTimeline/frame1()

Using flash CS4 

No coment!

Original issue reported on code.google.com by zeljko.b...@gmail.com on 7 Jul 2010 at 8:39

GoogleCodeExporter commented 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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
any help ? 

Original comment by adham202...@gmail.com on 1 Jul 2012 at 11:14