[Flashcoders] light mp3 player with cuepoint support

2009-09-08 Thread Latcho
Anybody having knowledge about a lightweight mp3 player class that 
support adding scriptwise cuepoints ?

Mine seems not failsafe... And i'm in a hurry.
Tnx,
Latcho
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] streaming video on my server

2009-09-08 Thread jared stanley
I remember running into this a few years ago; it had to do with the
server not recognizing the .flv filetype - i would check that first.

as far as just playing it off your server, you might want to try
progressive download instead of streaming; that is the most common way
of serving video and sounds like it might suit your needs.


On Tue, Sep 8, 2009 at 6:46 AM, Bassam M wrote:
> Hi Guys
>
> I have problem with playing video on my server, I create video player using
> the media components and every thing working fine , the video play fine I
> have not problem but when I upload the file to my site it stop working not
> video stream, I also used another player but same problem and I got error
> message (media not found)
> I need to know do I have to install flash media server on my server to play
> the video because my server don't have flash media server or please
> someboday tell my what to do
>
> Thanks
> Bassam
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Policy file for a socket connection

2009-09-08 Thread Dave Watts
> So according to
> http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec/popup_05.html
> the socket connection isn't closed.
> The Flash Player hands over its control to the application...

I'm not sure of that from reading the document. Handing over control
doesn't necessarily mean that the connection would be kept open during
the transition. On the other hand, I don't work with sockets enough to
know for sure either way.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Policy file for a socket connection

2009-09-08 Thread Alexander Farber
>From what I see in Wireshark though,
the Flash Player closes the connection
after receiving the policy XML
and then reopens it
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Policy file for a socket connection

2009-09-08 Thread Alexander Farber
Hello Dave,

>> 3) And finally I'm still not clear about when
>>  + 0 byte is being sent?
>> At the very beginning? And is the socket connection
>> closed a reopened afterwards?
>> Or is the connection kept opened?
>>
> This is the document you want to read:
> http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html

thank you for that doc.

So according to
http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec/popup_05.html
the socket connection isn't closed.
The Flash Player hands over its control to the application...

Regards
Alex

>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Policy file for a socket connection

2009-09-08 Thread Dave Watts
> 1) Are wildcards allowed in policy files?
>
> When I send the following text (+ a trailing 0-byte):
>
> 
> 
> 
> 
>
> then I get:
>
> OK: Root-level SWF loaded: http://172.16.6.45/Pref.swf
> OK: Searching for  in policy files to authorize
> data loading from resource at xmlsocket://172.16.6.45:8080 by
> requestor from http://172.16.6.45/Pref.swf
> Warning: Ignoring invalid  tag for domain
> '172.16.6.*' in policy file at xmlsocket://172.16.6.45:8080
> OK: Policy file accepted: xmlsocket://172.16.6.45:8080
> Error: SWF from http://172.16.6.45/Pref.swf may not connect to a
> socket in its own domain without a policy file.  See
> http://www.adobe.com/go/strict_policy_files to fix this problem.
>
> But when I remove the asterisk in the 2nd line:
>
> 
> 
> 
> 
>
> OK: Root-level SWF loaded: http://172.16.6.45/Pref.swf
> OK: Searching for  in policy files to authorize
> data loading from resource at xmlsocket://172.16.6.45:8080 by
> requestor from http://172.16.6.45/Pref.swf
> OK: Policy file accepted: xmlsocket://172.16.6.45:8080
> OK: Request for resource at xmlsocket://172.16.6.45:8080 by requestor
> from http://172.16.6.45/Pref.swf is permitted due to policy file at
> xmlsocket://172.16.6.45:8080
>
> (what about "*.preferans.de"? Is it valid and
> will it match www.preferans.de and preferans.de?)

The first one (*.preferans.de) is valid and will match both, I think,
but if you specify an IP address it must be an exact match - asterisks
aren't allowed for IP addresses.

> 2) Also http://www.adobe.com/go/strict_policy_files
> says the incoming request should be
>  with a trailing 0,
> but I get  with a 0 byte
> (i.e. without the space before "/>")

I would expect those to be identical, in the sense that they're both
equivalent "expressions" in XML. The cross-domain policy specification
doesn't include a leading space before the closing slash.

> 3) And finally I'm still not clear about when
>  + 0 byte is being sent?
> At the very beginning? And is the socket connection
> closed a reopened afterwards?
> Or is the connection kept opened?
>
> The Adobe doc is confusing, they don't
> even list an example policy file for sockets.
> They also don't have a process diagram.

This is the document you want to read:
http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Policy file for a socket connection

2009-09-08 Thread Alexander Farber
Hello fellow flashcoders!

1) Are wildcards allowed in policy files?

When I send the following text (+ a trailing 0-byte):






then I get:

OK: Root-level SWF loaded: http://172.16.6.45/Pref.swf
OK: Searching for  in policy files to authorize
data loading from resource at xmlsocket://172.16.6.45:8080 by
requestor from http://172.16.6.45/Pref.swf
Warning: Ignoring invalid  tag for domain
'172.16.6.*' in policy file at xmlsocket://172.16.6.45:8080
OK: Policy file accepted: xmlsocket://172.16.6.45:8080
Error: SWF from http://172.16.6.45/Pref.swf may not connect to a
socket in its own domain without a policy file.  See
http://www.adobe.com/go/strict_policy_files to fix this problem.

