Re: [Flashcoders] server-side FLV encoder ?

2006-05-01 Thread Darren Cook
 are there any linux tools that can use a PHP or command-line interface to 
 batch
 convert incoming files to flash video?

ffmpeg is probably what you want:
  http://ffmpeg.sourceforge.net/

Note that it can only convert from/to the older flash video format (i.e.
the Flash 7 format).

 what is needed to serve flash video? is apache OK?

I believe so, and I believe it streams (i.e. it starts playing before
the flv is fully loaded). If you need something more sophisticated and
are looking for an open source solution try Red5:
  http://osflash.org/red5

Darren
___
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] dynamic image scroller

2006-05-01 Thread elibol

I understand, I've attached a class that I made a while ago that does just
this, you could use it if you like. Here is an example of how to use it:

import utils.*;
var _items = [container.image1, container.image2, container.image3,
container.image4, container.image5]; //these are your images
var a = new WrappingScroller(_items, container, 1, 'h', null, 'l'); // these
are your parameters
a.start(); //start the scrolling

I can think of a new way of doing it now though since flash 8, you could
have a massive jpeg with no clipping with all of your images side by side,
this could be scrolled by applying a matrix with a negative x axis
translation value ( _imageMatrix.translate(-1, 0) ).

Hope this helps,

M.

On 4/30/06, Santy Piet [EMAIL PROTECTED] wrote:


Hi,

I'm Piet from Belgium, student Multimedia and communication. I have to
build a dynamic photo scroller and I'm kinda stuck at coding the thing. This
is the purpose of my swf :

load external images (via xml) in a mc. - no problem with xml, works
perfect
then it has to begin scrolling to the left in a frame but it has to loop,
so when the last image comes in, the first one should follow on the last.
(Some in the other direction) I tried some things but can't get it to work.
The images have all the same height, but different widths. I work with the
holders and a moviecliploader.

If any of you guys can give me any advice, it would be greatly
appreciated.

-Piet, Belgium
___
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] Shared font questions

2006-05-01 Thread Jon Bradley
I've seen sharedfonts.com and checked it out. I've also checked out  
some archived pages on shared fonts, how they load, etc. and a few  
other thoughts.


What's the difference between the SFM component and the methods  
described in the archives to share fonts with a library and a movie  
clip so that dynamic and static fields will work (and TextFormat).


It seems that the SFM component, which costs money, is literally just  
a tad of code to load up the fonts into an array in the global space,  
and it uses what seems to be the same process as described in the  
Flashcoders archives.


Does anyone know what the benefits are of just following the examples  
used in the archives, or using the sharedfonts.com code?


Has anyone come up with a snippet of AS that will take a loaded  
shared font(s), parse out the name(s) and push it into a global array  
so that it's accessible by name throughout your loaded file?


It seems to me that this is all the sharedfonts extension does, so  
I'm trying to figure out what the benefit of it is over the known  
processes. I'm not at all knocking the work Ivan did, just trying to  
get all the info to do what I need to do.


I need to ensure that the method I'm using will work with  
getTextExtent method, because I need to get the metrics from the font  
in a field that has a text format applied.


Does anyone have any other examples or info? It seems all I can find  
is from back in late 2003 or early 2004, old information, apparently  
still applicable to Flash 8.


cheers,

jon
___
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] loading an external image into a BitmapData

2006-05-01 Thread elibol

Michael excellent response!

Are you attaching the bitmap of the drawn movieclip to a new movieclip? Are
you preloading?

M.

On 4/30/06, Michael Klishin [EMAIL PROTECTED] wrote:


grimmwerks wrote:
 What would be the quickest way of flipping images into a bitmap data?

1. Load it
2. Take a snapshot
3. Unload it or whatever...

--
Michael Antares Klishin,

(Flash + Flex + Java + Ruby)*Eclipse weblog : http://www.novemberain.com/
Email : [EMAIL PROTECTED]
___
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] Deep Linking and the Back button. IE6 problem

2006-05-01 Thread Kevin Newman

Hi Drew,

Are you using the latest build of FlashJS?

I believe this has to do with the release build of Flash/JS Integration 
Kit's use of the getURL('javascript:') method to send script calls to 
javascript. javascript: urls break HistoryKeeper. You can get around 
this by using fscommand from within flash to send calls out to 
javascript from flash, but I believe they are using that method in the 
latest version.


http://www.osflash.org/flashjs/docs/getsource

Download the one that is generated daily 
(http://weblogs.macromedia.com/flashjavascript/fjs_source.zip)


If that's not it, let me know, and I'll see if I can think of something 
else. :-)


Oh, if you are using javascript: urls anywhere else in you flash movie, 
that will break it too.



Kevin N.



Drew Foehn wrote:

Hi Kevin,

After wrestling with this issue for awhile and writing a solution
myself, I decided to try your more elegant implementation and found it
very useful, I really like the 'onHistoryChange event' notification
system. I tied it to the JavaScript Integration Kit to notify my flash
app.

I have an issue with IE that is very perplexing and it occurs with my
solution and yours. After making more than 2 calls to update the
location.hash object, IE6 freezes and stops loading the page. I think
it's the same issue that is documented here
http://www.thescripts.com/forum/threadnav157294-1-10.html and I don't
see a solution to it. Have you had this issue?

Cheers,

Drew Foehn
Actionscript Developer
HotHouse Interactive

-
p:  +61 2 9432 3600
e:  [EMAIL PROTECTED]   
-

HotHouse Interactive Pty Ltd
Level 3, 154 Pacific Highway
St Leonards NSW 2067
Australia
-
www.hothouse.com.au http://www.hothouse.com.au/  
-



-- Original Message --
Date: Tue, 25 Apr 2006 11:50:33 -0400
From: Kevin Newman [EMAIL PROTECTED]
Subject: Re: [Flashcoders] Deep Linking and the Back button.
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

I have made a script that intends to solve this very issue. It is a 
single javascript file (no extra server calls to grab a file to fill the


iframe, it's all done in javascript), with a method (addHistory) that 
adds a history entry, and a delegation pattern for history change 
notification. You can find it here:


http://www.unfocus.com/projects/HistoryKeeper/
http://www.unfocus.com/projects/source/

The history script only takes care of the history portion, you will have

to take care of the javascript/flash communication using one of the many

techniques available (my communication framework, or FlashJS, or 
ExternalInterface), and you will need to set up a small script that will


update the flash movie when the state changes. The state will also need 
to be maintained by your custom Flash scripting (however it is that you 
build your app, I recommend MVC, and making a VC out of the history part


of the app).

I am working on a History Bridge (JS side is done) to take or this, but 
it isn't ready for prime time yet.


Kevin N.





  



___
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] Deep Linking and the Back button. IE6 problem

2006-05-01 Thread Kevin Newman
Oh, I just saw on another thread that you fixed this. I'm glad it's 
working. :-)


Kevin N.


Kevin Newman wrote:

Hi Drew,

Are you using the latest build of FlashJS?

I believe this has to do with the release build of Flash/JS 
Integration Kit's use of the getURL('javascript:') method to send 
script calls to javascript. javascript: urls break HistoryKeeper. You 
can get around this by using fscommand from within flash to send calls 
out to javascript from flash, but I believe they are using that method 
in the latest version.


http://www.osflash.org/flashjs/docs/getsource

Download the one that is generated daily 
(http://weblogs.macromedia.com/flashjavascript/fjs_source.zip)


If that's not it, let me know, and I'll see if I can think of 
something else. :-)


Oh, if you are using javascript: urls anywhere else in you flash 
movie, that will break it too.



Kevin N.



Drew Foehn wrote:

Hi Kevin,

After wrestling with this issue for awhile and writing a solution
myself, I decided to try your more elegant implementation and found it
very useful, I really like the 'onHistoryChange event' notification
system. I tied it to the JavaScript Integration Kit to notify my flash
app.

I have an issue with IE that is very perplexing and it occurs with my
solution and yours. After making more than 2 calls to update the
location.hash object, IE6 freezes and stops loading the page. I think
it's the same issue that is documented here
http://www.thescripts.com/forum/threadnav157294-1-10.html and I don't
see a solution to it. Have you had this issue?

Cheers,

Drew Foehn
Actionscript Developer
HotHouse Interactive

-
p:  +61 2 9432 3600
e:  [EMAIL PROTECTED]   -
HotHouse Interactive Pty Ltd
Level 3, 154 Pacific Highway
St Leonards NSW 2067
Australia
-
www.hothouse.com.au http://www.hothouse.com.au/  
-



-- Original Message --
Date: Tue, 25 Apr 2006 11:50:33 -0400
From: Kevin Newman [EMAIL PROTECTED]
Subject: Re: [Flashcoders] Deep Linking and the Back button.
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

I have made a script that intends to solve this very issue. It is a 
single javascript file (no extra server calls to grab a file to fill the


iframe, it's all done in javascript), with a method (addHistory) that 
adds a history entry, and a delegation pattern for history change 
notification. You can find it here:


http://www.unfocus.com/projects/HistoryKeeper/
http://www.unfocus.com/projects/source/

The history script only takes care of the history portion, you will have

to take care of the javascript/flash communication using one of the many

techniques available (my communication framework, or FlashJS, or 
ExternalInterface), and you will need to set up a small script that will


update the flash movie when the state changes. The state will also 
need to be maintained by your custom Flash scripting (however it is 
that you build your app, I recommend MVC, and making a VC out of the 
history part


of the app).

I am working on a History Bridge (JS side is done) to take or this, 
but it isn't ready for prime time yet.


Kevin N.




___
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] red5 recording viedo streams

2006-05-01 Thread flashcoders
can anyone point me in the direction of being able to record video streams with
red5. It says on osflash that you can. just looking for a direction to go. or
maybe an example or tutorial or something. without having to read all of the
docs on it.
___
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] red5 recording viedo streams

2006-05-01 Thread John Grden

here are sample SWF's in the DEV_Deploy folder and the FLA's/classes in the
DEV_Source folder.  SimpleRecorder.swf is what you're interested.

JG

On 5/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED]
wrote:


can anyone point me in the direction of being able to record video streams
with
red5. It says on osflash that you can. just looking for a direction to go.
or
maybe an example or tutorial or something. without having to read all of
the
docs on it.
___
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





--
John Grden - Blitz
___
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] red5 recording viedo streams

2006-05-01 Thread jim
Try the red5 mailing list  www.osflash.org/red5 

Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: 01 May 2006 17:35
To: 'Flashcoders mailing list'
Subject: [Flashcoders] red5 recording viedo streams

can anyone point me in the direction of being able to record video streams
with
red5. It says on osflash that you can. just looking for a direction to go.
or
maybe an example or tutorial or something. without having to read all of the
docs on it.
___
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] ActionScript 3.0 Cheatsheets!!

2006-05-01 Thread thotskee

Flashcoders,

The ActionScript 3.0 cheatsheet family has been born. There will be 
additional sheets created in the (hopefully) near future so be sure to come 
back to the blog in the next few weeks.


For now you can download the first three AS3.0 cheatsheets here:
AS3.0 Top Level Classes
AS3.0 Packages
AS3.0 flash.display Classes

http://actionscriptcheatsheet.com/blog/

As always suggestions and creative criticism are very welcome... I got 
flamed for posting the AS2 Cheatsheet and I think once is enough. If you 
hate these sheets please just keep it to yourself :)


- thotskee 


___
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] mp3/flv player, one model, or sound.loadSound and netStream

2006-05-01 Thread Martin Weiser

Hello guys,
i'm trying to make unified mp3/flv plaeyr, with one controlling system,
play/stop/pause/ff/rw/volume...

I already made mo3 player some time ago, based on Sound class, and loadSound
method for loading mp3 and streamed...
FLV player could be don only by attaching video from netStream instance to
videl object on stage

so for example preloading is different, sound has getBytesLoaded() method,
but netStream got bytesLoaded properrty.
also duration property for sound is changing according to load progres, but
for netStream is available final duration value after onMEtaData
envocation..
all these hassles make it very difficult to unify the coding
Do you have any experience or solutions for batter way how to do it?
Thanks
cheers
Martin 


___
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] red5 recording viedo streams

2006-05-01 Thread Yehia Shouman

Sorry, but what's the address of the red5 mailing list ?

Also can anyone point me to a tutorial that can help me with the following:

I need to be able to send a command from a broadcasting client to all the
subscriber clients
so that there would be a nice switch case at the subscribers clients that
would handle these commands ? commands like sendFocus, close ... etc

Yehia

On 5/1/06, jim [EMAIL PROTECTED] wrote:


Try the red5 mailing list  www.osflash.org/red5

Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: 01 May 2006 17:35
To: 'Flashcoders mailing list'
Subject: [Flashcoders] red5 recording viedo streams

can anyone point me in the direction of being able to record video streams
with
red5. It says on osflash that you can. just looking for a direction to go.
or
maybe an example or tutorial or something. without having to read all of
the
docs on it.
___
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] red5 recording viedo streams

2006-05-01 Thread John Grden

http://www.osflash.org/doku.php?id=red5#red5_help_and_information

Go ahead and get signed up there and re-ask the question - we have answers
;)

On 5/1/06, Yehia Shouman [EMAIL PROTECTED] wrote:


Sorry, but what's the address of the red5 mailing list ?

Also can anyone point me to a tutorial that can help me with the
following:

I need to be able to send a command from a broadcasting client to all the
subscriber clients
so that there would be a nice switch case at the subscribers clients that
would handle these commands ? commands like sendFocus, close ... etc

Yehia

On 5/1/06, jim [EMAIL PROTECTED] wrote:

 Try the red5 mailing list  www.osflash.org/red5

 Jim

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: 01 May 2006 17:35
 To: 'Flashcoders mailing list'
 Subject: [Flashcoders] red5 recording viedo streams

 can anyone point me in the direction of being able to record video
streams
 with
 red5. It says on osflash that you can. just looking for a direction to
go.
 or
 maybe an example or tutorial or something. without having to read all of
 the
 docs on it.
 ___
 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





--
John Grden - Blitz
___
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] flashObject expressinstall error

2006-05-01 Thread Tony Watkins
I'm using flashObject with express install. Worked fine last Friday, but
this morning I'm getting the little Flash dialog box with the message A
download error occurred. Try to download again? Same error in ie pc, safari
and firefox mac. I¹ve now confirmed this with someone else.
___
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] flashObject expressinstall error

2006-05-01 Thread Karina Steffens
Hi Tony,

Just a shot in the dark, but it could be because the link to the flash
player has changed. It's now
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwa
veFlashpromoid=BIOW

I think Adobe has just closed down the macromedia website.
www.macromedia.com is redirected to www.adobe.com

Karina  

 -Original Message-
 From: Tony Watkins [mailto:[EMAIL PROTECTED] 
 Sent: 01 May 2006 19:19
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] flashObject expressinstall error
 
 I'm using flashObject with express install. Worked fine last 
 Friday, but this morning I'm getting the little Flash dialog 
 box with the message A download error occurred. Try to 
 download again? Same error in ie pc, safari and firefox mac. 
 I¹ve now confirmed this with someone else.
 ___
 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] window.onClose - Flash

2006-05-01 Thread Serge

As far as I know only IE has a modal dialog. What about other browsers?
There is some workaround, but it will work not in all cases
http://www.eggheadcafe.com/articles/javascript_modal_dialog.asp

Does anybody know how to make modal dialog in Firefox?


regards,
Serge



- Original Message - 
From: g.wygonik [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Sunday, April 30, 2006 8:40 PM
Subject: [Bulk] Re: [Flashcoders] window.onClose - Flash


If you dig in the list archives (if they are still around), i wrote a bit
about how i used onBeforeUnload to trigger Flash and i know other people
chimed in. In IE-only situations, i found it best to catch the
onBeforeUnload event, tell Flash via setVariable, open a modal dialog box
(so the main browser won't close) then either have the modal box close
itself after a few seconds, or have a localConnection or sharedObject setup
to let a Flash movie in the modal dialog know the main Flash was done and it
could close itself, which would in turn close the first, main window. whew!
:-)

There are ways to have a modal box in other browsers, but i don't know the
details off the top of my head.

fwiw
g.

On 4/25/06, erixtekila [EMAIL PROTECTED] wrote:



Le 25 avr. 06, à 23:31, David Rorex a écrit :

 window.onbeforeunload
Never knew that one.

I'l check for its availability across platforms. Thanks.

---
erixtekila
http://blog.v-i-a.net/
___
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





--
weblog: broadcast.artificialcolors.com
blazePDF: www.blazepdf.com
band: www.cutratebox.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] flashObject expressinstall error

2006-05-01 Thread Geoff Stearns
looks like the download url is fixed now, but the redirect after the  
install is done isn't working yet...



On May 1, 2006, at 3:38 PM, Geoff Stearns wrote:

Adobe is changing the dns/severs that the expressinstall lives  
on... and they are having some issues with it right now.


i'd recomment just disabling the expressinstall until it's fixed  
(hopefully soon).




On May 1, 2006, at 3:30 PM, Karina Steffens wrote:


Hi Tony,

Just a shot in the dark, but it could be because the link to the  
flash

player has changed. It's now
http://www.adobe.com/shockwave/download/download.cgi? 
P1_Prod_Version=Shockwa

veFlashpromoid=BIOW

I think Adobe has just closed down the macromedia website.
www.macromedia.com is redirected to www.adobe.com

Karina


-Original Message-
From: Tony Watkins [mailto:[EMAIL PROTECTED]
Sent: 01 May 2006 19:19
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] flashObject expressinstall error

I'm using flashObject with express install. Worked fine last
Friday, but this morning I'm getting the little Flash dialog
box with the message A download error occurred. Try to
download again? Same error in ie pc, safari and firefox mac.
I¹ve now confirmed this with someone else.
___
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


___
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] Re: Shared font questions

2006-05-01 Thread Brody Welch
http://tinyurl.com/fufs4

Here is another possible solution. It is translated
from Spanish to English so it may take some piecing
together. 

What I have found in researching these two solutions
is that one not need to create an .fla and .swf file
for the fonts and then via shared library add the
shared fonts to each new .fla that requires these
fonts. Basically a two step process. As well the
sharedFont.swf can be stored in a directory outside of
the directory containging the .swf's that share the
font.

One concern I encountered using Macromedia's approach
which has worked fine, is that if I moved the
sharedFont.swf to another directory the fonts would no
longer load. Obviously this makes since. But if I
changed the path within the .fla's that were sharing
the font to say ../../sharedFont.swf the fonts would
load in BUT they would reload into every new .swf that
used them bascially making the SHARED part pointless
and quickly wasting bandwidth. 

This is a big advantage to me as from my understanding
it lets one change the directory of the sharedFont.swf
if needed without having to go into say 150 .fla's and
make changes to the linkage/properties etc.

broD




___
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] lightweight 3rd party combobox component recommendation...

2006-05-01 Thread ryanm
I need a lightweight 3rd party combobox component, and don't really have the 
time to go download a bunch of demos and try them out. Can anyone recommend 
a good one? Most important is size, easy skinnability for the designer types 
who will mostly be using it is second, and complex functionality like 
autocomplete and stuff like that is lower on the list.


TIA,

ryanm 


___
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] window.onClose - Flash

2006-05-01 Thread David Rorex

1. Go here:
http://www.blogger.com/comment.g?blogID=20017639postID=114564375751056109
2. Type something into the comment box
3. Try to close the window

I get a true modal dialog box (not the hack one) in both Firefox and IE on
windows.

Gmail does a similar thing when you try to leave a page without sending a
typed email.

-David R

On 5/1/06, Serge [EMAIL PROTECTED] wrote:


As far as I know only IE has a modal dialog. What about other browsers?
There is some workaround, but it will work not in all cases
http://www.eggheadcafe.com/articles/javascript_modal_dialog.asp

Does anybody know how to make modal dialog in Firefox?


regards,
Serge



- Original Message -
From: g.wygonik [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Sunday, April 30, 2006 8:40 PM
Subject: [Bulk] Re: [Flashcoders] window.onClose - Flash


If you dig in the list archives (if they are still around), i wrote a bit
about how i used onBeforeUnload to trigger Flash and i know other people
chimed in. In IE-only situations, i found it best to catch the
onBeforeUnload event, tell Flash via setVariable, open a modal dialog box
(so the main browser won't close) then either have the modal box close
itself after a few seconds, or have a localConnection or sharedObject
setup
to let a Flash movie in the modal dialog know the main Flash was done and
it
could close itself, which would in turn close the first, main window.
whew!
:-)

There are ways to have a modal box in other browsers, but i don't know the
details off the top of my head.

fwiw
g.

On 4/25/06, erixtekila [EMAIL PROTECTED] wrote:


 Le 25 avr. 06, à 23:31, David Rorex a écrit :

  window.onbeforeunload
 Never knew that one.

 I'l check for its availability across platforms. Thanks.



___
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] Requesting reccomendation for testing already written classes

2006-05-01 Thread Luke Bayes

Hey Manuel,

Try the XUL UI at www.asunit.org.

It's more robust than the JSFL stuff.

Let us know what you think.


Thanks,


Luke Bayes
www.asunit.org
___
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] red5 recording viedo streams

2006-05-01 Thread jim
Sorry, should have put that on,

http://osflash.org/mailman/listinfo/red5_osflash.org

HTH
Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Yehia
Shouman
Sent: 01 May 2006 18:55
To: Flashcoders mailing list
Subject: Re: [Flashcoders] red5 recording viedo streams

Sorry, but what's the address of the red5 mailing list ?

Also can anyone point me to a tutorial that can help me with the following:

I need to be able to send a command from a broadcasting client to all the
subscriber clients
so that there would be a nice switch case at the subscribers clients that
would handle these commands ? commands like sendFocus, close ... etc

Yehia

On 5/1/06, jim [EMAIL PROTECTED] wrote:

 Try the red5 mailing list  www.osflash.org/red5

 Jim

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: 01 May 2006 17:35
 To: 'Flashcoders mailing list'
 Subject: [Flashcoders] red5 recording viedo streams

 can anyone point me in the direction of being able to record video streams
 with
 red5. It says on osflash that you can. just looking for a direction to go.
 or
 maybe an example or tutorial or something. without having to read all of
 the
 docs on it.
 ___
 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

___
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] red5 recording viedo streams

2006-05-01 Thread Yehia Shouman

Applied and awaiting authorization

Thanks Jim and John.

Yehia Shouman

On 5/2/06, jim [EMAIL PROTECTED] wrote:


Sorry, should have put that on,

http://osflash.org/mailman/listinfo/red5_osflash.org

HTH
Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Yehia
Shouman
Sent: 01 May 2006 18:55
To: Flashcoders mailing list
Subject: Re: [Flashcoders] red5 recording viedo streams

Sorry, but what's the address of the red5 mailing list ?

Also can anyone point me to a tutorial that can help me with the
following:

I need to be able to send a command from a broadcasting client to all the
subscriber clients
so that there would be a nice switch case at the subscribers clients that
would handle these commands ? commands like sendFocus, close ... etc

Yehia

On 5/1/06, jim [EMAIL PROTECTED] wrote:

 Try the red5 mailing list  www.osflash.org/red5

 Jim

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 [EMAIL PROTECTED]
 Sent: 01 May 2006 17:35
 To: 'Flashcoders mailing list'
 Subject: [Flashcoders] red5 recording viedo streams

 can anyone point me in the direction of being able to record video
streams
 with
 red5. It says on osflash that you can. just looking for a direction to
go.
 or
 maybe an example or tutorial or something. without having to read all of
 the
 docs on it.
 ___
 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

___
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] FLASH/MS_SQL urgent help needed

2006-05-01 Thread Randy Tinfow
We need an extra hand onsite in Northern NJ for a few days this week.
High profile project. Must be proficient in Flash, MS_SQL.  C#
experience is very helpful.  Premium rate, paid on-the-spot.

Please respond off-list to:

Randy Tinfow
[EMAIL PROTECTED]


TIA...






___
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] ActionScript 3.0 Cheatsheets!!

2006-05-01 Thread Steve Rachels
Would be nice if you still had the hated AS 2 cheatsheet for those of us 
who missed it the first time around..  :-)


thotskee wrote:


Flashcoders,

The ActionScript 3.0 cheatsheet family has been born. There will be 
additional sheets created in the (hopefully) near future so be sure to 
come back to the blog in the next few weeks.



___
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] ActionScript 3.0 Cheatsheets!!

2006-05-01 Thread thotskee
The (despised) AS2 sheet is still available... Just click the downloads link 
and you should be set!


http://actionscriptcheatsheet.com/blog/quick-referencecheatsheet-for-actionscript-20/

- thotskee

- Original Message - 
From: Steve Rachels [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, May 01, 2006 7:22 PM
Subject: Re: [Flashcoders] ActionScript 3.0 Cheatsheets!!


Would be nice if you still had the hated AS 2 cheatsheet for those of us 
who missed it the first time around..  :-)


thotskee wrote:


Flashcoders,

The ActionScript 3.0 cheatsheet family has been born. There will be 
additional sheets created in the (hopefully) near future so be sure to 
come back to the blog in the next few weeks.



___
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] ActionScript 3.0 Cheatsheets!!

2006-05-01 Thread Steve Rachels
From those of us who are always way behind in our grasp of ... just 
about everything... thank you.


-Steve Rachels-


thotskee wrote:

The (despised) AS2 sheet is still available... Just click the 
downloads link and you should be set!


http://actionscriptcheatsheet.com/blog/quick-referencecheatsheet-for-actionscript-20/ 



- thotskee

- Original Message - From: Steve Rachels 
[EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, May 01, 2006 7:22 PM
Subject: Re: [Flashcoders] ActionScript 3.0 Cheatsheets!!


Would be nice if you still had the hated AS 2 cheatsheet for those of 
us who missed it the first time around..  :-)


thotskee wrote:


Flashcoders,

The ActionScript 3.0 cheatsheet family has been born. There will be 
additional sheets created in the (hopefully) near future so be sure 
to come back to the blog in the next few weeks. 







___
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