[Flashcoders] flash 8 security hint

2006-01-11 Thread Cédric Muller
Could anyone tell me why A.swf can load B.swf, but B.swf cannot call scripts (php) ? all of these (A.swf, B.swf and scripts.php) are sitting on http://www.mydomain.com/anyDir/ and are Flash 8 swfs (though it is also failing with Flash 7 swfs. Works with Flash 6) I know about local OR

Re: SV: [Flashcoders] flash 8 security hint

2006-01-12 Thread Cédric Muller
about your object tag? Does it contain the following param element ? param name=allowScriptAccess value='allways' /Martin Fra: [EMAIL PROTECTED] på vegne af Cédric Muller Sendt: on 11-01-2006 15:51 Til: Flashcoders@chattyfig.figleaf.com Emne: [Flashcoders

Re: SV: SV: [Flashcoders] flash 8 security hint

2006-01-12 Thread Cédric Muller
on https or so? Cheers Martin -Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] På vegne af Cédric Muller Sendt: 12. januar 2006 09:19 Til: Flashcoders mailing list Emne: Re: SV: [Flashcoders] flash 8 security hint Hi Martin! I tried and nothing new

Re: [Flashcoders] flash 8 security hint

2006-01-13 Thread Cédric Muller
Hi Johan, I will actually do a round up before posting the details to the list (project is very big (lots of SWFs) and confidential) Thanks for your suggestion. Cedric As far as I know Player 8 security restrictions while loading applies to movies of all versions. IT could also be a

Re: [Flashcoders] Documenting my code

2006-01-19 Thread Cédric Muller
I second VisDoc (rocks) BLDoc for PC VisDoc for OS X (rocks) On 1/18/06, Jobe Makar [EMAIL PROTECTED] wrote: Hi guys, I've recently purchased AS2Doc to generate documentation from my ElectroServer class file. The software works pretty well, but it appears the Mirell (company that owns

Re: [Flashcoders] Dynamic class creation-thoughts?

2006-01-30 Thread Cédric Muller
I may be idiot, but how would you generate a menu's items given dynamic data ??? I cannot but see dynamic instantation, can I ? same for games, same for MP3 players (and video), same for whatever almost anything ? cedric I don't see the ish. If you're making a shooter game and have

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
??? blurFilter=very smooth convultionFilter=shaky and unstable much better with Convolution filter :) On 1/31/06, Mike Mountain [EMAIL PROTECTED] wrote: OK you'll need a movie 768x768 - copy this code on to frame 1 etc. with blur filter: [/as] import flash.filters.*; import

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
I am using Flash 8 on OS X 10.4 ?? really strange ... much better with Convolution filter :) On 1/31/06, Mike Mountain [EMAIL PROTECTED] wrote: OK you'll need a movie 768x768 - copy this code on to frame 1 etc. with blur filter: [/as] import flash.filters.*; import flash.geom.*; import

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
results blurFilter=shaky and unstable convultionFilter=svery smooth can anybody tell me why? On 1/31/06, Cédric Muller [EMAIL PROTECTED] wrote: ??? blurFilter=very smooth convultionFilter=shaky and unstable much better with Convolution filter :) On 1/31/06, Mike Mountain [EMAIL PROTECTED

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
me why? On 1/31/06, Cédric Muller [EMAIL PROTECTED] wrote: ??? blurFilter=very smooth convultionFilter=shaky and unstable much better with Convolution filter :) On 1/31/06, Mike Mountain [EMAIL PROTECTED] wrote: OK you'll need a movie 768x768 - copy this code on to frame 1 etc

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
I am still puzzled about that thing ... (unbalanced results on PC vs MAC) ... I notice between lines 29 33 of your convolution version you have pushed a blurFilter into the filterArray It's blurring the individual item - the second time around blurs the entire canvas. This still means

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
ok, thanks Conclusion: convolution filters plainly DON'T WORK on macs ... (dualcore 2ghz!) I've stuck another example here: http://www.flashcool.com/blur.html On the pc, as Mike said, convolution is faster, but if you need more than a subtle blur may not be what's required. On 1/30/06,

Re: [Flashcoders] ConvolutionFilter performance

2006-01-31 Thread Cédric Muller
blur filter time : 7295 convolution 3x3 (not very blurry though) : 31391 convolution 5x5 (more blurry but still not very) : 56559 no filter : 7265 Mac OS 10.4.4 DualCore G5 2x2Ghz :-)) so shitty I have now have to go for a sleep ... or book a room in a sanatorium oh oh you want a scoop ?

Re: [Flashcoders] ActionScript equivalent of embed/object BASE tag

