Re: [Flashcoders] Extracting file details

2006-12-06 Thread Helmut Granda

Thanks! I found that last night too and it is exactly what I was looking
for.

On 12/6/06, shang liang [EMAIL PROTECTED] wrote:


http://www.phpclasses.org/browse/package/1653.html

On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:
 Maybe this is not the right list but I thought I would give it a shot.

 Is there anyway to get file details like FPS, BG Color and such from a
SWF?
 with flash or with PHP?

 TIA for any ideas...

 helmut
 ___
 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, sometimes.
*/
___
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





--
...helmut
helmutgranda.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] Extracting file details

2006-12-06 Thread Helmut Granda

I just found out that the file size that the class outputs is not the same
filesize that the file size is represented on my computer.

Here are some samples:

CS= Computer Size  -   SS= Site Size  -  DIFF= Difference

CS: SS:  DIFF:
36319  53152   16833
35796  51460   15664
37613  53685   16072

The tricky thing is that the file difference is not constant so I cant say
33% of the file size is the difference it will always be so then the file is
= to the site size - the %.

Has anyone run into the same issue?

-h

On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:


Thanks! I found that last night too and it is exactly what I was looking
for.

On 12/6/06, shang liang [EMAIL PROTECTED]  wrote:

 http://www.phpclasses.org/browse/package/1653.html

 On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:
  Maybe this is not the right list but I thought I would give it a shot.
 
  Is there anyway to get file details like FPS, BG Color and such from a
 SWF?
  with flash or with PHP?
 
  TIA for any ideas...
 
  helmut
  ___
  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, sometimes.
 */
 ___
 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




--
...helmut
helmutgranda.com





--
...helmut
helmutgranda.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[2]: [Flashcoders] Extracting file details

2006-12-06 Thread R�kos Attila

HG I just found out that the file size that the class outputs is not the same
HG filesize that the file size is represented on my computer.

The reported size is the size of the uncompressed swf (compression
exists since Flash 6 and it is the default option), similar to the
value returned by MovieClip.getBytesTotal(). You can check the real
file size with a simple call to filesize() function (if you use PHP).

  Attila

___
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] Extracting file details

2006-12-06 Thread Ryan Potter
I have run into something similar trying to create a multiple file
preloader.  What I finally had to do was to trace out the files as they
were preloading and then put them back into an array (manually) to use as a
total.  My computer was giving the wrong value under file properties.  

Try tracing the total bytes in flash and see if it is the same as php.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Helmut
Granda
Sent: Wednesday, December 06, 2006 12:17 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Extracting file details

I just found out that the file size that the class outputs is not the same
filesize that the file size is represented on my computer.

Here are some samples:

CS= Computer Size  -   SS= Site Size  -  DIFF= Difference

CS: SS:  DIFF:
36319  53152   16833
35796  51460   15664
37613  53685   16072

The tricky thing is that the file difference is not constant so I cant say
33% of the file size is the difference it will always be so then the file
is
= to the site size - the %.

Has anyone run into the same issue?

-h

On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:

 Thanks! I found that last night too and it is exactly what I was looking
 for.

 On 12/6/06, shang liang [EMAIL PROTECTED]  wrote:
 
  http://www.phpclasses.org/browse/package/1653.html
 
  On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:
   Maybe this is not the right list but I thought I would give it a
shot.
  
   Is there anyway to get file details like FPS, BG Color and such from
a
  SWF?
   with flash or with PHP?
  
   TIA for any ideas...
  
   helmut
   ___
   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, sometimes.
  */
  ___
  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
 



 --
 ...helmut
 helmutgranda.com




-- 
...helmut
helmutgranda.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


[Flashcoders] Extracting file details

2006-12-05 Thread Helmut Granda

Maybe this is not the right list but I thought I would give it a shot.

Is there anyway to get file details like FPS, BG Color and such from a SWF?
with flash or with PHP?

TIA for any ideas...

helmut
___
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] Extracting file details

2006-12-05 Thread shang liang

http://www.phpclasses.org/browse/package/1653.html

On 12/6/06, Helmut Granda [EMAIL PROTECTED] wrote:

Maybe this is not the right list but I thought I would give it a shot.

Is there anyway to get file details like FPS, BG Color and such from a SWF?
with flash or with PHP?

TIA for any ideas...

helmut
___
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, sometimes.
*/
___
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