Re: [Flashcoders] Keeping flvs out of the browser cache

2006-06-02 Thread Paul Evans
On 3 Jun 2006, at 00:00, Spurgeon, Chris wrote: We have a flash app that displays .flvs via progressive download (we don't have a streaming solution in place yet). Higher ups are worried about the possibility of users going into their browser's cache and saving the downloaded flv files. Is

[Flashcoders] Keeping flvs out of the browser cache

2006-06-02 Thread Spurgeon, Chris
I have an unusual situation. We have a flash app that displays .flvs via progressive download (we don't have a streaming solution in place yet). Higher ups are worried about the possibility of users going into their browser's cache and saving the downloaded flv files. Is there some way to tel

[Flashcoders] Palm OS Blazer Flash Plugin

2006-06-02 Thread Lane Good
Does anyone have any info on a Flash 8 player plugin for Palm OS Blazer 4.3? Lane Good [EMAIL PROTECTED] http://www.fastlanestudios.com ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyf

Re: [Flashcoders] loadvar php equivalent

2006-06-02 Thread Jordan Snyder
Your question is very vague, but you might check out PHPObject. On 6/2/06, Chris Hill <[EMAIL PROTECTED]> wrote: I'm going to take a stab here and guess that what you're looking for is SOAP(Simple Object Acess Protocol): http://dietrich.ganx4.com/nusoap/ This allows you to expose functions wi

Re: [Flashcoders] loadvar php equivalent

2006-06-02 Thread Chris Hill
I'm going to take a stab here and guess that what you're looking for is SOAP(Simple Object Acess Protocol): http://dietrich.ganx4.com/nusoap/ This allows you to expose functions within php, then you can call the function and return an object. You can call the function from flash, or another ph

[Flashcoders] loadvar php equivalent

2006-06-02 Thread Wade Arnold
I am trying to make some logic that I had in actionscript work in php on the server before I update flash. Is their an equivalent to loadvars in php that you can post data and return and object? I know that this is a little off topic so sorry anyone that currently has the urge to rant. Wade

RE: [Flashcoders] Embedding a SWF using base64 and Data: URI scheme

2006-06-02 Thread Tom Lee
Awesome! Thanks to everyone for their feedback. I'll definitely be playing around with this a bit further. -tom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Aebig Sent: Friday, June 02, 2006 5:45 PM To: 'Flashcoders mailing list' Subject: RE:

RE: [Flashcoders] mobile?

2006-06-02 Thread Dave Watts
> Do you mean Flash Lite 1.1? Flash Lite 2.0? The Player for > Windows Mobile (which is pretty much FP6?). FP 7 for Windows Mobile is now available. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our tra

Re: [Flashcoders] mobile?

2006-06-02 Thread Josh Santangelo
Do you mean Flash Lite 1.1? Flash Lite 2.0? The Player for Windows Mobile (which is pretty much FP6?). They vary tremendously. As far as animation and Flash Lite 1 goes, this is a good article: http://www.adobe.com/devnet/devices/articles/optimizing_anim.html Also: http://www.flashmobileforum.

RE: [Flashcoders] Embedding a SWF using base64 and Data: URI scheme

2006-06-02 Thread Kevin Aebig
Does anyone else find it funny that even though IE doesn't support this, Outlook does? I've received all kinds of stupid emails with encoded sounds, images and other objects from relatives... !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim Cheng Se

[Flashcoders] Flash ActiveX Wrapper

2006-06-02 Thread Kevin Aebig
Hey all, I've got a project that involves an application that contains a browser control in it (IE) and has specific ActiveX access to allow local file system access in a secure way. I'm looking to use Flash as my front-end, but still have access to the file system. Is there any tools / exa

Re: [Flashcoders] Embedding a SWF using base64 and Data: URI scheme

2006-06-02 Thread Jim Cheng
Tom Lee wrote: In the original Microsoft list of workarounds for the Eolas patch, one of the possible workarounds was to base64 encode your swf and embed the data inline in your object tag. The original page has since been removed, and the only evidence I can now find of this is at http://www.m

Re: [Flashcoders] Embedding a SWF using base64 and Data: URI scheme

2006-06-02 Thread Marcelo Volmaro
It is possible to encode ANY file to base64 and insert it on a page (a flash file, an image, a sound). The problem is that IE doesn´t support it. You can do (for example) src="data:image/gif;base64,dSQ84lLQfY5R14wDB5Lyon4ubwS7jx9NcV9/j5+g4JADs=" width="10" height="15" /> And all browsers will

Re: [Flashcoders] maxDepth for dynamic movieclips?

2006-06-02 Thread Peter Gehring
Make sure to old instances that aren't visible. Quick test tells me that you can make addressable clips and attach movies at depths over 1,000,000 ... make sure to remove your unused clips. On 6/1/06, Merrill, Jason <[EMAIL PROTECTED]> wrote: >>I've got an app that's a glorfied slideshow, slo

Re: [Flashcoders] Embedding a SWF using base64 and Data: URI scheme

2006-06-02 Thread John Dowdell
Tom Lee wrote: In the original Microsoft list of workarounds for the Eolas patch, one of the possible workarounds was to base64 encode your swf and embed the data inline in your object tag. The original page has since been removed, and the only evidence I can now find of this is at http://www.mu

RE: [Flashcoders] browser will not quit!!

2006-06-02 Thread Gresh, Lois
Regarding - "i don't even get a warning dialog box to ask me if i am sure i want to close the window " -- Don't know if this helps you - it's a way to notify the user that he's attempting to shut the browser window that is running the Flash app. (I used this approx 1-1/2 years ago - it still

RE: [Flashcoders] Re: OT: Anyone got a good CSS book to recommend?

2006-06-02 Thread Steven Sacks
Try this: http://www.westciv.com/style_master/academy/css_tutorial/ ___ 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 Sof

[Flashcoders] Good Online Video on Demand Examples

2006-06-02 Thread Marlon Harrison
I'm looking to examine so good online video player interfaces for a project I'm working on, and wanted to know if anyone could share some urls. I'd like to focus more on ad-supported streaming players. So far I have: ABC Episode Streming http://dynamic.abc.go.com/streaming/landing Nike http://

Re: [Flashcoders] browser will not quit!!

2006-06-02 Thread Simon Turner
Ok - i now have this as the coding within the flash file on (release, releaseOutside ) { this.gotoAndStop ('buttonUp'); getURL("javascript:window.close();"); fscommand("closeBrowserWindow", ""); } and i have some java in the html page like so ...