[Flashcoders] fscommand launching of externals

2014-04-14 Thread Wenzler, Thomas
Hi John, Northcode made a little free tool called proxy (http://www.northcode.com/blog.php/2007/08/07/Conquering-FSCommand-EXEC-Part-1-Proxy, Download is down the page short before the comments section) that helps you with hiding the cmd window...might be useful. Regards, Thomas Mit besten

[Flashcoders] Read and save xml file on disk (natalia Vikhtinskaya)

2014-02-10 Thread Wenzler, Thomas
You might look at mProjector or zinc or something in that lane. AFAIK these have the additional classes to let you write txt or xml to the filesystem without further permission by the user. But this only works as executable Projector, not via Browser. Best regards, Thomas Mit besten Grüßen

[Flashcoders] AW: PDF files in Flash

2012-02-14 Thread Wenzler, Thomas
Hi Karl, May I ask if I can have your working example of displaying a HTML table in vanilla Flash? Or do you use any extra component, sort of a tableRenderer? I tried to put a simple table in both a textArea component and a textField to no avail... Regards Thomas --

[Flashcoders] AW: Flashcoders Digest, Vol 41, Issue 2

2011-02-03 Thread Wenzler, Thomas
QUOTE: -If the x posn isn't the right one move the movieclip, otherwise update the status Thank's, I coded this myself so I know what this line does ;-) Initially I was doing it to practise the ternary(spelled?)operator instead of if/else and stumbled over the code exec in trace. But you're

RE: [Flashcoders] [Job] Activescript 3 development

2011-02-02 Thread Wenzler, Thomas
QUOTE:Just curious, what's Activescript? Coding in a Hamster wheel perhaps ;-) ? Honestly I ggogled it and found it to be some php extension stuff Regards Thomas ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] 'trace' executes function

2011-02-02 Thread Wenzler, Thomas
Hi List, I just made a little experiment with this code... function setMovieClipX(mc,desiredCoordX):Boolean { var updated:Boolean=true; (desiredCoordX!=mc.x)?mc.x=desiredCoordX:updated=false; return updated; } trace(setMovieClipX(movieClip,286)); ...and found to my utmost

[Flashcoders] Re: error msg

2010-12-20 Thread Wenzler, Thomas
Jason, Is that considered bad practice in lieu of code readability or is there another pitfall I just don't see? I'm only asking because in my short past of writing AS3 I called Event Handlers with an argument of 'null' sometimes to save on function single-liners like doIt(); Best Thomas

[Flashcoders] Re:AS3 thousand child objects in a container

2010-03-11 Thread Wenzler, Thomas
is this helpful for you? protected function onMouseMove(e:MouseEvent):void { var pt:Point = new Point(mouseX, mouseY); var objects:Array = this.getObjectsUnderPoint(pt); if (objects.length 0)

[Flashcoders] Re: I Must Be Asking This Question Wrong...

2010-02-03 Thread Wenzler, Thomas
...about how in his country computers have hamsters on wheels for power supplies and his hamster is sick and he promised his client he would have this done in only two weeks when he didn't know how to do it in the first place. Steven made my day. But while drying my eyes from an outburst of

[Flashcoders] [SOLVED]Erratic behaviour of TextEvent.LINK

2009-12-15 Thread Wenzler, Thomas
Nevermind, I had some empty Elements in the templates that hijacked the MouseOver. Thanks if you wasted a thought on this anyway!! Thomas **

[Flashcoders] Erratic behaviour of TextEvent.LINK

2009-12-14 Thread Wenzler, Thomas
Hi list, I'm currently building an application with FlashDevelop/FlashIDE that gets embedded into a Director standalone later on. My content gets loaded from xml files with CDATA sections containing html-formatted text like this chunk here: Marker: a href='event:abcde'test/a oder PDF:a

[Flashcoders] How to handle ScriptTimeoutError with larger PrintJobs?

2009-09-10 Thread Wenzler, Thomas
Dear Flashcoders, I need to find a solution to the said problem: I have an swf with a printAll function that prints out the content of a multiple frames mc that loads at runtime. Since the Flash.PrintJob class has a built in 15 second Timeout between every subsequent

[Flashcoders] Strategies to cope with different encodings of XML data?

2009-03-30 Thread Wenzler, Thomas
Hi there, I need to find the best way to cope with different encodings of XML documents that are loaded at runtime. The documents are user-selected newsfeeds that happen to be encoded in both ISO and UTF-8, so I have to switch System.useCodepage to true or false depending on the encoding of

[Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Wenzler, Thomas
Hi to everyone on the List, I was asked if it was possible to (preferably serverside) generate .flv movies from a sequence of .jpgs. Is that possible? Any hint in the right direction is highly appreciated... Thanks in advance for all your efforts and excuse me if this is off-topic... :) Thomas

Re: [Flashcoders] FLV generation from jpg sequence?

2008-09-30 Thread Wenzler, Thomas
believe. Piers On 30 Sep 2008, at 09:51, Wenzler, Thomas wrote: Hi to everyone on the List, I was asked if it was possible to (preferably serverside) generate .flv movies from a sequence of .jpgs. Is that possible? Any hint in the right direction is highly appreciated... Thanks

Subject: Re: [Flashcoders] load many XML files problem

2008-08-25 Thread Wenzler, Thomas
Sometimes Flash doesn't carry on loading the .xml due to bad formatting of it(missing closing tags or the like)-So here's another error source to check beforehand... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

AW: Subject: [Flashcoders] FLV issues on Mac PC

2007-08-08 Thread Wenzler, Thomas
Hello Dan, if your swfs that are loaded to your main application load the flvs, and you use a build in FLV-playback component you might just run into a pathing issue with the components skin which causes the component to stop working. The component skin uses a relative path which you either have

[Flashcoders] Problem with mx.filters

2007-04-18 Thread Wenzler, Thomas
Hello Flashcoders, in a recent project i made use of the blur filter on a container clip that is used all over the project with differing content, but over the project it sometimes blurs and sometimes won't with no obvious regularity (i.e. the content of the container is varying while the filter

[Flashcoders] Question: Find out the depth of an XML-File

2007-02-28 Thread Wenzler, Thomas
Hello list, this is my first question to the list... I need to find out the depth of a given xml file to afterwards find one specific node in the whole document. Right now I stacked some loops into each other but that is bad practice since I never can be sure if I reach the deepest child in

RE: [Flashcoders] Question: Find out the depth of an xml file

2007-02-28 Thread Wenzler, Thomas
Thanks a lot Danny, i'll try and get my head around this. Much appreciated! Thomas ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to