RE: [Flashcoders] connecting excel spread sheet to Flash

2006-11-23 Thread Nick Weekes
Nik,

1) No, you can't store images in Excel cells.  You can store the path to an
image though, which could reference an Images folder somewhere on your CD.

2) If the Excel files are saved as .xls then you will need to use something
like zinc or swfstudio, as mentioned by Derek.  If your excel file is saved
as .xml though, you can access it directly from Flash without the wrapper
(if there is any vba code in your excel file this gets ignored when you save
to xml though).   Same applies for the printing, if you need to keep
formatting in the Excel file then you have to use a wrapper and keep it in
its native .xls format.  

If it were up to me, I would ditch the Excel part altogether (or follow
Shang's suggestion of exporting the excel data to xml from within the
workbook using vba).   You can then keep the xls files in-house, and put the
resulting xml onto the CD.

You need to make a clear distinction between data and UI, and the Excel bit
seems to be clouding the issue.  Store the data as xml, report and print
from swf.

Hope this helps,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik crosina
Sent: 23 November 2006 00:19
To: Flashcoders mailing list
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash

HI Nick,

I havcen't fully spec'ed the app yet, but as it is a re-work of an existing
rather cumbersome thing, we are thinking of having a 'zinc'ed' swf, that
accesses various excel files for information as and when this is needed for
display in the app (the data will consist of prices, model numbers, are
images possible here? I know Excel too little to know if you can store
images in teh cells as well theses days ... must look it up).

I am planning to use the same excel files to be printed out as a brochure
sheets of the products. In other words if the user clicks on a print button,
the swf sends the respective .xls to the printer.

In teh past we had 2 documents for each product: one for display on screen
(powerpoint), and the same - with slightly differnet design - as a PDF that
could be printed.

Pretty ambitous rject I am beginning to realise!

Thaks,

Nik

On 11/22/06, Nick Weekes [EMAIL PROTECTED] wrote:
  Just out of interest, whats the architecture of your Excel/Flash app?  
 Is it Excel for data and Flash for reporting?  Do you need the Excel 
 file to be an Excel file (i.e. xls) or can it be 'dumb' xml (i.e. an 
 xml file with Excel attributes)?  Are all the files stored in the same 
 folder (i.e. xls + swf)?

 Is your app code stored in the swf or swf + xls?

 Easier to point you in the right direction if you answer some of these 
 questions!

 Cheers,

 Nick

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Merrill, Jason
 Sent: 22 November 2006 16:26
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

 OK for CD then.  So For the XML idea Nick suggested, that's not going 
 to be easy if it's on CD.  It would be to have the user save as XML 
 from Excel (File  Save As  save as XML data) to their local drive, 
 and then use a third party projector like Zinc or mProjector to browse 
 to the file they saved and then load that XML into flash (not sure 
 about what security restrictions you would encounter with a third 
 party and loading XML in the project at that point).  If you also need 
 help loading and getting data from XML, that's another topic altogether.
