RE: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread Cor
Your gateway isn't there ? -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens chas warn Verzonden: zaterdag 26 april 2008 22:24 Aan: Flashcoders@chattyfig.figleaf.com Onderwerp: [Flashcoders] amfphp 1.9 issue Hello ... I'd appreciate any help on this

RE: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread Bernard Visscher
I think it's a wrong .htaccess :) -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Cor Verzonden: zondag 27 april 2008 8:42 Aan: 'Flash Coders List' Onderwerp: RE: [Flashcoders] amfphp 1.9 issue Your gateway isn't there ? -Oorspronkelijk bericht-

Re: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread chas warn
Hello... When I type in carlosinla.com/amfphp/gateway.php I get a blank screen. This is my .htaccess file RewriteEngine On RewriteCond %{HTTP_HOST} ^carlosinla.com RewriteRule (.*) http://www.carlosinla.com/$1 [R=301,L] ... gateway.php file ?php include

Re: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread Cédric Tabin
Hello, Check that your server use's PHP 5.2.5 ! It's written into the documentation that amfphp won't work if a lower version is used... Regards, Cedric On Sat, Apr 26, 2008 at 10:24 PM, chas warn [EMAIL PROTECTED] wrote: Hello ... I'd appreciate any help on this issue.Carlos 1. I can

Re: [Flashcoders] drawing a tube/cylinder with as

2008-04-27 Thread Pedro Kostelec
I believe perpervision should do the work but i am too lazy to learn using it, i think i'll try flashsany if i don't find out how to do it myself. If anyone know how to code it please help a bit. I love maths, but i can't figure out how to code it Thanks On Sun, Apr 27, 2008 at 1:50 AM,

Re: [Flashcoders] amfphp 1.9 issue

2008-04-27 Thread chas warn
I made some progress on this. When I opened carlosinla.com/amfphp/gateway.phpin Internet Explorer I got a 500 error. Googled 500 error amfphp and somebody recommended disabling .htaccess and so I did. Now when I load the above url - it says that it is installed correctly. Go figure.

[Flashcoders] Tweening alpha value of a TextField

2008-04-27 Thread Patrick Jakub Jankun
Hi Everyone, Im fooling around with the HydroTween and Go, what I noticed, that if I want To tween the alpha value from 0 to 1 or 1 to 0. Tweeninig the alpha property won't work on TextFields :| Is there a way to convert an TextField to a graphic and make this tweening work or am I doing

Re: [Flashcoders] drawing a tube/cylinder with as

2008-04-27 Thread Glen Pike
Hi, You can cheat with cylinders. I did a similar kind experiment in AS1 a long time ago with something similar, but did not draw the lines between shapes. You are welcome to look at the code - it is fairly object oriented, but may need some tweaking - take a look at the Spherus

Re: [Flashcoders] Tweening alpha value of a TextField

2008-04-27 Thread Matt S.
I know with Fuse in AS2, and Tweener in AS3 (the one's I've used) that an alpha tween can be applied directly to a TextField without any problem. Are you embedding your fonts? Not embedding fonts on dynamic textfields is often a cause of problems. Can you paste your code? .m On Sun, Apr 27, 2008

Re: [Flashcoders] Tweening alpha value of a TextField

2008-04-27 Thread Patrick Jakub Jankun
I'm generating that TextField from script, so I don't know exectly how to use embed font on it, but you got surely the point :-) Totally forgot about Dynamic text/Embed Fonts combo. Like I said, I was just fooling around at this stage and learning stuff. For now im not sure how to use embed fonts

Re: [Flashcoders] Tweening alpha value of a TextField

2008-04-27 Thread eric e. dolecki
embed your font. in as3 a textfield is a displayObject and has an alpha property. If HydroTween is AS2 only, then you might need to wrap it in a movieclip (I haven't heard of HydroTween before) On Sun, Apr 27, 2008 at 8:42 AM, Patrick Jakub Jankun [EMAIL PROTECTED] wrote: Hi Everyone, Im

Re: [Flashcoders] Tweening alpha value of a TextField

2008-04-27 Thread Patrick Jakub Jankun
Thanks Eric, HydroTween is based on Go, as Go is not an Tweening engine, but an flexible base library for custom animation. I like this approach far more then an ready Engine. My AS3 Knowledge as for now is to small to get my hands dirty on Go, so I'm using HydroTween, that is build with Go and

[Flashcoders] URLLoader Class and some thinking

2008-04-27 Thread Patrick Jakub Jankun
Hello Everyone, I got another newb Question, I got an class (written with help of a friend) That Loads an .swf by simply calling a new instance of that class and giving The filename (URL), from there it goes all alone, with progress tracing and so on. Now I runned into a problem, as the Loader

[Flashcoders] JSFL open WindowSWF

2008-04-27 Thread Keith
Is there a way to open a WindowSWF IDE panel with JSFL? -- Keith H -- ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] URLLoader Class and some thinking

2008-04-27 Thread Andrei Thomaz
maybe this helps you: http://code.google.com/p/bulk-loader/ []'s andrei On Sun, Apr 27, 2008 at 4:00 PM, Patrick Jakub Jankun [EMAIL PROTECTED] wrote: Hello Everyone, I got another newb Question, I got an class (written with help of a friend) That Loads an .swf by simply calling a new

[Flashcoders] How to compare 2 dynamic Arrays

2008-04-27 Thread ACE Flash
Hi there, I have 2 dynamic Arrays, t1Array and t2Array, both of them need compare with sArray(standard array). I have to call Line 26 for each t2Array[n] = onCompare(sArray, t2Array[0]); is there any simply way to achieve this? so it could be looping for comparing all dynamic arrays?