[flexcoders] Apollo installer

2007-11-28 Thread ecmntech
Hello guys. Just want to ask, if there's any site or anybody have a Apollo installer? Since AIR is for Flex 3. I'm using Flex Builder 2.0.1 TNX.

Re: [flexcoders] Apollo installer

2007-11-28 Thread Tom Chiverton
On Wednesday 28 Nov 2007, ecmntech wrote: Hello guys. Just want to ask, if there's any site or anybody have a Apollo installer? labs.adobe.com Since AIR is for Flex 3. Apollo was the code name for AIR. Same thing. I'm using Flex Builder 2.0.1 That's nice. -- Tom Chiverton Helping to

[flexcoders] Apollo RELEASE quality?

2007-05-04 Thread Steve Kellogg
Hello, I'm really excited about Apollo, as I'm sure of most of us. I have a question however. Does anyone have a ballpark date as to when Apollo might be ready for PRODUCTION RELEASE? I have a commercial product that we need to deploy as a desktop application, and I'm just not sure that

RE: [flexcoders] Apollo RELEASE quality?

2007-05-04 Thread Gordon Smith
: [flexcoders] Apollo RELEASE quality? Hello, I'm really excited about Apollo, as I'm sure of most of us. I have a question however. Does anyone have a ballpark date as to when Apollo might be ready for PRODUCTION RELEASE? I have a commercial product that we need to deploy as a desktop application

[flexcoders] Apollo NativeWindow.alwaysInFront, .orderInBackOf(), etc.

2007-04-06 Thread Tom Bray
Is the z-ordering functionality enabled for NativeWindows? Nothing seems to work, so I'm wondering if it's me or Apollo. Thanks, Tom

RE: [flexcoders] Apollo NativeWindow.alwaysInFront, .orderInBackOf(), etc.

2007-04-06 Thread Samuel R. Neff
: [flexcoders] Apollo NativeWindow.alwaysInFront, .orderInBackOf(), etc. Is the z-ordering functionality enabled for NativeWindows? Nothing seems to work, so I'm wondering if it's me or Apollo. Thanks, Tom

Re: [flexcoders] Apollo HTMLControl capabilities

2007-03-25 Thread Ben Marchbanks
Hey Mike - Can we assume that all the controls over PDF that are exemplified in the Adobe Digital Edition will be included in the full release of Apollo ? Only thing I would like to see added to the API is ability to apply animated effects to PDF pages. ( Page flip) Ben Marchbanks :::

Re: [flexcoders] Apollo HTMLControl capabilities

2007-03-24 Thread Mike Chambers
The only plugins that will be supported for 1.0 is Flash and PDF. mike chambers [EMAIL PROTECTED] Mark Doberenz wrote: This is more of a general question regarding capabilities of this class. What kind of things in an HTML file will be displayable using this class? What if an HTML file

Re: [flexcoders] Apollo HTMLControl capabilities

2007-03-24 Thread Andrew Muller
Mark What kind of 3D view do you need, could it be achived by utilising Papervision3D which should be able to run in Apollo: http://blog.papervision3d.org/ Andrew On 24/03/07, Mark Doberenz [EMAIL PROTECTED] wrote: This is more of a general question regarding capabilities of this class.

Re: [flexcoders] Apollo HTMLControl capabilities

2007-03-24 Thread Mark Doberenz
Yeah, I just saw that yesterday. It looks promising, but the whole software renderer isn't going to quite cut it. I work for a software company called Right Hemisphere and we have a free 3D viewer called Deep Viewhttp://www.righthemisphere.com/products/deeppub/DeepPub_View/index.html. This is

[flexcoders] Apollo isn't loading my modules

2007-03-23 Thread Mark Doberenz
Is there something special I need to do to make Apollo load my modules? Flex builder is showing them just fine, but when I run the app, they don't show up in the view. The debugger is showing that the SWF is being loaded, but then after clicking around on the app for a bit, the debugger says

RE: [flexcoders] Apollo - multi-window communication

2007-03-23 Thread Gordon Smith
. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ju Aedis Sent: Thursday, March 22, 2007 10:50 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo - multi-window communication Gordon: if dispatchEvent() in a.mxml