But when I remove the asterisk in the 2nd line:






OK: Root-level SWF loaded: http://172.16.6.45/Pref.swf
OK: Searching for  in policy files to authorize
data loading from resource at xmlsocket://172.16.6.45:8080 by
requestor from http://172.16.6.45/Pref.swf
OK: Policy file accepted: xmlsocket://172.16.6.45:8080
OK: Request for resource at xmlsocket://172.16.6.45:8080 by requestor
from http://172.16.6.45/Pref.swf is permitted due to policy file at
xmlsocket://172.16.6.45:8080

(what about "*.preferans.de"? Is it valid and
will it match www.preferans.de and preferans.de?)

2) Also http://www.adobe.com/go/strict_policy_files
says the incoming request should be
 with a trailing 0,
but I get  with a 0 byte
(i.e. without the space before "/>")

3) And finally I'm still not clear about when
 + 0 byte is being sent?
At the very beginning? And is the socket connection
closed a reopened afterwards?
Or is the connection kept opened?

The Adobe doc is confusing, they don't
even list an example policy file for sockets.
They also don't have a process diagram.

Please share your experiences.
I'm trying to make my socket server (in Perl) more robust...

Thanks
Alex
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Testing

2009-09-08 Thread Glen Pike
1,2,4


  

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] RE: Rather urgent advice on how to track the cause of a crash

2009-09-08 Thread Paul Steven
Yeah I assume it must have been something corrupt in the flash file as it
did not seem to crash after I cut and pasted all the frames into a new
movie. If only I had thought to do that first. Ah well I will certainly do
that next time something like this crops up.

Cheers

Paul

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of mike
donnelly
Sent: 08 September 2009 16:03
To: Flash Coders List
Subject: Re: [Flashcoders] RE: Rather urgent advice on how to track the
cause of a crash

Ah that's great. What was it in the end? You just copied the frames into a
new CS4 fla (and removed the weird font)?

2009/9/7 Paul Steven 

> Just a quick update to say the client has just reported a full days use of
> the game with no crashes! Phew - that was a close one!
>
> Thanks again for all the advice - I wouldn't have cracked it without all
> the
> fantastic tips.
>
> Cheers
>
> Paul
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] RE: Rather urgent advice on how to track the cause of a crash

2009-09-08 Thread mike donnelly
Ah that's great. What was it in the end? You just copied the frames into a
new CS4 fla (and removed the weird font)?

2009/9/7 Paul Steven 

> Just a quick update to say the client has just reported a full days use of
> the game with no crashes! Phew - that was a close one!
>
> Thanks again for all the advice - I wouldn't have cracked it without all
> the
> fantastic tips.
>
> Cheers
>
> Paul
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] streaming video on my server

2009-09-08 Thread Bassam M
Hi Guys

I have problem with playing video on my server, I create video player using
the media components and every thing working fine , the video play fine I
have not problem but when I upload the file to my site it stop working not
video stream, I also used another player but same problem and I got error
message (media not found)
I need to know do I have to install flash media server on my server to play
the video because my server don't have flash media server or please
someboday tell my what to do

Thanks
Bassam
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Extra information in classes

2009-09-08 Thread Geografiek

Hi Allandt,
I always include a to-do list, which holds comments about future  
enhancements and additions which didn't make it in this version.

HTH
Willem van den Goorbergh

On 8-sep-2009, at 12:32, Allandt Bik-Elliott (Receptacle) wrote:


hi guys

Something I've been thinking about for the last couple of days -  
what extra information do you add to a class when you're writing it?


My headers always include


/**
 * @filename: Main.as
 * @version : Actionscript 3.0
 * @author  : Allandt Bik-Elliott
 * @company : thereceptacle.co.uk
 */

and more recently a changelog

/**
 * @changelog:
 * 2009_09_03 : reason : change
 */

but I've been thinking about refreshing my practises.

I think I'll be using @version to track the class version number in  
the header and revising my @version with @ASversion. I also think i  
might need an @usage


do you add similar headers to each method (i've seen this done a  
few times)? do you add any other information?


thanks
alz

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
Geografiek is a Dutch, Utrecht-based map and chart design company.
Willem van den Goorbergh can be contacted by telephone: (+31) 
30-2719512 or cell phone: (+31)6-26372378

or by fax: (+31)302719687
snail mail: Hooghiemstraplein 89 3514 AX UTRECHT
Visit our website at: http://www.geografiek.nl
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Extra information in classes

2009-09-08 Thread Allandt Bik-Elliott (Receptacle)

hi guys

Something I've been thinking about for the last couple of days - what  
extra information do you add to a class when you're writing it?


My headers always include


/**
 * @filename: Main.as
 * @version : Actionscript 3.0
 * @author  : Allandt Bik-Elliott
 * @company : thereceptacle.co.uk
 */

and more recently a changelog

/**
 * @changelog:
 * 2009_09_03 : reason : change
 */

but I've been thinking about refreshing my practises.

I think I'll be using @version to track the class version number in  
the header and revising my @version with @ASversion. I also think i  
might need an @usage


do you add similar headers to each method (i've seen this done a few  
times)? do you add any other information?


thanks
alz

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders