Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread hermit
You can pick it up here. HTH Hermit http://hermitscastle.com/flashStuff/ I understand why it isn't up there anymore, so If someone else who downloaded this (during the brief period it was online) can pass it to me offlist, it would be great. Thanks, Arul Prasad.

Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread Hans Wichman
Hi, why isnt it up anymore then? greetz JC On 8/14/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: You can pick it up here. HTH Hermit http://hermitscastle.com/flashStuff/ I understand why it isn't up there anymore, so If someone else who downloaded this (during the brief period it

Re: [Flashcoders] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread Hans Wichman
Just on a side note, its not just -ow-what-shall-we-use-today- its a more fundamental conceptual issue as well, such as are you dealing with a is-a relationship or has-a or is-part-of-a etc. I don't know if better class hierarchies change that, but maybe they could... On 8/13/07, T. Michael

Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread Arul Prasad M L
Heard that Steve's previous employer has raised intellectual property claims on it; And he is working it out. He is not supposed discuss any details. May be we should keep discussions in here discrete as well; Don't want to get him into trouble, for doing something good to the community.

Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread Hans Wichman
Got it. Thread closed :). On 8/14/07, Arul Prasad M L [EMAIL PROTECTED] wrote: Heard that Steve's previous employer has raised intellectual property claims on it; And he is working it out. He is not supposed discuss any details. May be we should keep discussions in here discrete as well;

Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread Federico Bebber
2007/8/14, Arul Prasad M L [EMAIL PROTECTED]: May be we should keep discussions in here discrete as well; Don't want to get him into trouble, for doing something good to the community. yes this is the best thing to do. ___

Re: [Flashcoders] NetStream time and seek

2007-08-14 Thread Peter B
Thanks for the info. I assumed that but I wasnt sure. Is there anyway to send the user to specific keyframe instead of time for a movie? Could you elaborate please? What exactly are you trying to do? Pete ___ Flashcoders@chattyfig.figleaf.com To

[Flashcoders] division operand

2007-08-14 Thread natalia Vikhtinskaya
Hi Do anybody know how to solve one problem.I need to show in string variables division operand as the horizontal line with the dot above and below. So instead of 10 / 2= I need 10 ÷ 2 = Thanks in advance. ___ Flashcoders@chattyfig.figleaf.com To

Re: [Flashcoders] division operand

2007-08-14 Thread Cedric Muller
Hello, You mean that you just need this 'convention' for display purposes ? var str = 10 / 2=; trace(str); // outputs: 10 / 2= str = str.split(/).join(÷); trace(str); // outputs: 10 ÷ 2= hth, Cedric 10 / 2= I need 10 ÷ 2 =

RE: [Flashcoders] division operand

2007-08-14 Thread Danny Kodicek
Hi Do anybody know how to solve one problem.I need to show in string variables division operand as the horizontal line with the dot above and below. So instead of 10 / 2= I need 10 ÷ 2 = So put it in :) Just add the character and it should display fine (you may need to embed it,

[Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
Hello, in my current project the onKeyDown event is fired twice, when the key is hit in Textfields. I googled already this problem and always found only a description of the same problem as my one but no solution. Anyone solved this already? Here's some example code (nothing special):

Re: [Flashcoders] NetStream time and seek

2007-08-14 Thread Ricky Bacon
Helmut Granda wrote: I was wondering if there was a way to send some one to a certain frame within the FLV since that is how they are treated, but then I figured I could use coepoints. Still since what I am using is a thirdparty component it seems like this method is not allowed within this

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Ricky Bacon
Matthias Dittgen wrote: Hello, in my current project the onKeyDown event is fired twice, when the key is hit in Textfields. I googled already this problem and always found only a description of the same problem as my one but no solution. Anyone solved this already? Here's some example code

Re: [Flashcoders] division operand

2007-08-14 Thread natalia Vikhtinskaya
I have this operand=÷; item.text=operand+ +String(i); trace(item.text) /// ÷ 1 but I don't see that operand in text area. text area: not html, Arial, all embedded text area HTML: the same I see operand in trace but I don't see on the screen Any idea? 2007/8/14, Cedric Muller [EMAIL PROTECTED]:

Re: [Flashcoders] division operand

2007-08-14 Thread Muzak
Use the unicode notation: \u00F7 math_txt.text = a\u00F7b; http://www.unicode.org/charts/ It's in the Latin-1 chart, page 5: http://www.unicode.org/charts/PDF/U0080.pdf regards, Muzak - Original Message - From: natalia Vikhtinskaya [EMAIL PROTECTED] To: Flashcoders mailing list

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Dennis - I Sioux
Guess you could check the focus? And count the doubles out. - Original Message - From: Matthias Dittgen [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, August 14, 2007 11:26 AM Subject: [Flashcoders] onKeyDown/Up fires twice in dynamic

RE: [Flashcoders] division operand

2007-08-14 Thread Jesse Graupmann
On the TextField properties, try Embed Include these characters ÷ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of natalia Vikhtinskaya Sent: Tuesday, August 14, 2007 2:41 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] division

Re: [Flashcoders] division operand

2007-08-14 Thread Cedric Muller
I did a quick test with Arial embedded and it works: I see the '÷' character in my textfield. Be sure to specifically add '÷' to the Embed Panel (Include these characters:) hth, Cedric I have this operand=÷; item.text=operand+ +String(i); trace(item.text) /// ÷ 1 but I don't see that

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
But there is probably no guaranty that the event is fired twice on all FlashPlayers/OSes. So I would have to reset the state variable manually. 2007/8/14, Ricky Bacon [EMAIL PROTECTED]: Matthias Dittgen wrote: Hello, in my current project the onKeyDown event is fired twice, when the key

RE: [Flashcoders] division operand

2007-08-14 Thread Danny Kodicek
I have this operand=÷; item.text=operand+ +String(i); trace(item.text) /// ÷ 1 but I don't see that operand in text area. text area: not html, Arial, all embedded text area HTML: the same I see operand in trace but I don't see on the screen It sounds like you just haven't embedded the

Re: [Flashcoders] division operand

2007-08-14 Thread Ivan Dembicki
Hello, http://sharedfonts.com/eng/faq.html#include [q] I highly recommend you to input the desired glyphs into text field before writing them to Include these characters: box by pressing Auto Fill. There is a simple reason for that: font can have these glyphs missing. If you do not see a glyph

Re: [Flashcoders] division operand

2007-08-14 Thread natalia Vikhtinskaya
THANK YOU!!! 2007/8/14, Muzak [EMAIL PROTECTED]: Use the unicode notation: \u00F7 math_txt.text = a\u00F7b; http://www.unicode.org/charts/ It's in the Latin-1 chart, page 5: http://www.unicode.org/charts/PDF/U0080.pdf regards, Muzak - Original Message - From: natalia

[Flashcoders] Pls suggest some good source for video streaming with media server

2007-08-14 Thread creativity
Hi, I need some good book or online resource to utilize for dynamic online video streaming live as well as from stored videos. I f somebody can help in this regard it will be great. I need somme of these features 1. video uploads over hired media server through dynamic admin 2. Dynamic calling

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
Don't rant me for using _root, cause this was only for testing. I count the doubles out, which works fine for keyDown. The following code traces: enter down enter up enter up var keyListener:Object = new Object(); _root.onEnter = function() {}; _root.countEnter = 0; keyListener.onKeyDown =

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Muzak
The event will fire to all listeners, meaning that if you have multiple instances (of a class) that listens to Key events, you'l see multiple trace output. The following on the main timeline only displays output once: function onKeyUp() { if (Key.getCode() == Key.ENTER) trace(Enter pressed);

Re: [Flashcoders] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Johannes Nel
snip I have idea of streaming, xml, php etc. But i need some insight to use them together effectively for this /snip thats not really streaming. snip 1. video uploads over hired media server through dynamic admin /snip file upload snip for dynamic online video streaming live as well as from stored

RE: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Danny Kodicek
Don't rant me for using _root, cause this was only for testing. I count the doubles out, which works fine for keyDown. The following code traces: enter down enter up enter up If this is only happening with Enter, I wonder if it's because Enter is actually putting two characters into the

回复:Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread 方林勇
yes, i think this is good, studyingthanks !!! 在2007-08-14,Muzak [EMAIL PROTECTED] 写道: The event will fire to all listeners, meaning that if you have multiple instances (of a class) that listens to Key events, you'l see multiple trace output. The following on the main timeline only displays

回复:Re: [Flashcoders] Gaia - Anybody wanna share?

2007-08-14 Thread 方林勇
ye, i think that's right. 在2007-08-14,Federico Bebber [EMAIL PROTECTED] 写道: 2007/8/14, Arul Prasad M L [EMAIL PROTECTED]: May be we should keep discussions in here discrete as well; Don't want to get him into trouble, for doing something good to the community. yes this is the best thing to

回复:RE: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread 方林勇
as i know , in the windows os, the Enter as \n! 在2007-08-14,Danny Kodicek [EMAIL PROTECTED] 写道: Don't rant me for using _root, cause this was only for testing. I count the doubles out, which works fine for keyDown. The following code traces: enter down enter up enter up If this is

Re: [Flashcoders] onKeyDown/Up fires twice in dynamic TextField

2007-08-14 Thread Matthias Dittgen
trace(Key.getCode()); returns 13 my workaround is sufficient for my needs. But I think, it is not a problem of Enter, only. I have to check if Muzak is right and this is a kind of a scope issue. 2007/8/14, Danny Kodicek [EMAIL PROTECTED]: Don't rant me for using _root, cause this was only

Re: [Flashcoders] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Jer Brand
Confused lurker... Red 5 check. FMS check. WOZA == ?? On 8/14/07, Johannes Nel [EMAIL PROTECTED] wrote: snip I have idea of streaming, xml, php etc. But i need some insight to use them together effectively for this /snip thats not really streaming. snip 1. video uploads over hired media

Re: [Flashcoders] Pls suggest some good source for video streaming with media server

2007-08-14 Thread Johannes Nel
http://www.wowzamedia.com/index.html On 8/14/07, Jer Brand [EMAIL PROTECTED] wrote: Confused lurker... Red 5 check. FMS check. WOZA == ?? On 8/14/07, Johannes Nel [EMAIL PROTECTED] wrote: snip I have idea of streaming, xml, php etc. But i need some insight to use them together

Re: [Flashcoders] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread Zárate
Hi there, Maybe this is spam(ish) but for those of you who are more comfortable reading in Spanish, i wrote an open book about AS2 and OOP basics here: http://loqueyosede.com/as2/ Hope it helps! Juan On 8/14/07, Hans Wichman [EMAIL PROTECTED] wrote: Just on a side note, its not just

[Flashcoders] Issues with Limelight/Streaming Video

2007-08-14 Thread Will McHenry
*The Problem: *Currently we're using Limelight as our CDN for streaming video, and we've randomly been getting these strange 'blackouts' - you load the file, the netConnection is successful, the netStream connects correctly, you load the movie, then ... nothing. Just a blank screen, no video

[Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Alan MacDougall
Compare these two situations: class SuperClass { private var list:Array; public function SuperClass() { list = new Array(); } } class SubClass extends SuperClass { // when instantiated, the list variable is automatically initialized } This is as it should be. The

Re: [Flashcoders] Issues with Limelight/Streaming Video

2007-08-14 Thread Sean Scott
Will, Sounds like their RTMP port is allowing you to handshake but it's not pushing any kind of data. Have you tried using Charles to see what kind of data you are receiving? Hope this helps you've tried port 1935, 443 80? Hope that helps Sean On 8/14/07, Will McHenry [EMAIL PROTECTED]

Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Johannes Nel
the constructer gets invoked automatically (and its the only function which does all other overrides this is not the case for) but the super class's constructer is being called without arguments so whats happening on a code level is this super(); On 8/14/07, Alan MacDougall [EMAIL PROTECTED]

Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Hans Wichman
Hi, when the superclass has a default contructor without parameters, there is no need to call it explicitly. I'd like to turn it around though, no matter what or how you have defined them, always call them explicitly for clarity's sake and self documentation. greetz JC On 8/14/07, Alan

[Flashcoders] Q: Best solution for 360 pans in flash

2007-08-14 Thread moveup
After diving into Sandy recently, I was excited to see how easy it is to simulate QTVR like 360 panoramas. There are also a couple of 'closed' solutions out there, which are ok for non-coders, but not if you want to customize and add new features http://flashpanoramas.com/ and

Re: [Flashcoders] Issues with Limelight/Streaming Video

2007-08-14 Thread Johannes Nel
charles doe snot say anothing past the innitial connection also port 80 you need to use the rtmpt protocol On 8/14/07, Sean Scott [EMAIL PROTECTED] wrote: Will, Sounds like their RTMP port is allowing you to handshake but it's not pushing any kind of data. Have you tried using Charles to

Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Ian Thomas
On 8/14/07, Alan MacDougall [EMAIL PROTECTED] wrote: My understanding of inheritance is that I should not need to explicitly call the superclass constructor as long as I'm not overriding or extending that method of the superclass. What gives? Is it a language quirk? Nope, not a language

Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Alan MacDougall
Hans Wichman wrote: Hi, when the superclass has a default contructor without parameters, there is no need to call it explicitly. I'd like to turn it around though, no matter what or how you have defined them, always call them explicitly for clarity's sake and self documentation. So if the

Re: [Flashcoders] Issues with Limelight/Streaming Video

2007-08-14 Thread Will McHenry
Sean, Johannes, thanks for your reply. We've double checked all the ports, and have made sure they're open. The rtmp's (for limelight at least) default port is 1935 - if that's blocked, it switches to http and uses port 80. 443 is also open. We'll try charles out and see what we get with that.

[Flashcoders] as3 ColorMatrix class

2007-08-14 Thread quinrou .
Hi all, I after the AS3 versino of the grant Skinner ColorMatrix class ( http://www.gskinner.com/blog/archives/2005/09/flash_8_source.html ). Has anyone converted to AS3? If yes could you share it? many thanks Seb ___

Re: [Flashcoders] AS 2.0 constructor inheritance

2007-08-14 Thread Matthias Dittgen
Interesting thread, Alan! What is ECMA Specification saying to that situation? Matthias slightly OT, but I have noticed some time ago, that Flash IDE claims the super() call to be the first line in the constructor of the extending class. But I noticed to the same time, that when compiling with

Re: [Flashcoders] Issues with Limelight/Streaming Video

2007-08-14 Thread jean philippe
try flv HOSTING 2007/8/14, Johannes Nel [EMAIL PROTECTED]: charles doe snot say anothing past the innitial connection also port 80 you need to use the rtmpt protocol On 8/14/07, Sean Scott [EMAIL PROTECTED] wrote: Will, Sounds like their RTMP port is allowing you to handshake but

[Flashcoders] no list updates for several days!

2007-08-14 Thread dave matthews
hi all, Haven't seen a list posting from flashcoders for several days... wondering what's up? Maybe hotmail is stopping the list. Seems weird, any feedback appreciated. Thanks, Dave Matthews _ Booking a flight? Know when

Re: [Flashcoders] no list updates for several days!

2007-08-14 Thread Hans Wichman
Hi, the list is working m8, lots of posts coming in. You can check this for yourself in the online flashcoder archive, all posts can be found there as well. greetz JC On 8/14/07, dave matthews [EMAIL PROTECTED] wrote: hi all, Haven't seen a list posting from flashcoders for several days...

RE: [Flashcoders] as3 ColorMatrix class

2007-08-14 Thread Jack Doyle
Seb, there's something very similar built into the TweenFilterLite class which is available in AS2 and AS3. It lets you tween contrast, hue, saturation, brightness, colorization, threshold, etc. as well as other filters like glows, blurs, etc. www.TweenFilterLite.com (there's a link to the AS3

RE: [Flashcoders] no list updates for several days!

2007-08-14 Thread Brenda Hicks
I had the same problem last week and then all of a sudden, a flood of messages. Mail programs... who can figure 'em? Regards, BH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hans Wichman Sent: Tuesday, August 14, 2007 10:13 AM To: [EMAIL PROTECTED];

RE: [Flashcoders] Q: Best solution for 360 pans in flash

2007-08-14 Thread Jesse Graupmann
http://www.visicam.de/ - Panorama360 ( Papervision3D ) http://www.popforge.de/ - CubicVR360 ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Classes 101 [was: Version control and Flash ]

2007-08-14 Thread T. Michael Keesey
On 8/14/07, Hans Wichman [EMAIL PROTECTED] wrote: Just on a side note, its not just -ow-what-shall-we-use-today- its a more fundamental conceptual issue as well, such as are you dealing with a is-a relationship or has-a or is-part-of-a etc. I don't know if better class hierarchies change

Re: [Flashcoders] as3 ColorMatrix class

2007-08-14 Thread quinrou .
Thx Jack will take a look at it. On 8/14/07, Jack Doyle [EMAIL PROTECTED] wrote: Seb, there's something very similar built into the TweenFilterLite class which is available in AS2 and AS3. It lets you tween contrast, hue, saturation, brightness, colorization, threshold, etc. as well as other

[Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
I'm thinking there's no real answer to this question, but here goes: Is there any way for a subclass of Error to know whether it has been caught? This is working in AS2, but if AS3 is different, it would be good to know. My [un]bright idea was to have an ErrorHandler class record any uncaught

Re: [Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread T. Michael Keesey
This isn't a foolproof idea, but you could do something like this: package myErrors { class TrackedError extends Error { function TrackedError(message:String = , id:int = 0) { super(message, id); _instances.push(this); } public static function

Re: [Flashcoders] Fonts on a Mac not working in Flash

2007-08-14 Thread Andrew Guldman
Does anybody have any idea why this happens? Can anybody provide any suggestions for identifying which font names differ within Flash? Any way we might determine this programmatically? Thanks! Andrew Mario Piepenbrink wrote: just for fun some of the fonts get named differently when in the

Re: [Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
What I was after was a little different. I was originally hoping to have uncaught errors trigger a loadvars object to send a message to a php page using error_log(). I did come up with an alternative, though I have a nagging feeling that I'm utilizing a bug to do what I want -- unless a parent

Re: [Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread Hans Wichman
Hi, ive implemented this for AS2: http://www.objectpainters.com/downloads/globalerrorhandler.zip Basically, each exception subclasses RuntimeException. Each time a RuntimeException is created, is it scheduled to be displayed to the user after the current call unwinds, unless the exception is

Re: [Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread Hans Wichman
ps i noticed they are still old sources online, but the general principle is the same, contact me offlist if you'd like the latest sources of that example. On 8/14/07, Hans Wichman [EMAIL PROTECTED] wrote: Hi, ive implemented this for AS2:

[Flashcoders] IOError on https under IE7

2007-08-14 Thread Ammon Lauritzen
I have a swf that is being loaded off of an https server. As it fires up, it attempts to call a simple authentication service that lives on the same host. This works fine under Firefox, Opera, and Safari. However, under IE, it throws an exception: [IOErrorEvent type=ioError bubbles=false

Re: [Flashcoders] Random Question about throwing/catching Error

2007-08-14 Thread Jer Brand
I get the jist of it, and it make sense. Originally I was just hoping for some magical trigger or hidden method of the Error object, or some side effect of catch, but I'm guessing that's entirely handled by the vm. This makes sense though I'm still looking at my class above saying How can a