[flexcoders] Apollo HTMLControl capabilities

2007-03-23 Thread Mark Doberenz
This is more of a general question regarding capabilities of this class. What kind of things in an HTML file will be displayable using this class? What if an HTML file has an object definition in it, like for an ActiveX control. Will it display the ActiveX control like Internet Explorer does?

[flexcoders] Apollo - Saving flv files locally from camera

2007-03-23 Thread alexandermaccaw
Is it possible to save flv files locally straight from a user's webcam?

[flexcoders] Apollo TShirt

2007-03-23 Thread scalenine
In case anyone is interested I made some Apollo TShirts based on community input and they are now for sale. They were home made on a screen printer I have and they are made on a per order basis. Check 'em out: http://scalenine.com/blog/2007/03/22/apollo-tshirts-now-available/ This may be the

[flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz
I've been thinking about using Apollo for an extension to an app I've been working on in Flex. The current issue with the Flex app is that it's locked to a web browser and really only runs on one screen. I know you can stretch the web browser across multiple screens, but that's not quite what

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Carlos Rovira
You should read about LocalConnection. It's an old Flash API to communicate between different flash movies 2007/3/22, Mark Doberenz [EMAIL PROTECTED]: I've been thinking about using Apollo for an extension to an app I've been working on in Flex. The current issue with the Flex app is

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz
Oh yeah, I remember playing with those a long time ago... not the nicest stuff to deal with from what I can remember. Thanks On 22 Mar 2007 14:28:43 -0700, Carlos Rovira [EMAIL PROTECTED] wrote: You should read about LocalConnection. It's an old Flash API to communicate between different

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Michael Schmalle
I would go out on a limb and say yes. Not in alpha but, if we are going to be able to addChild() on a newly created window, I don't see why you could communicate with a window that you created from the main app. Peace, Mike On 22 Mar 2007 14:32:13 -0700, Mark Doberenz [EMAIL PROTECTED] wrote:

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mike Chambers
Windows are all in scope, so you dont have to use LocalConnection. Just have one window broadcast an event, and have the other listen for it. mike chambers [EMAIL PROTECTED] Michael Schmalle wrote: I would go out on a limb and say yes. Not in alpha but, if we are going to be able to

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Ju Aedis
how can the broadcast trasfer the info to listener? use event.xxx = xxx? 2007/3/23, Mike Chambers [EMAIL PROTECTED]: Windows are all in scope, so you dont have to use LocalConnection. Just have one window broadcast an event, and have the other listen for it. mike chambers [EMAIL

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Mark Doberenz
Dang, that's a good idea I'll totally have a play with that one tomorrow. Thanks Mike!!! On 3/22/07, Mike Chambers [EMAIL PROTECTED] wrote: Windows are all in scope, so you dont have to use LocalConnection. Just have one window broadcast an event, and have the other listen for it.

RE: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Gordon Smith
, 2007 6:33 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo - multi-window communication how can the broadcast trasfer the info to listener? use event.xxx = xxx? 2007/3/23, Mike Chambers [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] : Windows are all in scope, so you

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Ju Aedis
@yahoogroups.com *Subject:* Re: [flexcoders] Apollo - multi-window communication how can the broadcast trasfer the info to listener? use event.xxx = xxx? 2007/3/23, Mike Chambers [EMAIL PROTECTED]: Windows are all in scope, so you dont have to use LocalConnection. Just have one window broadcast

[flexcoders] Apollo SDK

2007-03-20 Thread learner
Hi All, I have a very basic question about getting started with Apollo. I downloaded Apollo SDK zip and checked out its content. It contains : 1) bin - all exe's to compile from command line 2) Frame work - swc's and action script classes 3) lib - contains jar 4) runtime - dll's 5) samples -

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, learner wrote: I downloaded Apollo SDK zip and checked out its content. It contains : .. Now, I am using flex builder to develop flex application. You don't want the SDK download then, you want the plugin. and how do I install apollo runtime from SDK zip. You can't

Re: [flexcoders] Apollo SDK

2007-03-20 Thread learner
I downloaded the Apollo SDK before downloading the plugin for flexbuilder. Now thinking that it should be possible to work with Apollo SDK and flexbuilder by copying the files from Apollo SDK to flex sdk in corresponding directory and replacing the mxmlc.jar in libs and version (as mentioned in

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Andrew Muller
Mayur You'll save yourself a lot of time and grief if you were to download and install the plugin for Flex Builder, especially if you're already using Flex Builder for development. It's made to work seemlessly... Andrew On 20/03/07, learner [EMAIL PROTECTED] wrote: I downloaded the

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, learner wrote: Now thinking that it should be possible to work with Apollo SDK and flexbuilder by copying the files from Apollo SDK to flex sdk in corresponding directory I installed a separate Flex SDK to the one that comes with Flex builder, and updated that one

Re: [flexcoders] Apollo SDK

2007-03-20 Thread learner
Thanks ! downloading the plugin . Thanks once again for quick Replies. Regards On 20 Mar 2007 03:46:42 -0700, Andrew Muller [EMAIL PROTECTED] wrote: Mayur You'll save yourself a lot of time and grief if you were to download and install the plugin for Flex Builder, especially if you're

[flexcoders] Apollo question here or there (was: Re: using itemRenderer with List, how can I set the icon?)

2007-03-20 Thread Merrill, Jason
Cool, I'm just one small voice in the cosmic fuge as Carl Sagan would say, but I would vote we moderate Apollo questions to head over there then - this list is already quite high volume with novice, intermediate, and advanced Flex/AS3 questions. At the same time, I understand though, Apollo

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-19 Thread Angus Johnson
: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo/ -- -- Andrew Muller http

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-19 Thread Andrew Muller
Schultheiss Sent: Sunday, March 18, 2007 10:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http

[flexcoders] Apollo is here!! Sample Applications and Tutorials

2007-03-19 Thread Rich Tretola
Apollo is finally available for all to see. I have spent a good deal of time creating samples and tutorials to help people get into Apollo. Please use these as they should prove very helpful: http://blog.everythingflex.com/apollo/ http://blog.everythingflex.com/apollo/applications-apollo/

[flexcoders] Apollo Alpha SDK Available to download

2007-03-19 Thread Nicolas Boulet-Lavoie
Here's the e-mail I received from Adobe, 9 minutes ago (I feel like its Christmas again!!) : Adobe(R) +++ Hi, you are receiving this email because you asked to be notified when the product code-named Apollo alpha was

[flexcoders] Apollo Project Wizard Error

2007-03-19 Thread sam5654295
I've updated Flex Builder 2 to 2.0.1. I get this when I try to used the New Apollo Project Wizart: Plug-in com.adobe.flexbuilder.apollo was unable to load class com.adobe.flexbuilder.apollow.ui.wizards.ApolloProjectWizard Does anyone have any idea about what's going on with this? --Sam

[flexcoders] [Apollo] Slow rendering of maps

2007-03-19 Thread Sreejith Unnikrishnan
I was running the Maptacular application and I noticed that the map tiles was loading very slowly than it would on a browser. Also, the images seem to be ghost-imaged in the window, I mean, while you pan there images don't refresh quickly. Is there a downside to trying to loading images with

[flexcoders]Apollo Training Videos by Mike Chambers free at Lynda.com

2007-03-19 Thread dorkie dork from dorktown
Apollo Training videos by Mike Chambers are free on Lynda.comhttp://lynda.com/ http://movielibrary.lynda.com/html/modPage.asp?ID=378 Join Mike Chambers, Adobe's Senior Product Manager for Developer Relations, as he gives an exclusive, hands-on glimpse of the alpha version Apollo: a powerful new

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-19 Thread dorkie dork from dorktown
Subject: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo

[flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-18 Thread Weyert de Boer
Any chance you could send me picture of the Apollo logo? yours, weyert

Re: [flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-18 Thread Mike Chambers
http://weblogs.macromedia.com/mesh/files/apollo/wallpaper/apollo_stickers.pdf mike chambers [EMAIL PROTECTED] Weyert de Boer wrote: Any chance you could send me picture of the Apollo logo? yours,

Re: [flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-18 Thread Brendan Meutzner
On 3/18/07, Weyert de Boer [EMAIL PROTECTED] wrote: Any chance you could send me picture of the Apollo logo? yours, weyert -- Brendan Meutzner Stretch Media - RIA Adobe Flex Development [EMAIL PROTECTED] http://www.stretchmedia.ca apollo.PNG Description: PNG image

[flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread greg h
http://labs.adobe.com/technologies/apollo/

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread Bjorn Schultheiss
oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo/

RE: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread Matt Chotin
@yahoogroups.com Subject: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo/ http://labs.adobe.com/technologies/apollo/

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread Andrew Muller
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread ashwinee kumar dash
PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/ oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo

RE: [flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-17 Thread Gordon Smith
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rich Tretola Sent: Thursday, March 15, 2007 5:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Apollo (Should Adobe Keep the Name) As we all know Apollo is the code name for the upcoming Adobe desktop runtime. Many

[flexcoders] Apollo (Should Adobe Keep the Name)

2007-03-16 Thread Rich Tretola
As we all know Apollo is the code name for the upcoming Adobe desktop runtime. Many developers including myself feel very strongly that the product should keep the name Apollo as its release name. Please answer the single question survey below to let Adobe know how you feel. It will take you

[flexcoders] Apollo and where do we start.

2007-03-07 Thread nboulet
Hi guys :) I've been reading this mailing list since quite a bit and I have a question. Where can I start with Apollo development? And, please, don't send me to the Adobe Labs, there is no place to download the SDK and no tutorials or infos. And yes, I ordered my Apollo Pocket Guide on Amazon

RE: [flexcoders] Apollo and where do we start.

2007-03-07 Thread David Mendels
: Wednesday, March 07, 2007 8:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Apollo and where do we start. Hi guys :) I've been reading this mailing list since quite a bit and I have a question. Where can I start with Apollo development? And, please, don't send me to the Adobe Labs

Re: [flexcoders] Apollo and where do we start.

2007-03-07 Thread hank williams
On 3/7/07, nboulet [EMAIL PROTECTED] wrote: Hi guys :) I've been reading this mailing list since quite a bit and I have a question. Where can I start with Apollo development? Hmm... I guess you missed the part about it not being released yet ;) Sorry for being snarky, I just couldnt resist!

RE: [flexcoders] Apollo and where do we start.

2007-03-07 Thread Steve Cox
There is no public SDK as of yet. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nboulet Sent: 07 March 2007 13:23 To: flexcoders@yahoogroups.com Subject: [flexcoders] Apollo and where do we start. Hi guys :) I've been reading this mailing

[flexcoders] Apollo External API

2007-03-07 Thread bruce1976
Hi, Currently, Flex has an External API that allows a Flex app to call javascript or an ActiveX control within the browser. Will Apollo be bundled with a JVM and use an External API to call Java methods? Thanks, Bruce

Re: [flexcoders] Apollo External API

2007-03-07 Thread Tom Chiverton
On Wednesday 07 Mar 2007, bruce1976 wrote: Will Apollo be bundled with a JVM I'd say that's gonna be a no :-) -- Tom Chiverton Helping to quickly improve impactful systems On: http://thefalken.livejournal.com This email is sent for and

Re: [flexcoders] Apollo External API

2007-03-07 Thread Mike Chambers
No. mike chambers [EMAIL PROTECTED] bruce1976 wrote: Hi, Currently, Flex has an External API that allows a Flex app to call javascript or an ActiveX control within the browser. Will Apollo be bundled with a JVM and use an External API to call Java methods? Thanks, Bruce

RE: [flexcoders] Apollo and where do we start.

2007-03-07 Thread Dimitrios Gianninas
Its not on Adobe Labs yet... but soon :) Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of nboulet Sent: Wed 3/7/2007 8:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Apollo and where do we start. Hi guys :) I've

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Tom Chiverton
On Thursday 01 Mar 2007, Impudent1 wrote: So am I to take this that Apollo will not let me deal with a remote filesystem? If I cannot read/write files from a workstation to a server, or deal with a remote data connection, Apollo suddenly seems really useless for my app :( You can always send

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread slangeberg
Oh yeah, did he say: limited to 2g As in a 2GB POST limit? That doesn't seem like much of a limit. I may question the logic of posting a 2G file! If that's not the current limit, what is? Tom, what's the current method you're referring to, for 'sending' files to server? -Scott On 3/2/07,

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Impudent1
slangeberg wrote: Oh yeah, did he say: limited to 2g As in a 2GB POST limit? That doesn't seem like much of a limit. I may question the logic of posting a 2G file! If that's not the current limit, what is? fwiw , this is an internal video approval system app, and 2g is nothing for even

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Jim Cheng
Impudent1 wrote: So am I to take this that Apollo will not let me deal with a remote filesystem? If I cannot read/write files from a workstation to a server, or deal with a remote data connection, Apollo suddenly seems really useless for my app :( There's no reason that you'd even need

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread Impudent1
Flash Player 9 already has all you need for building libraries to connect to all sorts of remote filesystems: sockets, binary and otherwise. Agreed, I was hoping that Apollo would deal with the heavy lifting on some of this stuff vs giving front end components was the main gist of my

[flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread greg h
fyi ... A sample chapter is available for download: Chapter 4: Using the File System API (PDF Format) http://www.oreilly.com/catalog/9780596513917/chapter/ It is from this book: Apollo for Adobe Flex Developers Pocket Guide A Developer's Reference for Apollo's Alpha Release by Mike Chambers,

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread Impudent1
Just taking a quick look and this concerns me: Apollo provides a file I/O API that lets applications read and write files and directories on the user’s computer... The Flex framework for Apollo includes components for working with files and directories, but these are graphical components for

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread slangeberg
Uh, you're still going to have 'at least' all those capabilities (talking to networked service) already existing in Flex.. What kind of functionality / library / language are you comparing this to? -Scott On 3/1/07, Impudent1 [EMAIL PROTECTED] wrote: Just taking a quick look and this concerns

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread Impudent1
slangeberg wrote: Uh, you're still going to have 'at least' all those capabilities (talking to networked service) already existing in Flex.. What kind of functionality / library / language are you comparing this to? Well I still have not seen how this will dovetail into the offline/online

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread slangeberg
Binary sockets, for one.. Any other ideas out there? -Scott On 3/1/07, Impudent1 [EMAIL PROTECTED] wrote: slangeberg wrote: Uh, you're still going to have 'at least' all those capabilities (talking to networked service) already existing in Flex.. What kind of functionality / library /

Re: [flexcoders] Apollo features

2007-02-06 Thread Tom Chiverton
On Monday 05 Feb 2007, Mike Chambers wrote: Apollo offers one or more offline data stores. So does Flash - with SharedObject. I believe the question was about an embedded database, i.e. can talk SQL. -- Tom Chiverton Helping to vitalistically promote sexy architectures

RE: [flexcoders] Apollo features

2007-02-06 Thread Jason Hawryluk
] la part de Tom Chiverton Envoyé : mardi 6 février 2007 11:27 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features On Monday 05 Feb 2007, Mike Chambers wrote: Apollo offers one or more offline data stores. So does Flash - with SharedObject. I believe the question was about

Re: [flexcoders] Apollo features

2007-02-05 Thread Tom Chiverton
On Friday 02 Feb 2007, Mike Chambers wrote: Only Flash and PDF are supported in 1.0. Not HTML ? -- Tom Chiverton Helping to apprehensively improve magnetic deliverables This email is sent for and on behalf of Halliwells LLP. Halliwells

RE: [flexcoders] Apollo features

2007-02-05 Thread Jason Hawryluk
- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Jeffry Houser Envoye : samedi 3 fevrier 2007 17:15 A : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features It seems to me there is a lot of speculation about Apollo, based on very little actual

RE: [flexcoders] Apollo features

2007-02-05 Thread Jeffry Houser
At 11:10 AM 2/4/2007, you wrote: Many users are still disconnected. Nomad users are still common place. Most sales people are getting out o the road in order to create opportunities as opposed to staying in the office. Few rural areas are 100% covered by high speed (wifi,gprs,gsm,3G) access.

Re: [flexcoders] Apollo features

2007-02-05 Thread Shannon Hicks
He was referring to plugins that will be supported by the Apollo WebKit engine. Shan Tom Chiverton wrote: On Friday 02 Feb 2007, Mike Chambers wrote: Only Flash and PDF are supported in 1.0. Not HTML ?

Re: [flexcoders] Apollo features

2007-02-05 Thread Mike Chambers
I dont have the original thread, but I believe the question was, what plugins are supported within HTML in Apollo. The answer is Flash and PDF. HTML is supported, but not as a plugin. It is a core part of the runtime. mike chambers [EMAIL PROTECTED] Tom Chiverton wrote: On Friday 02 Feb

Re: [flexcoders] Apollo features

2007-02-05 Thread Mike Chambers
Apollo offers one or more offline data stores. mike chambers [EMAIL PROTECTED] Jeffry Houser wrote: Apollo offers an embedded DB? I haven't heard that yet.

RE: [flexcoders] Apollo features

2007-02-04 Thread Jason Hawryluk
: samedi 3 février 2007 16:39 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features Haven't replied too often, but this one struck a chord. In real enterprise-level applications, you are split up into tiers. you have presentation layer (which apollo/flex/flash/etc fits

RE: [flexcoders] Apollo features

2007-02-04 Thread Jason Hawryluk
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Shannon Hicks Envoyé : samedi 3 février 2007 16:38 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features You never said anything about this in your previous email. All you said in your previous email

Re: [flexcoders] Apollo features

2007-02-03 Thread DannyT
totally missing your logic here. jason -Message d'origine- *De :* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de* Shannon Hicks *Envoyé :* vendredi 2 février 2007 18:31 *À :* flexcoders@yahoogroups.com *Objet :* Re: [flexcoders] Apollo features The real value of Apollo

Re: [flexcoders] Apollo features

2007-02-03 Thread Shannon Hicks
- *De :* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de* Shannon Hicks *Envoyé :* vendredi 2 février 2007 18:31 *À :* flexcoders@yahoogroups.com *Objet :* Re: [flexcoders] Apollo features The real value of Apollo would be cross-platform applications. I can't

Re: [flexcoders] Apollo features

2007-02-03 Thread Jerome Clarke a.k.a sinatosk
@yahoogroups.com *Objet :* Re: [flexcoders] Apollo features The real value of Apollo would be cross-platform applications. I can't run your DLL's on my Mac. If you need DLL's, use VB to build your app, and don't tease me with the false hope of a cross-platform application by building with Apollo

Re: [flexcoders] Apollo features

2007-02-03 Thread Jeffry Houser
It seems to me there is a lot of speculation about Apollo, based on very little actual knowledge. All this speculation of Apollo must have x feature seems premature. I don't Grok Apollo and don't expect to until there is an actual product available or some documentation to read. Why

Re: [flexcoders] Apollo features

2007-02-03 Thread Andrey
totally missing your logic here. jason -Message d'origine- *De :* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de* Shannon Hicks *Envoyé :* vendredi 2 février 2007 18:31 *À :* flexcoders@yahoogroups.com *Objet :* Re: [flexcoders] Apollo features The real value of Apollo

Re: [flexcoders] Apollo features

2007-02-03 Thread Ryan Stewart
: [flexcoders] Apollo features So your saying it's better for a company to re create the wheel then to leverage their existing investments. 80%+ of business applications are specific to windows not leveraging that investment is just stupid. So now if I have a client that wants to leverage Apollo I

RE: [flexcoders] Apollo features

2007-02-02 Thread Christian Weibell
Sent: Wednesday, January 31, 2007 7:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo features Hi, This feature is KEY for our company too. We are developing speech services (DLL based)...and we will use APOLLO if we can use those DLLs...please, implement it on 1.0

Re: [flexcoders] Apollo features

2007-02-02 Thread Kevin Newman
Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch native local applications ? As far as I know, Apollo is using webkit, does this include the ability to run other plugins besides Flash (like Java)? If so, can you use one of those other plugins

Re: [flexcoders] Apollo features

2007-02-02 Thread Tom Chiverton
On Friday 02 Feb 2007, Kevin Newman wrote: Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch native local applications ? As far as I know, Apollo is using webkit, I would *expect* them to do that, did read something somewhere ? does this include

Re: [flexcoders] Apollo features

2007-02-02 Thread Jerome Clarke a.k.a sinatosk
To be honest... all this talk I've been hearing about Apollo being used as desktop applications using web technologies... I would kinda expect that you can launch exe passing parameters ( like CLI style or something similar ), talk to dynamic libraries like .dll ( Windows ), .so ( Linux )...

RE: [flexcoders] Apollo features

2007-02-02 Thread Jason Hawryluk
. jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Jerome Clarke a.k.a sinatosk Envoyé : vendredi 2 février 2007 16:54 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features To be honest... all this talk I've been

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
You probably heard drag and drop into apollo (local file into app). However, it should be possible to simulate drag from browser into apollo app. mikeh chambers [EMAIL PROTECTED] Tom Chiverton wrote: I'm sure there was a quote about being able to drag applications of web sites onto

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Only Flash and PDF are supported in 1.0. I will update the FAQ with the info. http://labs.adobe.com/wiki/index.php/Apollo:developerfaq mike chambers [EMAIL PROTECTED] Kevin Newman wrote: Tom Chiverton wrote: Does anyone or has read somewhere, if Apollo will allow you to launch

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
Actually, that is not necessarily the case. If you look at our descriptions of Apollo, we try to make it very clear that Apollo is focused at bringing RIAs to the desktop. It is this use case that is driving feature prioritization. From the FAQ:

Re: [flexcoders] Apollo features

2007-02-02 Thread Shannon Hicks
engaging user experiences. jason -Message d'origine- *De :* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de* Jerome Clarke a.k.a sinatosk *Envoyé :* vendredi 2 février 2007 16:54 *À :* flexcoders@yahoogroups.com *Objet :* Re: [flexcoders] Apollo

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
I think that just getting the app out of the browser is also a major advantage. It will still be possible to create platform specific Apollo apps, but (at least for 1.0), when we prioritize features, we are going to prioritize those which enable and encourage cross platform applications. mike

RE: [flexcoders] Apollo features

2007-02-02 Thread João Fernandes
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Chambers Sent: sexta-feira, 2 de Fevereiro de 2007 17:39 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Apollo features I think that just getting the app out of the browser is also a major advantage. It will still be possible to create

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Mike Chambers *Sent:* sexta-feira, 2 de Fevereiro de 2007 17:39 *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Apollo features I think that just getting the app out of the browser is also a major

Re: [flexcoders] Apollo features

2007-02-02 Thread Paul Hastings
On 2/3/07, Mike Chambers [EMAIL PROTECTED] wrote: Technically, you could create PDFs within Apollo by doing it via ActionScript, but we do have built in APIs for dynamically generating PDF content. wow. Do you have an example of what you would like to do with generating PDF content? (you

Re: [flexcoders] Apollo features

2007-02-02 Thread Jerome Clarke a.k.a sinatosk
:* vendredi 2 février 2007 16:54 *À :* flexcoders@yahoogroups.com *Objet :* Re: [flexcoders] Apollo features To be honest... all this talk I've been hearing about Apollo being used as desktop applications using web technologies... I would kinda expect that you can launch exe passing parameters ( like CLI

Re: [flexcoders] Apollo features

2007-02-02 Thread Mike Chambers
%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com] *On Behalf Of *Mike Chambers *Sent:* sexta-feira, 2 de Fevereiro de 2007 17:39 *To:* flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com *Subject:* Re: [flexcoders] Apollo features

RE: [flexcoders] Apollo features

2007-02-02 Thread Jason Hawryluk
Envoyé : vendredi 2 février 2007 18:31 À : flexcoders@yahoogroups.com Objet : Re: [flexcoders] Apollo features The real value of Apollo would be cross-platform applications. I can't run your DLL's on my Mac. If you need DLL's, use VB to build your app, and don't tease me with the false

Re: [flexcoders] Apollo features

2007-02-01 Thread Tom Chiverton
On Wednesday 31 Jan 2007, Mike Chambers wrote: I think the scenario you described below would be possible without having to launch an EXE Well, yes, if mailto: HREF's are supported, but we may also want to fire up VoIP interface apps etc. etc. (although I would have to think about the pull

  1   2   >