Actionscript 3 :: Read A Local Excel 97-2003 File (.xls) In A Flash Application?

Feb 14, 2012

I'm exploring the feasibility of reading data from a local Excel file in a Flash application.

XLSX READER [URL], it's possible to read Excel 2007 files.

It works beautifully.

However, that function doesn't read Excel 97-2003 files.

I found this:

[URL]

Which should read Excel files in Flex, but I'm working on a Flash application, and it looks like as3xls relies on a number of Flex only functions and types (ArrayCollection, NumberFormatter, etc.)

Since I'm not familiar with Flex, I'm having a difficult time making the adjustments myself.

Has anyone built a Flash app that reads Excel 97-2003 files, and is willing to share tips or code?

View 1 Replies


Similar Posts:


Actionscript :: Open And Read An Excel File From A Flex Application

Apr 9, 2012

What is the best way to open and parse and excell file from a Flex Application built using Adobe Flash Builder 4.5. I have done tons of research, most lead me to external libraries, I could deal with that if that is the best approach, but prefer a built in method.

View 3 Replies

ActionScript 3.0 :: Flash To Read / Write Data On Excel - GoogleDocs File?

Dec 30, 2010

Is it possible to use flash to read and write data on an excel/google documents file?

View 1 Replies

ActionScript 3.0 :: Word/Excel 2003 Files With MXML?

May 27, 2009

How can I manipulate (create, update, delete) MS Word Excel 2003 Files with Action Script and/or MXML?Or is there no direct way, do you know about some library, component or extension that would allow me to do that using Action Script and/or MXML ?

View 3 Replies

ActionScript 3.0 :: AIR To Read Excel File In DataGrid?

Jan 3, 2010

I have to load and read the content of a Excel sheet into a datagrid. I am using AIR to load the FileStream, but when I display that stream, it gives me some junk character.

View 3 Replies

Flex - How To Read Data Stored In MS Excel File

Mar 19, 2012

i'm trying to perform simple automated test on my Adobe Air Application. I decide to store some test data in external MS Excel file to decrease hardcode quantity. But I discovered, that this is not a trivial task, when you're working with Adobe Air.

Actually, i need to correct initialize an excelApp object, the rest part of logger is already implemented. I tried the following approach, but I can't find a package with ActiveXObject class defined.

excelApp = new ActiveXObject("Excel.Application");

View 1 Replies

Can Flash Read And Write Local File System

Nov 28, 2009

I think it can only access the network but not local file system, but from internet some people said it can in the newest version, can anybody confirm? It can reach arbitrarily file or just a specific location?

View 2 Replies

Read A Local Text File Using Flash Or Javascript?

Feb 23, 2010

Is there any hook to react to a user drag and dropping a text file onto a browser? If the user drops a text file onto the browser with my page loaded, I'd like to be able to open the contents of the text file using javascript. I don't think this is possible, but just checking.

Is something like this possible in flash?

As an alternate, the user could specify a file path for me, then I could open the text file and read it. Seems like this is a security risk and probably won't be allowed, but just checking. It looks like this is possible with flash 10?

View 5 Replies

Json :: Flex - Flash Builder Will Not Read Local File?

Jan 11, 2012

So I've tried to build a small utility to view the contents of a JSON file in an easy-to-understand manner (for non-tech people).I have Googled far and wide, high and low, but every example that shows how to consume a JSON file in Flash Builder uses the HTTP service, pointing to a file on the web.Here I am, sitting in front of my MacBook, wondering why I can't make this work. In the documentation I've found (sort of relating to this issue), they always show Windows examples, and they seem to work fine:That doesn't work. I've tried some "resolve to path" syntax, but the HTTP service does not seem to allow for anything but file paths in quotes.

View 1 Replies

Flash :: Getting Data Into Excel On Local Computer?

Jun 25, 2006

I have pretty good basic "action script" skills for developing flash files and movies, but I don't know how to do dynamic things with asp, aspx, etc. I have a local application that runs form my computer and is not connected to the internet. The application keeps track of button clicks on each buttton as separate variables. Here is my question ... each time the flash movie runs and buttons are clicked, I want to record the clicks on each button (which exist in the application at runtime) and save them to something like an excel spreadsheeet or access database. Any easy way to do this without getting into server-side stuff?

View 3 Replies

ActionScript 3.0 :: Read Excel Sheet Values From Flash Cs3/cs4?

Jun 14, 2010

I have a small doubt in flash cs3/cs4. can some one tell me, is ther any way to read EXCEL values from flash cs3/flash cs4. I want to read values from excel and to display from flash side.

View 3 Replies

ActionScript 3.0 :: Read Excel Documents Like A Xml Document With Flash?

Apr 29, 2010

I wonder if it is possible to read Excel documents like a xml document with Flash.

View 3 Replies

ActionScript 2.0 :: Read An XML File From Flash Application

Sep 6, 2011

I need to be able to read an XML file from my flash application. I found this tutorial:
republicofcode.com/tutorials/flash/xml/ But it doesn't seem to work even on their own examples. I can trace whole XML file, but when it comes to childNodes whatever I try to trace I always get "undefined". My XML is like a quiz DB with 25 <question>'s and 4 <answer>'s in each. So I need to operate with XML data as with an array.

View 6 Replies

Actionscript 3 :: User To Press An Excel Button And Get Prompted To Download An Excel File?

Dec 13, 2011

I want a user to press an excel button and get prompted to download an excel file. I normally do it like this:

var dest:String = excelEndpoint;
var request:URLRequest = new URLRequest();
request.url = dest;
fr.download( request,'Locates.xls' );
fr.addEventListener(HTTPStatusEvent.HTTP_STATUS, handleStatus);
fr.addEventListener(IOErrorEvent.IO_ERROR, handleErr);

[Code]...

View 2 Replies

Flash :: Perform File Read Write Operation In Flex Web Application?

May 2, 2011

How to perform file read write operation on server in flex web application?

View 2 Replies

Actionscript 3 :: Read Only Part Of Local File?

Nov 22, 2010

How read only part of local file? So that not to load the whole file into memory.

View 1 Replies

Flash :: Develop An Excel-like Application In It?

Jun 30, 2009

I'm looking to develop an application that allows you to set up an online spreadsheet or to be able to draw a custom table format. Can someone point me in the right direction. I've been googling for a week now and can't find any direction.

View 1 Replies

ActionScript 3.0 :: Read Local File System With Flex SWF?

Oct 23, 2009

you can access Local File System in Flex and that too with a standard SWF without resorting to Adobe Air.Check out the link below for full details and the SWf

View 0 Replies

ActionScript 3.0 :: Read Xml File From Local Disc In Flex?

May 31, 2010

I want to read data from an xml file (say located in c: drive of my computer)I am programming in flex 4.0. Normally when I take data from a Url I use http service. I do not want to use AIR.

View 0 Replies

Xml :: Read The Version From Application Descriptor File?

Aug 12, 2010

So I have a basic application descriptor file for my AIR app. It looks something like this, shortened for sanity:

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/2.0">
<version>1.0.10</version>

[code].....

View 1 Replies

Media Server :: Application Read From External Xml File Not In It

Aug 22, 2010

I have below code

[Code]....

I need this application read from exteral xml file not in it.

View 28 Replies

Adobe - Access Local File System From Flex Web Application?

Jan 5, 2011

I'm trying to access local file system from Flex web application. I know it is pretty difficult, but I think there must be a way. Is there a way that Flex app can use AIR components or maybe web application can call some AIR module in order to choose files and upload?

View 2 Replies

Flex :: Load A Local File Without Having To Ask The User To Browse To It First In An AIR Application?

Jul 22, 2011

I'm writing a small application for myself and instead of using a database I'd like to just use Excel to store the small amount of data I have on my local file system. I want to be able to load that data without having to use the typical FileReference browse() method as it would just be annoying to do every time I use the application.

The code below seems to find the file fine as the file.exists method below and most of the other attributes seem to be correct but the file.data is always null.I'm guessing this is a security issue and that's why I'm running into this problem but I thought I'd ask and see if there is in fact a way around this problem.

var file:File = new File(fullPath + "\" + currentFolder + ".txt");
if(file.exists) {
var byteArray:ByteArray = file.data;
}

View 2 Replies

Flex :: Fix Choppy Video Playback Of Local Flv File In Adobe Air Application?

Aug 17, 2011

I have made a application that plays videos that are stored in a assets folder of the air application but when ever I run it on an hp slate the videos are really choppy. Is there a way to preload the video or does it have to do with the processing power? the videos are 1.72mb or smaller. They are flv format and they auto play when that application is started. I am using flash builder.

View 1 Replies

Flex :: Excel - Standalone Application With No Database?

Jun 24, 2010

I am trying to develop an application which can be used locally by my team mates. its a sort of issue tracking application with report generation. am planning to do it on flex. in my company environment, i do have a lots of restrictions like, can't install AIR, no database, etc.

so am planning to develop on flex app, and put it in a shared drive. now the main problem is how can i store data. i have an idea like using excel files as database. I want opinion about this option, as well as, if anyone has tried reading and writing excel files from Flex application I want the suggestions also.

View 2 Replies

Flex :: PlayBook - Create A File Browser To Allow Users To Load Images From The Local System Into The Application

Mar 24, 2011

I'm developing an application for the Blackberry Playbook using Flash Burrito 4.5 and Flex. I'd like to create a file browser to allow users to load images from the local system into the application. I followed this example [URL] When I click on the Load Image button in the simulator however, the file browser pops up but tells me that "no file was found with the specified filter", even though I don't specify any filter or even if I specify a . filter.

View 2 Replies

IDE :: Take An Excel Spreadsheet With Its Equations And Place It Into A Flash File

Jan 12, 2009

Wondering if anyone can tell me whether it is possible to take an excel spreadsheet with its equations and all and place it into a Flash file so that it can work within the flash presentation.

Or would the only way to do this be to code the whole thing into flash from the start?

View 6 Replies

Flash :: Force Excel File To Download In Action Script?

Oct 4, 2011

I have make a post request to some url. Normally when this url is called from some html form, it opens a dialogue box to download excel file. But when I call this url from flash component, nothing happens. I have to force this excel file to be downloaded.

View 1 Replies

Linux :: Intercept A Request To Read A Particular File And Instead Generate The Apparent Output Of That File Read Programatically

Mar 31, 2010

A friend of mine has a Flash Action script running on a LAMP server that currently reads an xml config file. He's asked me if it's possible to remove the xml file, and replace it somehow with a system (lets call it an 'auto xml generator') that intercepts the request to read that file and generates an output, so it appears to all intents and purposes as if the file still exists and contains the contents that has actually been returned from our auto xml generator'

View 3 Replies

Flex :: Executing A Local File From An Intranet Flex Application

Apr 12, 2010

I am creating a Flex application for intranet use.I need the application to execute files, with different file types (txt, emails, etc.) at specific known locations on the clients computer.Is it possible to give permissions to the Flex application to execute local files? (I have administrative rights on the clients computer)

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved