RE: [Flashcoders] how are they doing this? Papervision3d or pre-rendered 3d?

2007-09-17 Thread Patrick Matte|BLITZ
Yeah that distortion feels like a papervision plane with not enough triangles BLITZ | Patrick Matte - 310-551-0200 x214 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Welch Sent: Sunday, September 16, 2007 7:49 PM To:

[Flashcoders] Going Crazy :( - Strange problems with height and width before _rotation change

2007-09-17 Thread julian atienza
Hi everybody. I'm going crazy with this problem. Place in stage one rectangle (f.e with 200x100 dimensions) named mcRectangle. Put this as2 code trace(Original Size : + mcRectangle._width + , + mcRectangle._height); mcRectangle._rotation = 90; trace(BEFORE ROTATE 90 DEGREES: +

Re: [Flashcoders] protecting graphics

2007-09-17 Thread Stanford Vinson
I like the way you think! But if using for example the Bitmap class for printing and saving images on stage is any indication of CPU usage for this type of solution, we are looking at unacceptably long loading times for most users. It may work on smaller maps. Has anyone seen a solution similar to

Re: [Flashcoders] protecting graphics

2007-09-17 Thread Stanford Vinson
I like the way you think! But if using for example the Bitmap class for printing and saving images on stage is any indication of CPU usage for this type of solution, we are looking at unacceptably long loading times for most users. It may work on smaller maps. Has anyone seen a solution similar to

Re: [Flashcoders] how are they doing this? Papervision3d or pre-rendered 3d?

2007-09-17 Thread Jon Bradley
Whether they blit or not, everything is still a pre-rendered sequence, except the text. The clip layout is identical every time. I don't believe any distorian or 3d library API was used (ie PV3D or Sandy). There are a whole bunch of pre-rendered sequences that they are applying color

[Flashcoders] [JOB] Parlay is looking for Flash Developers

2007-09-17 Thread Mark Lapasa
[Position Summary] Flash Developers will be responsible for integrating unique solutions within our Flash Gaming Suites. Parlay’s games use Flash front-ends to talk with Java servlet back-ends, this position will increase the size of our Flash development team. The position strongly emphasizes

Re: [Flashcoders] Going Crazy :( - Strange problems with height and width before _rotation change

2007-09-17 Thread o renken
hi julian, i think you have to stack it in another (parent) MC. Then you can rotate the rootMC and scale the childMC like that: MC_toBeRotated._rotation=45; MC_toBeRotated.MC_toBeScaled._xscale=50; MC_toBeRotated.MC_toBeScaled._yscale=50; that should to it! greetz olee 2007/9/17, julian

Re: [Flashcoders] Going Crazy :( - Strange problems with height and width before _rotation change

2007-09-17 Thread julian atienza
Thanks. I have to redesign the app cos i have another things in _parent. I made one fast-solution too since i only have rotation of 90, 180, 270, 0 angles - change to _rotation 0 - make changes in _width and _height thinking in transforming it later to the appropiate rotation degree - restore

Re: [Flashcoders] exit screen button script

2007-09-17 Thread Pedro Taranto
fscommand(quit); //to close the projector -- Pedro Taranto ___ 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

[Flashcoders] Voicerecording with flash?

2007-09-17 Thread Peter Oliver Geller
Hi all together, Did somebody know what I need to do a voice recording with flash. I heard that it is only possible with a flash media server? Is that right?, don’t find any information about that topic what was useful for me :( Maybe someone have an idea? Regards Peter

Re: [Flashcoders] exit screen button script

2007-09-17 Thread Eric Walton
Thanks i fixed it a couple of days ago. Eric On 9/17/07, Pedro Taranto [EMAIL PROTECTED] wrote: fscommand(quit); //to close the projector -- Pedro Taranto ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread ekameleon
Hello :) About FMS you can read the documentation : http://www.adobe.com/support/documentation/en/flashmediaserver/ And in the client side Actionscript reference : http://livedocs.adobe.com/fms/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part_CS_ASD.html Search the NetConnection, NetStream,

Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread John laPlante
I wouldn't sweat this. I sat down with someone and got audio recording with Flash Media Server in about 2 hours. Here is the original script that I wrote with a few buttons on the stage. The documentation that was mentioned is very valuable. But, for simply playing media or recording, the

Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread Jobe Makar
Hi, This sort of thing is coming up a lot lately! The list of servers tha can provide what you need are: Flash Media Server ElectroServer 4 Red 5 Wowza Jobe Makar http://www.electrotank.com http://www.electro-server.com phone: 252-627-8026 mobile: 919-609-0408 fax: 919-882-1121 - Original

[Flashcoders] XSD Flash Object - tutorial / article?

2007-09-17 Thread Glen Pike
Hi, Has anyone read, or written, an article showing howto use XSL to write flash over an XML document containing the data it will then use? Lost my bookmark... Thanks Glen ___ Flashcoders@chattyfig.figleaf.com To change your

[Flashcoders] Setting percentage to circular preloader

2007-09-17 Thread Omar Fouad
Alright, I wrote some code that draws a circle and I added an easing effect using Tweener as follows: var Circle:MovieClip = _root.createEmptyMovieClip(Circle, 2); function drawC(centerX, centerY, radius, sides){ Circle.per = 0; Circle.lineStyle(4,0xFF,100); Circle.moveTo(centerX +

[Flashcoders] Command-line compiler to change library contents

2007-09-17 Thread Sam Edwards
Hello All! I need to be able to deploy an entirely self-contained .swf (no network access, no local access... i don't know why not, I've just been told that's the way it is) BUT I need to be able to run a script that will swap out images that exist as library symbols, very Generator-like (those

[Flashcoders] complex button action

2007-09-17 Thread noentourage
I have a movieClip that I move up or down based on it's curreny _y + a specified pixel height using Tweener code to move the movieClip smoothly. The action is called onRelease of an arrow movieClip. The client would now like it to constantly scroll onPress after holding the mousedown for say...1

Re: [Flashcoders] Command-line compiler to change library contents

2007-09-17 Thread Mark Winterhalder
Sam, have a look: http://osflash.org/swfmill HTH, Mark On 9/17/07, Sam Edwards [EMAIL PROTECTED] wrote: Hello All! I need to be able to deploy an entirely self-contained .swf (no network access, no local access... i don't know why not, I've just been told that's the way it is) BUT I need

Re: [Flashcoders] complex button action

2007-09-17 Thread elibol
Hi, I don't think you'll be able to accomplish a smooth solution using the Tweener class as you will need to know the *change* for the easing effect to look nice. You cannot know the change since the user will actually be changing it. The way it would be done with the Tweener is to set it to ease