Hope that helps.

 Jason Merrill
 Bank of America
 Learning  Organizational Effectiveness






 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders- 
 [EMAIL PROTECTED] On Behalf Of nik crosina
 Sent: Wednesday, November 22, 2006 11:18 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] connecting excel spread sheet to Flash
 
 Thanks, Jason,
 
 I should have explained better, this is going to be for a CD based 
 app, so it'll need to work without any server side scripts or use of 
 database.
 
 But what you suggest is certainly something to consider for any 
 future on-line brochures / pricelists - especially since it seem to 
 requrie NO special saving of the spread shets frmo the sales peoples 
 point of view (to explain to them even the most basic of XML will be
futile...
 ;)
 
 Thanks,
 Nik
 
 On 11/22/06, Merrill, Jason [EMAIL PROTECTED] wrote:
  You can also use server-side apps to convert an uploaded Excel doc
 to
  XML and then do whatever with it - run SQL statements, other 
  server
 side
  scripts, or back into Flash - no manual save as XML required, but 
  it does require some savy backend stuff and/or third party components.
 
  Jason Merrill
  Bank of America
  Learning  Organizational Effectiveness
 
 
 
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
 [mailto:flashcoders-
  [EMAIL PROTECTED] On Behalf Of Nick Weekes
  Sent: Wednesday, November 22, 2006 11:09 AM
  To: 'Flashcoders mailing list'
  Subject: RE: [Flashcoders

Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-23 Thread nik crosina

Thanks Byron,

funnily enough after having a first look at your site, it looks like
this would satisfy another need of my boss, that of displaying
financial information in a 'dashboard', easy-to-read-and-understand
way. So might get back to you on that one anyways. The free trial is
fully functional?

KR,

Nik

On 11/23/06, Byron Binkley [EMAIL PROTECTED] wrote:

Hey Nik - I work with Proto, and depending on what you're constraints
are for delivering the app (there's a free download and install of the
Proto viewer, but users would need that), it could work well for you.
http://www.protosw.com/products/features/flash

It's not exactly designed as a flash delivery mechanism, but could work
that way. Proto does have really good integration with other stuff like
Excel, databases, csvs, and has a built in Db. We use flash to extend
Proto's user interface and there's a pretty sophisticated proto-flash
execution and data bridge, so you can use SWF files in Proto apps. Proto
isn't exactly designed to be the business logic for Flash apps, but you
could certainly use it that way.
Anyway - hth. If you have questions that are more appropriate off-list,
feel free to use the forum at protosw.com too.
Cheers,
Byron

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik
crosina
Sent: Wednesday, November 22, 2006 7:19 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash

HI Nick,

I havcen't fully spec'ed the app yet, but as it is a re-work of an
existing rather cumbersome thing, we are thinking of having a
'zinc'ed' swf, that accesses various excel files for information as
and when this is needed for display in the app (the data will consist
of prices, model numbers, are images possible here? I know Excel too
little to know if you can store images in teh cells as well theses
days ... must look it up).

I am planning to use the same excel files to be printed out as a
brochure sheets of the products. In other words if the user clicks on
a print button, the swf sends the respective .xls to the printer.

In teh past we had 2 documents for each product: one for display on
screen (powerpoint), and the same - with slightly differnet design -
as a PDF that could be printed.

Pretty ambitous rject I am beginning to realise!

Thaks,

Nik

On 11/22/06, Nick Weekes [EMAIL PROTECTED] wrote:
  Just out of interest, whats the architecture of your Excel/Flash app?
Is
 it Excel for data and Flash for reporting?  Do you need the Excel file
to be
 an Excel file (i.e. xls) or can it be 'dumb' xml (i.e. an xml file
with
 Excel attributes)?  Are all the files stored in the same folder (i.e.
xls +
 swf)?

 Is your app code stored in the swf or swf + xls?

 Easier to point you in the right direction if you answer some of these
 questions!

 Cheers,

 Nick

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
 Jason
 Sent: 22 November 2006 16:26
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

 OK for CD then.  So For the XML idea Nick suggested, that's not going
to be
 easy if it's on CD.  It would be to have the user save as XML from
Excel
 (File  Save As  save as XML data) to their local drive, and then use
a
 third party projector like Zinc or mProjector to browse to the file
they
 saved and then load that XML into flash (not sure about what security
 restrictions you would encounter with a third party and loading XML in
the
 project at that point).  If you also need help loading and getting
data from
 XML, that's another topic altogether.  Hope that helps.

 Jason Merrill
 Bank of America
 Learning  Organizational Effectiveness






 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of nik crosina
 Sent: Wednesday, November 22, 2006 11:18 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] connecting excel spread sheet to Flash
 
 Thanks, Jason,
 
 I should have explained better, this is going to be for a CD based
 app, so it'll need to work without any server side scripts or use of
 database.
 
 But what you suggest is certainly something to consider for any
future
 on-line brochures / pricelists - especially since it seem to requrie
 NO special saving of the spread shets frmo the sales peoples point
of
 view (to explain to them even the most basic of XML will be
futile...
 ;)
 
 Thanks,
 Nik
 
 On 11/22/06, Merrill, Jason [EMAIL PROTECTED] wrote:
  You can also use server-side apps to convert an uploaded Excel doc
 to
  XML and then do whatever with it - run SQL statements, other
server
 side
  scripts, or back into Flash - no manual save as XML required, but
it
  does require some savy backend stuff and/or third party
components.
 
  Jason Merrill
  Bank of America
  Learning  Organizational Effectiveness
 
 
 
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
 [mailto:flashcoders

Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-23 Thread nik crosina

Had a look at this, Shang Liang,

and it definitely looks like I am going to get a coder in now to set
up a template with all the necessary code for us. It doesn't seem like
a big job, but we are probably too full up with project at the moment
to spend the time necessary to get us up to speed on this.

How long would it take you guys to set this - based obviously on the
information given so far. Here is a summary:
The final app needs to:-
- load price and description data (possibly images as well) from an
excel spread sheet at run time (e.g. if a detailed view of a product
has been selected in the flash presenter)
- this spread sheet will double up as a printable version of the
information displayed in the Flash app.
- The app is to run from CD-ROM (we usually use Zinc for that)

- ? any more information you would need to establish an estimated cost
and time line ?

Let me know - email me if you want directly to [EMAIL PROTECTED] with
'FLASH PRESENTER' as subject so I don't miss it (as this is may
mailing list account with a HUGE traffic)

Thanks!

Nik C

On 11/23/06, shang liang [EMAIL PROTECTED] wrote:

I have just done something like that. I used excel save as xml method.
One thing you need to notice is that, this line
?mso-application progid=Excel.Sheet?
gives some problem.

use this code to solve it,
http://www.daniweb.com/techtalkforums/thread37915.html

Hope this helps.

On 11/22/06, nik crosina [EMAIL PROTECTED] wrote:
 Hi guys,

 For a flexible sales presenter we need to connect a spread sheet
 (excel) to Flash and selectively display the content of various cells
 of it.

 The spreadsheets themselves will be designed to be printable versions
 of the corresponding screens in Flash.

 Is this possible, or are we barking up the wrong ttree so to speak?

 Thanks for your help!!

 --
 Nik C
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



--
/*
 bored
*/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-23 Thread nik crosina

Thanks Nick,


From a usability point of view I can go as far as getting our

marketing people to save the excel files once in its native xls format
and once in xml format, that is no problem. Anyting more complex than
that can't be used (like editing the xml).

This is because I am setting this up as a template from which our
sales and marketing peolpe can prepare reasonably customised
presentations to customers with the rigfht prices and descriptions for
on-screen presentation and in immediately printable format.

In any way, in another reply to this thread I have put out a littel
'tender' (subject to approval by my management' that we outsource the
coding of this functionality to set up a template.

Thanks for your help

Nik C


On 11/23/06, Nick Weekes [EMAIL PROTECTED] wrote:

Nik,

1) No, you can't store images in Excel cells.  You can store the path to an
image though, which could reference an Images folder somewhere on your CD.

2) If the Excel files are saved as .xls then you will need to use something
like zinc or swfstudio, as mentioned by Derek.  If your excel file is saved
as .xml though, you can access it directly from Flash without the wrapper
(if there is any vba code in your excel file this gets ignored when you save
to xml though).   Same applies for the printing, if you need to keep
formatting in the Excel file then you have to use a wrapper and keep it in
its native .xls format.

If it were up to me, I would ditch the Excel part altogether (or follow
Shang's suggestion of exporting the excel data to xml from within the
workbook using vba).   You can then keep the xls files in-house, and put the
resulting xml onto the CD.

You need to make a clear distinction between data and UI, and the Excel bit
seems to be clouding the issue.  Store the data as xml, report and print
from swf.

Hope this helps,

Nick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik crosina
Sent: 23 November 2006 00:19
To: Flashcoders mailing list
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash

HI Nick,

I havcen't fully spec'ed the app yet, but as it is a re-work of an existing
rather cumbersome thing, we are thinking of having a 'zinc'ed' swf, that
accesses various excel files for information as and when this is needed for
display in the app (the data will consist of prices, model numbers, are
images possible here? I know Excel too little to know if you can store
images in teh cells as well theses days ... must look it up).

I am planning to use the same excel files to be printed out as a brochure
sheets of the products. In other words if the user clicks on a print button,
the swf sends the respective .xls to the printer.

In teh past we had 2 documents for each product: one for display on screen
(powerpoint), and the same - with slightly differnet design - as a PDF that
could be printed.

Pretty ambitous rject I am beginning to realise!

Thaks,

Nik

On 11/22/06, Nick Weekes [EMAIL PROTECTED] wrote:
  Just out of interest, whats the architecture of your Excel/Flash app?
 Is it Excel for data and Flash for reporting?  Do you need the Excel
 file to be an Excel file (i.e. xls) or can it be 'dumb' xml (i.e. an
 xml file with Excel attributes)?  Are all the files stored in the same
 folder (i.e. xls + swf)?

 Is your app code stored in the swf or swf + xls?

 Easier to point you in the right direction if you answer some of these
 questions!

 Cheers,

 Nick

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Merrill, Jason
 Sent: 22 November 2006 16:26
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

 OK for CD then.  So For the XML idea Nick suggested, that's not going
 to be easy if it's on CD.  It would be to have the user save as XML
 from Excel (File  Save As  save as XML data) to their local drive,
 and then use a third party projector like Zinc or mProjector to browse
 to the file they saved and then load that XML into flash (not sure
 about what security restrictions you would encounter with a third
 party and loading XML in the project at that point).  If you also need
 help loading and getting data from XML, that's another topic altogether.
Hope that helps.

 Jason Merrill
 Bank of America
 Learning  Organizational Effectiveness






 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of nik crosina
 Sent: Wednesday, November 22, 2006 11:18 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] connecting excel spread sheet to Flash
 
 Thanks, Jason,
 
 I should have explained better, this is going to be for a CD based
 app, so it'll need to work without any server side scripts or use of
 database.
 
 But what you suggest is certainly something to consider for any
 future on-line brochures / pricelists - especially since it seem to
 requrie NO special saving of the spread shets frmo the sales

RE: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread Nick Weekes
Look into the possibilities of using xml with Excel (by either saving the
file as xml or exporting sheets/ranges as xml).

This can then be used as the data source for Flash. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik crosina
Sent: 22 November 2006 15:56
To: Flashcoders mailing list
Subject: [Flashcoders] connecting excel spread sheet to Flash

Hi guys,

For a flexible sales presenter we need to connect a spread sheet
(excel) to Flash and selectively display the content of various cells of it.

The spreadsheets themselves will be designed to be printable versions of the
corresponding screens in Flash.

Is this possible, or are we barking up the wrong ttree so to speak?

Thanks for your help!!

--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread Merrill, Jason
You can also use server-side apps to convert an uploaded Excel doc to
XML and then do whatever with it - run SQL statements, other server side
scripts, or back into Flash - no manual save as XML required, but it
does require some savy backend stuff and/or third party components.

Jason Merrill
Bank of America 
Learning  Organizational Effectiveness
 
 
 
 
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Nick Weekes
Sent: Wednesday, November 22, 2006 11:09 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

Look into the possibilities of using xml with Excel (by either saving
the
file as xml or exporting sheets/ranges as xml).

This can then be used as the data source for Flash.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik
crosina
Sent: 22 November 2006 15:56
To: Flashcoders mailing list
Subject: [Flashcoders] connecting excel spread sheet to Flash

Hi guys,

For a flexible sales presenter we need to connect a spread sheet
(excel) to Flash and selectively display the content of various cells
of it.

The spreadsheets themselves will be designed to be printable versions
of the
corresponding screens in Flash.

Is this possible, or are we barking up the wrong ttree so to speak?

Thanks for your help!!

--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread nik crosina

thanks Nick,

You wouldn't know a good starting point to get into that side of
Flash, aswe haven't done this often so far. Any resource or step by
step guide that you think is particularly good?

Thanks,

Nik

On 11/22/06, Nick Weekes [EMAIL PROTECTED] wrote:

Look into the possibilities of using xml with Excel (by either saving the
file as xml or exporting sheets/ranges as xml).

This can then be used as the data source for Flash.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik crosina
Sent: 22 November 2006 15:56
To: Flashcoders mailing list
Subject: [Flashcoders] connecting excel spread sheet to Flash

Hi guys,

For a flexible sales presenter we need to connect a spread sheet
(excel) to Flash and selectively display the content of various cells of it.

The spreadsheets themselves will be designed to be printable versions of the
corresponding screens in Flash.

Is this possible, or are we barking up the wrong ttree so to speak?

Thanks for your help!!

--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread nik crosina

Thanks, Jason,

I should have explained better, this is going to be for a CD based
app, so it'll need to work without any server side scripts or use of
database.

But what you suggest is certainly something to consider for any future
on-line brochures / pricelists - especially since it seem to requrie
NO special saving of the spread shets frmo the sales peoples point of
view (to explain to them even the most basic of XML will be futile...
;)

Thanks,
Nik

On 11/22/06, Merrill, Jason [EMAIL PROTECTED] wrote:

You can also use server-side apps to convert an uploaded Excel doc to
XML and then do whatever with it - run SQL statements, other server side
scripts, or back into Flash - no manual save as XML required, but it
does require some savy backend stuff and/or third party components.

Jason Merrill
Bank of America
Learning  Organizational Effectiveness





-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of Nick Weekes
Sent: Wednesday, November 22, 2006 11:09 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

Look into the possibilities of using xml with Excel (by either saving
the
file as xml or exporting sheets/ranges as xml).

This can then be used as the data source for Flash.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik
crosina
Sent: 22 November 2006 15:56
To: Flashcoders mailing list
Subject: [Flashcoders] connecting excel spread sheet to Flash

Hi guys,

For a flexible sales presenter we need to connect a spread sheet
(excel) to Flash and selectively display the content of various cells
of it.

The spreadsheets themselves will be designed to be printable versions
of the
corresponding screens in Flash.

Is this possible, or are we barking up the wrong ttree so to speak?

Thanks for your help!!

--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread Merrill, Jason
OK for CD then.  So For the XML idea Nick suggested, that's not going to
be easy if it's on CD.  It would be to have the user save as XML from
Excel (File  Save As  save as XML data) to their local drive, and then
use a third party projector like Zinc or mProjector to browse to the
file they saved and then load that XML into flash (not sure about what
security restrictions you would encounter with a third party and loading
XML in the project at that point).  If you also need help loading and
getting data from XML, that's another topic altogether.  Hope that
helps.

Jason Merrill
Bank of America 
Learning  Organizational Effectiveness
 
 
 
 
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:flashcoders-
[EMAIL PROTECTED] On Behalf Of nik crosina
Sent: Wednesday, November 22, 2006 11:18 AM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash

Thanks, Jason,

I should have explained better, this is going to be for a CD based
app, so it'll need to work without any server side scripts or use of
database.

But what you suggest is certainly something to consider for any future
on-line brochures / pricelists - especially since it seem to requrie
NO special saving of the spread shets frmo the sales peoples point of
view (to explain to them even the most basic of XML will be futile...
;)

Thanks,
Nik

On 11/22/06, Merrill, Jason [EMAIL PROTECTED] wrote:
 You can also use server-side apps to convert an uploaded Excel doc
to
 XML and then do whatever with it - run SQL statements, other server
side
 scripts, or back into Flash - no manual save as XML required, but it
 does require some savy backend stuff and/or third party components.

 Jason Merrill
 Bank of America
 Learning  Organizational Effectiveness





 -Original Message-
 From: [EMAIL PROTECTED]
[mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of Nick Weekes
 Sent: Wednesday, November 22, 2006 11:09 AM
 To: 'Flashcoders mailing list'
 Subject: RE: [Flashcoders] connecting excel spread sheet to Flash
 
 Look into the possibilities of using xml with Excel (by either
saving
 the
 file as xml or exporting sheets/ranges as xml).
 
 This can then be used as the data source for Flash.
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
nik
 crosina
 Sent: 22 November 2006 15:56
 To: Flashcoders mailing list
 Subject: [Flashcoders] connecting excel spread sheet to Flash
 
 Hi guys,
 
 For a flexible sales presenter we need to connect a spread sheet
 (excel) to Flash and selectively display the content of various
cells
 of it.
 
 The spreadsheets themselves will be designed to be printable
versions
 of the
 corresponding screens in Flash.
 
 Is this possible, or are we barking up the wrong ttree so to
speak?
 
 Thanks for your help!!
 
 --
 Nik C
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com



--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread Derek Vadneau
Take a look at some of the 3rd party swf2exe tools.

For instance, with SWF Studio you can use Flash and JScript to manipulate 
an Excel spreadsheet - not just read it. With JScript you have control 
over the Excel COM object. You could also use SWF Studio's ADO plugin to 
read the spreadsheet as if it was a database.


Derek Vadneau
Northcode Inc.
http://www.northcode.com

- Original Message - 
From: nik crosina [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, November 22, 2006 11:17 AM
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash


Thanks, Jason,

I should have explained better, this is going to be for a CD based
app, so it'll need to work without any server side scripts or use of
database.

But what you suggest is certainly something to consider for any future
on-line brochures / pricelists - especially since it seem to requrie
NO special saving of the spread shets frmo the sales peoples point of
view (to explain to them even the most basic of XML will be futile...
;)

Thanks,
Nik


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread shang liang

I have just done something like that. I used excel save as xml method.
One thing you need to notice is that, this line
?mso-application progid=Excel.Sheet?
gives some problem.

use this code to solve it,
http://www.daniweb.com/techtalkforums/thread37915.html

Hope this helps.

On 11/22/06, nik crosina [EMAIL PROTECTED] wrote:

Hi guys,

For a flexible sales presenter we need to connect a spread sheet
(excel) to Flash and selectively display the content of various cells
of it.

The spreadsheets themselves will be designed to be printable versions
of the corresponding screens in Flash.

Is this possible, or are we barking up the wrong ttree so to speak?

Thanks for your help!!

--
Nik C
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
/*
bored
*/
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] connecting excel spread sheet to Flash

2006-11-22 Thread Byron Binkley
Hey Nik - I work with Proto, and depending on what you're constraints
are for delivering the app (there's a free download and install of the
Proto viewer, but users would need that), it could work well for you.
http://www.protosw.com/products/features/flash

It's not exactly designed as a flash delivery mechanism, but could work
that way. Proto does have really good integration with other stuff like
Excel, databases, csvs, and has a built in Db. We use flash to extend
Proto's user interface and there's a pretty sophisticated proto-flash
execution and data bridge, so you can use SWF files in Proto apps. Proto
isn't exactly designed to be the business logic for Flash apps, but you
could certainly use it that way.
Anyway - hth. If you have questions that are more appropriate off-list,
feel free to use the forum at protosw.com too.
Cheers,
Byron

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nik
crosina
Sent: Wednesday, November 22, 2006 7:19 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] connecting excel spread sheet to Flash

HI Nick,

I havcen't fully spec'ed the app yet, but as it is a re-work of an
existing rather cumbersome thing, we are thinking of having a
'zinc'ed' swf, that accesses various excel files for information as
and when this is needed for display in the app (the data will consist
of prices, model numbers, are images possible here? I know Excel too
little to know if you can store images in teh cells as well theses
days ... must look it up).

I am planning to use the same excel files to be printed out as a
brochure sheets of the products. In other words if the user clicks on
a print button, the swf sends the respective .xls to the printer.

In teh past we had 2 documents for each product: one for display on
screen (powerpoint), and the same - with slightly differnet design -
as a PDF that could be printed.

Pretty ambitous rject I am beginning to realise!

Thaks,

Nik

On 11/22/06, Nick Weekes [EMAIL PROTECTED] wrote:
  Just out of interest, whats the architecture of your Excel/Flash app?
Is
 it Excel for data and Flash for reporting?  Do you need the Excel file
to be
 an Excel file (i.e. xls) or can it be 'dumb' xml (i.e. an xml file
with
 Excel attributes)?  Are all the files stored in the same folder (i.e.
xls +
 swf)?

 Is your app code stored in the swf or swf + xls?

 Easier to point you in the right direction if you answer some of these
 questions!

 Cheers,

 Nick

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
Merrill,
 Jason
 Sent: 22 November 2006 16:26
 To: Flashcoders mailing list
 Subject: RE: [Flashcoders] connecting excel spread sheet to Flash

 OK for CD then.  So For the XML idea Nick suggested, that's not going
to be
 easy if it's on CD.  It would be to have the user save as XML from
Excel
 (File  Save As  save as XML data) to their local drive, and then use
a
 third party projector like Zinc or mProjector to browse to the file
they
 saved and then load that XML into flash (not sure about what security
 restrictions you would encounter with a third party and loading XML in
the
 project at that point).  If you also need help loading and getting
data from
 XML, that's another topic altogether.  Hope that helps.

 Jason Merrill
 Bank of America
 Learning  Organizational Effectiveness






 -Original Message-
 From: [EMAIL PROTECTED] [mailto:flashcoders-
 [EMAIL PROTECTED] On Behalf Of nik crosina
 Sent: Wednesday, November 22, 2006 11:18 AM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] connecting excel spread sheet to Flash
 
 Thanks, Jason,
 
 I should have explained better, this is going to be for a CD based
 app, so it'll need to work without any server side scripts or use of
 database.
 
 But what you suggest is certainly something to consider for any
future
 on-line brochures / pricelists - especially since it seem to requrie
 NO special saving of the spread shets frmo the sales peoples point
of
 view (to explain to them even the most basic of XML will be
futile...
 ;)
 
 Thanks,
 Nik
 
 On 11/22/06, Merrill, Jason [EMAIL PROTECTED] wrote:
  You can also use server-side apps to convert an uploaded Excel doc
 to
  XML and then do whatever with it - run SQL statements, other
server
 side
  scripts, or back into Flash - no manual save as XML required, but
it
  does require some savy backend stuff and/or third party
components.
 
  Jason Merrill
  Bank of America
  Learning  Organizational Effectiveness
 
 
 
 
 
  -Original Message-
  From: [EMAIL PROTECTED]
 [mailto:flashcoders-
  [EMAIL PROTECTED] On Behalf Of Nick Weekes
  Sent: Wednesday, November 22, 2006 11:09 AM
  To: 'Flashcoders mailing list'
  Subject: RE: [Flashcoders] connecting excel spread sheet to
Flash
  
  Look into the possibilities of using xml with Excel (by either
 saving
  the
  file as xml or exporting sheets/ranges as xml).
  
  This can then be used as the data source