2006-02-02 Thread Cédric Muller
did you try '_lockroot' ? cedric You could do it manually. Create a variable and prepend(not a word!) it to all your loadMovie(), load() etc. calls. Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jan Schluenzen Sent: 02 February 2006 10:23 To:

Re: [Flashcoders] mx.utils.ClassFinder.findClass problem

2006-02-02 Thread Cédric Muller
because you call it directly new sk.whatever.linux.AClass() calls the class directly, as you specify the path, it doesn't need to import it before ... another way would be to: import sk.whatever.linux.AClass; var myAClass = new AClass(); would work too ... now regarding your idea, if

Re: [Flashcoders] mx.utils.ClassFinder.findClass problem

2006-02-02 Thread Cédric Muller
do you know which ones weren't found (the 3 classes) ? but Ian, why it find other classes, i dont instantiate any of class, that code you can see in email is everything, and it has found 15 classes, but 3 doesnt find Classes found: 15 Classes not found: 3 Why? On 2/2/06, Ian Thomas [EMAIL

Re: [Flashcoders] mx.utils.ClassFinder.findClass problem

2006-02-02 Thread Cédric Muller
in your .as file (main class, or classesManger,...) you can simply put references to the classes you will/should use ... I did it once the following way: /** * setPackagesToImport * fake method, never gets called. just here for 'import' + reference purposes * */ private function

Re: [Flashcoders] mx.utils.ClassFinder.findClass problem

2006-02-02 Thread Cédric Muller
but please, remember that this is a Flash Hack with a lot of whack and crack :) you're welcome! cedric This works Cedric, thank you very much :) All of you On 2/2/06, Cédric Muller [EMAIL PROTECTED] wrote: in your .as file (main class, or classesManger,...) you can simply put references

Re: [Flashcoders] Seeking a bit of drawing API inspiration..

2006-02-02 Thread Cédric Muller
please. have a look here: http://www.kaourantin.net/2005/08/alpha-masking-goodness-in-flash- player.html worth everything ;) take care cedric Hi Mike, Yes, not flash 8. :-) Otherwise that would have been my first stop. :-) Although come to think of it I've no idea whether/how bitmap

Re: [Flashcoders] Best (fastest/memory efficient) way to animate bitmaps

2010-09-09 Thread Cédric Muller
but for frame by frame animation (ie: one bitmap per frame), the method Zeh said is the fastest... all bitmaps on stage, visible=true or visible=false var currentFrame:int = 0; var bitmaps:Array = [ ... push the bitmap instances into this array ... ]; function enterFrameLoop (e:Event):void {

Re: [Flashcoders] Left shifting input text as user types is unreliable

2010-09-22 Thread Cédric Muller
Out in the wild (read: dumb question): Do you have some player version detection in your tests ? (it could be that the third computer has not FP9 installed?) hth, Cedric I've been working on an AS3 project with some input text - using CS5 targetting FP 9. It works nicely but I have a few

Re: [Flashcoders] Left shifting input text as user types is unreliable

2010-09-22 Thread Cédric Muller
And, by any chance, are any fonts not embedded ? (another halfy dumb question) 22/09/2010 19:28, Paul Andrews wrote : On 22/09/2010 17:26, Cédric Muller wrote: Out in the wild (read: dumb question): Do you have some player version detection in your tests ? (it could be that the third

Re: [Flashcoders] Inheritance and abstract classes

2010-09-25 Thread Cédric Muller
IS-A = Inheritance HAS-A = Composition Inheritance: Rose extends Flower Composition: MyGarden.rose = new Rose() hth, Cedric I want it to match examples as: Bathroom HAS-A Baththub. Cat IS-A Feline. Cat IS-NOT-A Simalian, but Cat HAS-A Simalian owner. MovieClip IS-A Sprite, but a Sprite

Re: [Flashcoders] NOOBed - wtf basic procedural tween skipping

2010-09-29 Thread Cédric Muller
We, almost everyone here, feel deeply sorry for what you are observing. As Thom said, we ve all been on /that/ path some for years now anyway, this might help you understand what is going on with Flash Player engine

Re: [Flashcoders] FileReference

2010-10-21 Thread Cédric Muller
don't, but given your example I /think/ that's logical: var file:FileReference(); - this is not instanciation var file:FileReference = new FileReference() should be better and by doing such you shoudn't see the error message I have two files where I use: var file:FileReference(); var

Re: [Flashcoders] test

2011-01-12 Thread Cédric Muller
:D I like the talking monkey concept ;) ahahah. ok i promised a client 3d dancing and talking monkeys integrated with facebook and twitter, i've got a facebook account but i'm a bit stuck with the rest On 12 January 2011 10:08, Glen Pike g...@engineeredarts.co.uk wrote: No,

Re: [SPAM?] Re: [Flashcoders] Trouble with é

2011-04-04 Thread Cédric Muller
You have to actually embed the desired chars (ie: you have to include: é) hth, Cedric (actually: Cédric ;) ) No Kerry...the actionscript name is ArialReg which is the regular vers of Arial. ArialBold is Arial Bold. Fonts are embedded properly and work everywhere in the app except for that

Re: [Flashcoders] Unknown error optimizing byte code.

2011-04-27 Thread Cédric Muller
Hi, It happened to me once with a big project: Flash would break during compilation and throw this error. What worked for me: I kept removing classes from my project until Flash would compile the file correctly. Then, I worked around the way I was using some classes (that were central to the

Re: [Flashcoders] Unknown error optimizing byte code.

2011-04-27 Thread Cédric Muller
You could also try searching google with 'White screen of death' or 'WSOD'. This leads to some technical insight. I think Keith Peters was the first to experience this /thing/. Cedric I am starting to see this error more and more when testing apps: Line 15005: Unknown error

Re: [Flashcoders] webcam wackiness...

2011-09-19 Thread Cédric Muller
Doesn't work for me, Mac, Safari 5.1 and Flash Player 10.3.181.14 Could you drop the 'if (stage) init' line ? (I am asking because I have plenty of webcam examples, and they do work) hth, Cedric hey all, i want to confirm that this... http://46.4.226.29/camtest/ does not work on a

Re: [Flashcoders] webcam wackiness...

2011-09-19 Thread Cédric Muller
appears to be broken. what's up? 2011/9/19 Cédric Muller flashco...@benga.li Doesn't work for me, Mac, Safari 5.1 and Flash Player 10.3.181.14 Could you drop the 'if (stage) init' line ? (I am asking because I have plenty of webcam examples, and they do work) hth, Cedric hey all, i

Re: [Flashcoders] webcam wackiness...

2011-09-19 Thread Cédric Muller
i get one Camera.muted from teh status event and then nothing. no dialog or anything. same behaviour being reported on macs (not got one here). just outside rome these days man, you across the border in the mountains still? 2011/9/19 Cédric Muller flashco...@benga.li hey ya tom! still

Re: [Flashcoders] webcam wackiness...

2011-09-19 Thread Cédric Muller
yes, it works ok cheers for the testing, does the simple script work for you in a browser? 2011/9/19 Cédric Muller flashco...@benga.li I don't have GoogleTalk plugin, actually I am not Google wavy, so I have nothing 'Google' on my mac. I don't even have Chrome installed. Just tested

Re: [Flashcoders] webcam wackiness...

2011-09-20 Thread Cédric Muller
://46.4.226.29/camtest/flash9/ this does not work in chrome v 14 on a pc or on a host of macs. anyone? On 19 September 2011 16:05, tom rhodes tom.rho...@gmail.com wrote: anyone got any ideas why this script is failing on so many machines? 2011/9/19 Cédric Muller flashco...@benga.li yes

[Flashcoders] TLF (TextLayout) markup (or even FXG markup) to PDF: hints/help/advice/save me

2011-09-21 Thread Cédric Muller
Does anyone know if Adobe did a TextLayout FXG markup to PDF converter ? (that would be a blast to envision such txt layout without building a bridge towards PDF !! Seriously, I am about to whine as I didn't find anything ... just wondering what to do next) What I have found, and I am not

Re: [Flashcoders] Flash on top of flash

2011-09-21 Thread Cédric Muller
SWF on top of another SWF: in Flash or in HTML ? In Flash, it could be easier, by loading the SWF into a container, and doing a '_lockroot' (if AS2) hth, Cedric You're pretty much guaranteed some weirdness in the display. I was able to get this working, in a few latest-greatest browsers,

Re: [Flashcoders] Flash on top of flash

2011-09-21 Thread Cédric Muller
overlapping multiple swf objects embedded in an html page. .m 2011/9/21 Cédric Muller flashco...@benga.li: SWF on top of another SWF: in Flash or in HTML ? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] Question about SWC elements for use in Flex

2011-09-21 Thread Cédric Muller
what if you do 'var s:Sphere = new Sphere() as IVisualElement' ?` Apologies but I haven't done any Flex in a few years and I am getting back into it. I created a FLA and then created some visual assets in the Library, with Linkage names. I then published a SWC of these. In my Flex app

Re: [Flashcoders] TLF (TextLayout) markup (or even FXG markup) to PDF: hints/help/advice/save me

2011-09-22 Thread Cédric Muller
. On 9/21/11 8:00 AM, Cédric Muller wrote: Does anyone know if Adobe did a TextLayout FXG markup to PDF converter ? (that would be a blast to envision such txt layout without building a bridge towards PDF !! Seriously, I am about to whine as I didn't find anything ... just wondering what to do

Re: [Flashcoders] vb.net and flash Relation??????

2011-10-06 Thread Cédric Muller
Hello, I don't know if that's feasible, but besides 'externalInterface' you could have a try with flash.net.Socket http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/Socket.html hth, Cedric can u help me to find great solotion to make good relation between vb.net

Re: [Flashcoders] Adobe ceases development on mobile browser Flash

2011-11-10 Thread Cédric Muller
I may think that devs won't do the same mistake again. Throw GIFs in your face and cash in thousands of dollars. LOL, what else ? totally, that's why i've been learning haxe for ages :) i'm still dissapointed that adobe have pulled away from supporting flash on mobile devices though, as

Re: [Flashcoders] Switching to HaXe?

2011-12-01 Thread Cédric Muller
at the moment. 2011/12/1 Cédric Muller flashco...@benga.li :) What if we acknowledge the fact that HaXe is a one man efforts. Then, we can compare this man (Nicolas Cannasse) with Adobe's efforts and teams of tens of tens of people. There, there my ladies and gents, there we have it. Shame

Re: [Flashcoders] Image grid with zoom effect

2012-01-03 Thread Cédric Muller
stage 745 stage 705 stage 679 stage 674 stage 673 I need to do something only once after the last changes where stage is 673. How Resize Event can help in this situation? 3 января 2012 г. 16:46 пользователь Cédric Muller flashco...@benga.li написал: or you could setup

Re: [Flashcoders] Real System Make Money Easy 2012 Trend‏‏‏‏‏

2012-03-12 Thread Cédric Muller
As they say in their commercial: This is called Market Research LOL, funniest mail for weeks. Point 1 and 2 are hillarious (Er, wait I do own an iPhone, does it count? I don't know if I have access to the internet, but I certainly have access to the AppStore+iTunes). Bring on the pigeons banded

Re: [Flashcoders] AIR WebKit vs iTumes WebKit

2012-05-31 Thread Cédric Muller
Apple is doing all it can in order to make Flash fail (with some success), so that's certainly the case here. Sorry not to have more information. Is there a conflict between AIR and iTumes on Windows? I've been getting sporadic crashes on Windows 7 from WebKit.dll when using HTMLLoader.

Re: [Flashcoders] Actionscript lives on.

2012-09-18 Thread Cédric Muller
Jon Bradley wrote : The problem of flash for mobile is as much about politics and protecting the Apple appstore than anything else -it seems to me that flash was a threat by allowing apps to be produced bypassing Apples appstore. It is the problem of HTML5 too, since all these may happen in

Re: [Flashcoders] Actionscript lives on.

2012-09-18 Thread Cédric Muller
/raster and when it comes to processing, pure math is quicker. Karl Sent from losPhone On Sep 18, 2012, at 4:48 AM, Cédric Muller flashco...@benga.li wrote: Jon Bradley wrote : The problem of flash for mobile is as much about politics and protecting the Apple appstore than anything

Re: [Flashcoders] Actionscript lives on.

2012-09-18 Thread Cédric Muller
Karl DeSaulniers wrote : Flash is not dead. It's hibernating. . With SOME of the fault in the way flash handles things. Adobe was a little confusing on that one. It somehow proved it lacked of vision, and failed to capitalize the 'money grabbing' process that was needed for Mankind

Re: [Flashcoders] Re: OT: Interactive conferences (Merrill, Jason)

2013-01-25 Thread Cédric Muller
Man!!! A DM demo, downloaded it, reading it. THANKS! (this is ... like the best opportunity for me to jump through demo code). Cedric Hello mates, I think that the list is missing one of the most important js library for flashist of of there, that is the createjs http://www.createjs.com/

Re: [Flashcoders] Flash to animated gif without looping

2013-04-26 Thread Cédric Muller
Hello, You simply cannot. What is possible is to export the images comprised in the GIF to single frame images, write a small JS that loads them and reads each image and plays them. Then you can set a loopCount or whatever. hth, Cedric Hi The client wants to convert flash animation to gif

Re: [Flashcoders] Flash to animated gif without looping

2013-04-26 Thread Cédric Muller
…. or maybe Flash's older sister Photoshop (is that a girl ?) can handle it when you set the export options …. hth Le 26 avr. 2013 à 08:45, natalia Vikhtinskaya a écrit : Hi The client wants to convert flash animation to gif animation. Flash animation has stop() at the end. This is simple

Re: [Flashcoders] Adobe Flash future

2013-05-08 Thread Cédric Muller
Flash will be here for the years to come. Gladly, it isn't the sexy thing where trendy buzzers are. So, there are less projects, but projects are still flowing here, at least on the top high client part. I have no future, but Flash has one. Just look at all those HTML5 bad designs ;) Le 8 mai

Re: [Flashcoders] Stolen Laptop: Adobe Support Laughable

2013-05-15 Thread Cédric Muller
Yep :( But the Cloud thing is quite interesting (I would consider the upgrade). Making users captive in a creative eco system. Cedric Le 15 mai 2013 à 05:51, John R. Sweeney Jr. a écrit : If they won't help you, that's probably your best bet. Just get CS4 disk or the digital files (which

Re: [Flashcoders] (no subject)

2013-05-16 Thread Cédric Muller
fishcoder would have been a cool word in a cool world a godish thing to do just fuck with that flshcoder shit, cant get rid of that group no metter what. how bout now? thanks. On Thu, May 16, 2013 at 12:43 AM, Kerry Thompson al...@cyberiantiger.bizwrote: It sounds like you need to

Re: [Flashcoders] AS3 finally..

2013-05-21 Thread Cédric Muller
For some more insights (though ... not much .. .and hey baby, is that Java over there ?) you can check this thread (they are speaking about private and protected classes, but the reading is interesting) http://www.coderanch.com/t/410134/java/java/private-protected-class hth, Cedric Why? The

[Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
So I have this complex TLFTextField vortex where I try to let user format text with … Bullet Lists for example. So … so so …. I have got this overly complex and deep question to whether some did write this API or was it thrown together by some spaghetti monster ? (ok, this is some intentional

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
further info, even though I suspect that I am the last one on earth using this framework ……… // init var fmt:TextLayoutFormat = new TextLayoutFormat(); var tmpInt:ISelectionManager = field.textFlow.interactionManager; var editManager:EditManager = new EditManager();

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
Thanks :) Yep, my application _requires_ TLF (left to right, right to left, top down (korean), ligatures, …. and so on, that's is a big circus). The worst part is that I managed implementing everything else. I think I may be off for a quick exit if I understand how I can get a 'fake'

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-27 Thread Cédric Muller
I noticed that Flash CC no longer supports TLF I bet all my TLF code that Flash CC 8 will come with a simple timeline to draw things on … remember Flash 3 ? Not far :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread Cédric Muller
:) I feel so alone with that TLF Sorry Cedric, I didn't ever make the switch to TLF once I'd dabbled with it a bit, so I can't help you out there. Crazy they have dropped it from CC though and yeah I do remember flash 3 :) On 27 August 2013 23:01, John R. Sweeney Jr.

Re: [Flashcoders] TLFTextField drowning me ...

2013-08-28 Thread Cédric Muller
:D hi there.China Team Test Change http://sourceforge.net/adobe/tlf/svn/604/tree/ doesn't look like anyone has touched it for a couple of years. maybe you can create the method you want? On 28 August 2013 10:08, Cédric Muller flashco...@benga.li wrote: :) I feel so alone

Re: [Flashcoders] Ask for Windows Phone support for AIR

2014-02-06 Thread Cédric Muller
I do tend to consider Microsoft as being a pain when it comes to standards, working things, and functionalities. I hope Linux does overrun these proprietary OSs etc. It really gets tense. I never thought I would troll this long about one single company, but it proves me everyday how bad their

Re: [Flashcoders] Video on IOS

2014-03-13 Thread Cédric Muller
John, are you using StageVideo ? If positive, then that’s the reason why Flash content will _always_ appear on top of the Stage. (I may be offroads, as .. always) hth, Cedric Le 13 mars 2014 à 09:32, Paul A. p...@ipauland.com a écrit : I have made a few IOS projects using video and not really

Re: [Flashcoders] Flash to HTML

2014-06-21 Thread Cédric Muller
Hi David, I have been playing with a lot of HaXE, createjs, base html5 canvas and, of course, Flash these last months. Whatever you can do in AS3, you can do it with HaXE. And there are some additional benefits, but these are just developer bonuses. From what I can say, JS+HTML canvas

Re: [Flashcoders] Flash to HTML

2014-08-08 Thread Cédric Muller
I second the GSAP proposal, and regarding point 3) I never had Haxe rebuild my HTML file, so I am wondering how this happened. Since I told you I would show my tests with HTML5 vs Flash, here they are: FLASH http://www.benga.li/mcd/versailles/banner_de_chili_1600x490.html HTML