Re: [Flashcoders] IE enlarging swf? FF not. What's up?

2006-12-08 Thread Hans Wichman
Hi, it takes a long lng time (only tested it on ie). Can't you load one single large bitmap and use that single bitmap to create all the tiles? greetz JC On 12/8/06, Dennis Landi [EMAIL PROTECTED] wrote: I'm creating a tile designer. In the right-hand pane, click on a tile you want to

[Flashcoders] casting and sandboxing

2006-12-02 Thread Hans Wichman
Hi list, i have a local main.swf that loads a local sub.swf. Both have their sandbox types to local. When run with local policy files everything works ok, however when run without it, I can access the code in sub.swf from main.swf, but casting that normally works okay returns null. The sub.swf

Re: [Flashcoders] Manually fire Stage resize event.

2006-11-17 Thread Hans Wichman
Note that all of this only works when Stage.scaleMode = noScale; which might be problematic in some cases. On 11/17/06, Julien Vignali [EMAIL PROTECTED] wrote: Julian, what about that: import mx.events.EventDispatcher; class StageListener { public var addEventListener:Function; public var

Re: [Flashcoders] why are my class property's strong typing being ignored?

2006-11-16 Thread Hans Wichman
Hi, another option for typed data is the serializer from the xflas2 package. It serializes/deserializes classes as well. Or example imagine you not only have strings and numbers in your xml but a type MyClass as well. After deserializing it, you immediately calls methods on your object. The

Re: [Flashcoders] Object registerClass

2006-11-14 Thread Hans Wichman
Hi, just a small note: var a:String, will NOT guarantee that a is actually a string. for example: var arr:Array = [_root.createEmptyMovieClip(test, 0)]; var str:String = arr[0]; trace( typeof (str)); will compile just fine and trace movieclip greetz JC On 11/14/06, el oskitar [EMAIL

Re: [Flashcoders] upcasting causes overridden superclasses methods to be called

2006-11-14 Thread Hans Wichman
Hi, running your example shows: subclass init, as it should. public override function init(){ trace (subclass init); } whats the override keyword doing there? greetz JC On 11/14/06, Matt Garland [EMAIL PROTECTED] wrote: I was hunting a bug when I found this out: class SuperClass { public

Re: [Flashcoders] Faking 3D perspective of a 2D map in Flash 8..?

2006-11-12 Thread Hans Wichman
do you mean something like this: http://www.strille.net/works/misc/z_mapping/z_mapping.html greetz JC On 11/10/06, Paul Steven [EMAIL PROTECTED] wrote: This site will hopefully help you on your way http://www.kirupa.com/developer/actionscript/3dindex.htm -Original Message- From:

Re: [Flashcoders] Fever FvAsWing update is available

2006-11-10 Thread Hans Wichman
Hi Romain, looks like an awesome piece of work. A few questions though, hope you can point me in the right direction: - when would i want to use just pixlib, and when should i use fever? - what extensions should i think of to the aswing framework? components? If i want to start using this

[Flashcoders] cairngorm 2

2006-11-10 Thread Hans Wichman
Hi list, i cant seem to figure out whether cairngorm is for flex only, or for flash as well. I find info about v0.95/0.99 saying its for flash as well, and version 2 for flex only? greetz JC ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] Weird Executable Publishing

2006-11-10 Thread Hans Wichman
Hi, are you running turtoise svn by any chance? greetz JC On 11/10/06, eric dolecki [EMAIL PROTECTED] wrote: If I publish a Win executable then publish another in quick succession, I most times get an error about a locked file/Flash installation problem. An get an .exe of 0 bytes. If I

Re: [Flashcoders] Is it possible to expand work area in flash?

2006-11-09 Thread Hans Wichman
Hi, nesting clips and scaling them down on the workarea might help. You need to scale them back on app start. greetz JC On 11/9/06, James Marsden [EMAIL PROTECTED] wrote: does anyone know if there are plans to extend the paste board width in Flash 9? Nick Weekes wrote: Not much you can

Re: [Flashcoders] Completely stumped about MovieClipLoader not working

2006-11-09 Thread Hans Wichman
, baseurl.lastIndexOf(/)+1); mcl.loadClip(baseurl+ar07ui.swf); On 11/9/06, Hans Wichman [EMAIL PROTECTED] wrote: ps that can be made way more efficient, its still under construction :) On 11/8/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, instead of using your path directly try something

[Flashcoders] number parsing

2006-11-09 Thread Hans Wichman
Hi list, can anyone confirm whether number parsing depends on regional settings in anyway? For example, could parsing 10,3 result in 10,3 on some pc's and 10 on others? And even worse could parsing it using Number result in 10 on some pc's and NaN on others? I can't reproduce it, but client's

Re: [Flashcoders] Completely stumped about MovieClipLoader not working

2006-11-09 Thread Hans Wichman
this behaviour changes? Eg in version this and that. On 11/9/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, whether baseurl = baseurl.substr(0, baseurl.lastIndexOf(/)+1); works depends on player version and whether you are running it in a browser or on a disk. To be sure, replace any

Re: [Flashcoders] Completely stumped about MovieClipLoader not working

2006-11-08 Thread Hans Wichman
Hi, instead of using your path directly try something like this: class App { public static function getPath (parent:MovieClip, path:String):String { var parUrl:String = parent._url; parUrl = parUrl.split(\\).join(/ file://%22).join(%22/); var pathUrl:String = path.split(\\).join(/

Re: [Flashcoders] Completely stumped about MovieClipLoader not working

2006-11-08 Thread Hans Wichman
ps that can be made way more efficient, its still under construction :) On 11/8/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, instead of using your path directly try something like this: class App { public static function getPath (parent:MovieClip, path:String):String { var parUrl:String

Re: [Flashcoders] scale MC using another MC as registration point

2006-11-08 Thread Hans Wichman
Hi Jon, i did something similar a while back, with the content of a scrollpane. It was something like this: //get the original x and y centre before scaling var orgX = (((pane.width-16)/2)+pane.hPosition)/(pane.content._xscale/100); var orgY =

Re: [Flashcoders] scale MC using another MC as registration point

2006-11-08 Thread Hans Wichman
ps this centers the zoom around the center of the scrollpane instead of a dot On 11/8/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi Jon, i did something similar a while back, with the content of a scrollpane. It was something like this: //get the original x and y centre before scaling var

Re: [Flashcoders] Datagrid keeps 1 empty row visible

2006-11-07 Thread Hans Wichman
99,9% of us know how you feel m8:) On 11/7/06, Ben Smeets [EMAIL PROTECTED] wrote: Banging head against wall. Sorry guys, I managed to find a little line of code addItem('no items in list'); Which did the damage. Nothing wrong with the DataGrid :) Cheers, Ben -Original Message-

Re: [Flashcoders] Strange phenomenon: FLV / Flash 7 not showing

2006-11-07 Thread Hans Wichman
Hi, dumm question probably, but I'l ask it anyway: have you ruled out wrong paths ed? Does meta info show up, status info etc, or nothing at all? greetz JC On 11/7/06, Roman Blöth [EMAIL PROTECTED] wrote: Hello flashcoders, a strange phenomenon happens here on a client's computer: I've

[Flashcoders] class reloading

2006-11-06 Thread Hans Wichman
Hi list, you've probably had this scenario before, you are loading clip B into clip A and B defines some classes. Now you change B's classes, recompile and reload it into A, but since the old classes are still there, B wont function as it should, unless you restart A. Now I can remove the

Re: [Flashcoders] class reloading

2006-11-06 Thread Hans Wichman
, if you had a multiplayer game running, and you updated one of the avatar's swf's - you want that new SWF's code to be loaded and used without restarting the app for everyone is that what you're talking about? On 11/6/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi list, you've probably had

[Flashcoders] preventing scientific notation

2006-11-06 Thread Hans Wichman
Hi list, i need to talk to webservices which pass me back very large db id's, which im using again to request more info. However when i do (for example): var b:Number = 10; trace (b); it prints 1e+21 Now when I use this value as an argument to this webservice it seems to

Re: [Flashcoders] preventing scientific notation

2006-11-06 Thread Hans Wichman
as strings it should work perfectly. /Chris Hans Wichman wrote: Hi list, i need to talk to webservices which pass me back very large db id's, which im using again to request more info. However when i do (for example): var b:Number = 10; trace (b); it prints 1e+21 Now when

Re: [Flashcoders] preventing scientific notation

2006-11-06 Thread Hans Wichman
PROTECTED] wrote: AS3.0 has Number.toFixed(): http://livedocs.macromedia.com/flex/2/langref/Number.html#toFixed() Of course, that probably doesn't help you ― Mike Keesey -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Hans Wichman

Re: [Flashcoders] Tween question

2006-11-02 Thread Hans Wichman
Hi, there is another workaround, although i'd not recommend it, but knowing the trick involved might be nice though:). You can 'record' all the movieclips positions in array, by visiting each frame in the first frame. In other words, in a single onEnterFrame (the first prob), you could

Re: [Flashcoders] Maths: scale one mc, whilst keeping an mc within it the same size

2006-11-01 Thread Hans Wichman
Hi Jon, imagine you have a lot of nested clips, structure a-b-c-d-e for example (a is parent of b, b is parent of c etc). Imagine a is scaled 50% and the rest hundred. Then you can be sure, b/c/d/e will be 50% as well. If b is scaled 50% as well, c/d/e will be at 25% (a's 50 times b's 50). Damn

Re: [Flashcoders] debugger works in flash

2006-10-27 Thread Hans Wichman
Hi, sure, press F1 and look up the chapter 'debugging in Flash' kind regards, JC On 10/27/06, ~ *** $UHASINI *** ~ [EMAIL PROTECTED] wrote: Hi all Can everyone can help to solve my problem... Please explain how the debugger works in flash Thanx in advance Suhasini Ms. Suhasini

Re: [Flashcoders] EventDispatcher and Delegate - where am I going wrong...

2006-10-26 Thread Hans Wichman
Hi, it seems you are mixing two approaches. approach 1) this.mcButton.onRelease = Delegate.create(this, this.onClick) approach 2) this.mcButton.objRef = this; this.mcButton.onRelease = function () { this.objRef.onClick(); } greetz JC On

Re: [Flashcoders] There is no method with the name 'super'

2006-10-26 Thread Hans Wichman
Hi, there is no constructor Rectangle() in Rectangle.as, only function Rectangle( x : Number, y : Number, w : Number, h : Number ); so you cannot call it. You could call super(0,0,0,0); greetz JC On 10/26/06, Quinten [ :: MediaMonks :: ] [EMAIL PROTECTED] wrote: I have 2 classes: 'Tester'

Re: [Flashcoders] Flash 9 Player Issues

2006-10-24 Thread Hans Wichman
Hi, i can imagine at least two issues (had to deal with them myself after some conversions), one is for/while loops that have become endless loops due to a default initialisation or datatype that has changed from 8 to 9. 2, the handling of paths, which seems to have changed only a little bit, eg

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Hans Wichman
Hi Dimitrios, i was reading your article and the referenced article in which it says: Once the inner function is removed from memory (for instance if the object to which the inner function was attached is removed), then the unique reference to the activation object also gets deleted and the

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Hans Wichman
HI, well especially for game programming where you'd do a lot in the IDE and in code, FLASC or FlashDevelop would be great. Its not a question then of whether you should use one OR the other, its more a question of WHEN. I ussually use both the IDE and FlashDevelop or a batch at the same time.

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Hans Wichman
Delegate.destroy()... I have a VJing app which gets more and more unreliable the longer it runs and I bet this is why. HTH, Alias On 24/10/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi Dimitrios, i was reading your article and the referenced article in which it says: Once the inner function

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Hans Wichman
inline function created inside the Delegate.create() method stays on memory. HTH, Alias On 24/10/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, exactly The garbage collector will not remove references to delegates that are still being used. Doesnt that mean that if you already nicely set your

Re: [FlashCoders] Delegates and performance

2006-10-24 Thread Hans Wichman
means no object.addListener (click, Delegate.create()) constructions, you'd be fine and there is no need to get all paranoid:). cheers JC On 10/24/06, Hans Wichman [EMAIL PROTECTED] wrote: Sorry Muzak last time I checked your links didnt work, but forgot to report it. Ill check m now

Re: [Flashcoders] Inheritance and contructor issue

2006-10-23 Thread Hans Wichman
Hi, what is the output? greetz JC On 10/23/06, Andreas R [EMAIL PROTECTED] wrote: //parent class: class no.rayon.aronning.StateMachine.prototypes.BaseState implements no.rayon.aronning.StateMachine.interfaces.IState { public var stateName:String; public var addListener:Function;

Re: [Flashcoders] phantom flash class instance

2006-10-19 Thread Hans Wichman
Hi, implement a destroy method in the class, in which you tell it to release all its own reference, next release all reference to the object itself. Make sure there are no hidden references, (delegates, setIntervals, movieclip pointers, globals) etc to the instance, so it can be garbage

Re: [Flashcoders] incrementing a target?

2006-10-19 Thread Hans Wichman
Yes... _root.mainMC.auto.subMC[textField + i].text and u wrote _root.mainMC.auto.subMC.[textField + i].text note the dot after subMC greetz JC On 10/19/06, Bill Pelon [EMAIL PROTECTED] wrote: Seems to jumble me up a bit, I get this error. Expected a field name after '.' operator.

Re: [Flashcoders] draggable mc with buttons in it?

2006-10-18 Thread Hans Wichman
Hi, dont use the onPress etc for the draggable clip, but implement something using hitTest. greetz JC On 10/18/06, mastro [EMAIL PROTECTED] wrote: hello ! i made a draggable mc and include 3 buttons in it. how can i make the buttons working? i include a test.fla in this e-mail. thanx for

[Flashcoders] OT: job posting in netherlands (dutch)

2006-10-18 Thread Hans Wichman
Hi list, the remainder of this post will be in dutch, and it will be a job posting. If you are from outside of the Netherlands and would like a translated copy, let me know:). greetz JC --- *Gezocht: Ervaren Flash programmeur (40 uur)*

[Flashcoders] modal dialogs go with depthmanager or?

2006-10-17 Thread Hans Wichman
Hi list, I'd like your to cents on this, I'm building an app with different layers, systemmessages, errordialogs, windows etc. Would you recommend using the DepthManager and the like in order to implement modal dialogs and stuff or would you implement your own mechanism? greetz JC

Re: [Flashcoders] Flash Classes and Preloading ...

2006-10-16 Thread Hans Wichman
Hi, export all as2 classes and stuff after frame 1, eg frame 10 and write your preloader in as1 :). greetz JC On 10/16/06, Anthony Lee [EMAIL PROTECTED] wrote: Stephen, Don't know about the Flash IDE, but MTASC can do this for you. I posted a similar question to osflash.org, here's the

Re: [Flashcoders] ppt to flash

2006-10-16 Thread Hans Wichman
Hi, well FlashPaper2 converts ppt to flash, not sure if it is what you are looking for, but its part of studio 8. greetz jc On 10/16/06, Alain Rousseau [EMAIL PROTECTED] wrote: I believe you can keep your transitions effects and animations with Impress (OpenOffice's PowerPoint editor) But the

Re: [FlashCoders] Delegates and performance

2006-10-16 Thread Hans Wichman
Hi, very interesting, ill be sure to test this out! greetz JC On 10/16/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hello everyone, I had a really big issue recently, when I realized that the performance of a large-scale game I built in Flash dropping substantially after 1/2 hour of

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-15 Thread Hans Wichman
. -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Hans Wichman Sent: Friday, October 13, 2006 11:17 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Alternative IDE for Flash Devel Hi Pete, check out the project page for flasc

Re: [Flashcoders] Alternative IDE for Flash Devel

2006-10-13 Thread Hans Wichman
Hi Pete, check out the project page for flasc, there are video's available that demo it. In addition as mentioned before, FlashDevelop wraps around mtasc too. greetz JC On 10/13/06, Pete Miller [EMAIL PROTECTED] wrote: This looks great, but I can't figure out how to create a project in

Re: [Flashcoders] reseting ASSetPropFlags back to default

2006-10-12 Thread Hans Wichman
Hi, you can record all the public fields for an object, prior to unhiding all the hidden fields. Now afterwards, hide everything and unhide the fields you recorded earlier. greetz JC On 10/11/06, Janis Radins [EMAIL PROTECTED] wrote: Hey ppl! I have made some pretty nice printR function (

[Flashcoders] mouse up event

2006-10-12 Thread Hans Wichman
Hi list, i've been trying to detect a mouseup event outside of the actual flashcontent, even outside the browser. So far I've come up with the following: - you cannot read the mouse position outside of the flash-stage unless the mouse is down - you cannot detect the mouse up event outside flash

Re: [Flashcoders] Moving to AS2, array always undefined

2006-10-10 Thread Hans Wichman
Hi, and one other note, don't do: class ArrayTest { public var items_arr:Array = []; } becoz that will be the same as : class ArrayTest { public static var items_arr:Array = []; } initialize the array in your constructor instead. greetz JC ps flash bug On 10/10/06, Jon Bennett

Re: [Flashcoders] Rollover states for sub-items

2006-10-09 Thread Hans Wichman
One other option, is NOT nesting the clips. At least not code wise. On 10/9/06, Perdue, Blake [EMAIL PROTECTED] wrote: Is there any other work around? I'd prefer to avoid wasting cycles checking the location of the mouse every time it's moved. I was hoping there was some sort of submenu flag

Re: [Flashcoders] Which object called the function

2006-10-08 Thread Hans Wichman
Hi, use xflas2, from osflash/xflas2 :) And check the examples, there is a Logger.markEntry call which will print: ClassA.methodA called from ClassB.methodB. greetz Hans ps i will put more info up soon On 10/8/06, Troy Rollins [EMAIL PROTECTED] wrote: On Oct 8, 2006, at 1:47 AM, Ramon

Re: [Flashcoders] Which object called the function

2006-10-08 Thread Hans Wichman
. Once you have done this, you can use Logger.markEntry(arguments). Lemme know if this works for you or if you'd like any help with it. greetz JC On 10/8/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, use xflas2, from osflash/xflas2 :) And check the examples, there is a Logger.markEntry call

Re: [Flashcoders] flv not playing in IE with Flash 9

2006-10-06 Thread Hans Wichman
Hi, don't know if it helps, but for example ._url might yield something different in flash 9 then in flash 8. Which means the resulting path in 9 is different from that in 8, which might in turn cause content to break. Not saying that was the problem here, but it might well be. greetz JC On

Re: [Flashcoders] Rendering flash 8 to video

2006-10-03 Thread Hans Wichman
Hi, i used adshareit, worked great for me, grabs all the scripted movies etc. http://www.adshareit.com/ greetz JC On 10/3/06, Seb L [EMAIL PROTECTED] wrote: I used swf2video, which worked really well. Not sure if they've updated for 8 though, last time i used it on Flash 7. On 03/10/06,

Re: [Flashcoders] tracing function calls

2006-09-29 Thread Hans Wichman
Hi, there are different options, i think as2lib has some kind of AOP mechanisms, allowing you to add aspects to your code, eg a logging aspect. Not entirely sure about this but i think in this case it would come down to walking the global tree, through all classes (assuming everything is as2),

Re: [Flashcoders] Using XRay

2006-09-29 Thread Hans Wichman
And once you have it running, you'll have the best weekend ever, throw a party and won't understand how you every managed without it... :) On 9/28/06, Alain Rousseau [EMAIL PROTECTED] wrote: Try this link, It has everything you need to know about XRay, including where to download ! Enjoy !

Re: [Flashcoders] btn action function with params

2006-09-29 Thread Hans Wichman
Hi, other way: my_btn.onRelease = Proxy.create (this, this.doStuff, param1, param2, param3); The Proxy class can be found through google. greetz JC On 9/29/06, Merrill, Jason [EMAIL PROTECTED] wrote: One way: function doStuff(mc){ trace(mc); } my_btn.clip = mc my_btn.onRelease = function(){

Re: [Flashcoders] Inheritance bug in AS2 Flash 8

2006-09-28 Thread Hans Wichman
Hi, not 3 times? I don't think its being called twice in class2, class5's superclass is class 4, which doesnt not redefine class2's method. Let class 5 extend class2 for testing purposes, it probably will work correctly and introduce class3 to see what it does. Then override method1 in class 3 to

Re: [Flashcoders] Inheritance bug in AS2 Flash 8

2006-09-28 Thread Hans Wichman
, because is not needed in a OOP language. Hans Wichman escribió: Hi, not 3 times? I don't think its being called twice in class2, class5's superclass is class 4, which doesnt not redefine class2's method. Let class 5 extend class2 for testing purposes, it probably will work correctly and introduce

[Flashcoders] mask reverts to black white display

2006-09-27 Thread Hans Wichman
Hi list, i've created a game in which clips are being masked and some users report that instead of a masked clip, the only see a sillouhette (?)/ filled outline of the mask. Does this sound familiar to anyone? I've tested it on numerous pc's and it works fine, so it seems to be something specific

Re: [Flashcoders] mask reverts to black white display

2006-09-27 Thread Hans Wichman
Hi, stupid stupid me, i had to remove a flashcheck due to certain reasons i dare not explain:) and guess what... the person in question was running an older player version. Fortunately no bitdepth nightmare. thanks danny! greetz JC On 9/27/06, Danny Kodicek [EMAIL PROTECTED] wrote: Hi list,

Re: [Flashcoders] NS status calling a func in a class?

2006-09-19 Thread Hans Wichman
Hi, a few months? ouch... callFunction will run in my_ns it's scope, if you want to run it in another scope you can use Delegate or the apply method. goodluck JC On 9/19/06, eric dolecki [EMAIL PROTECTED] wrote: Sorry - I've been in the hospital for a few months, so I forgot how this works.

[Flashcoders] dragging and dropping

2006-09-19 Thread Hans Wichman
Hi list, imagine 2 scrollpanes or listbox containing items, and the requirement that you'd have to be able to drag and drop items from one pane into the other. My guess is that standard flash startDrag()/stopDrag() wont be able to help me here, seeing the items wont be able to leave their

Re: [Flashcoders] printable certificates for flash 7

2006-09-19 Thread Hans Wichman
Hi, not sure what you need, but a simple server side script (eg php) returning xml, or a webservice would be enough for your needs? greetz JC On 9/19/06, James Booth [EMAIL PROTECTED] wrote: Look into Flash Remoting. This is how I've done it in the past. - James -Original

Re: [Flashcoders] Associate clip with class

2006-09-19 Thread Hans Wichman
Hi, sometimes one way, another time the other:) depends on the leg i jumped out of bed with. Anywayz, I usually do not use the __proto__ approach for the main document, but rather for the low down dirty stuff you hope nobody will see on a first glance:). When I do use the linkage id approach

[Flashcoders] reflection update

2006-09-15 Thread Hans Wichman
Hi peeps, in the http://chattyfig.figleaf.com/pipermail/flashcoders/2005-June/140802.html i described a method for class name reflection I used. I noticed a while ago it's being used here and there (xray, some arp extensions, etc), so you might want to know it's been updated. It's part of the

Re: [Flashcoders] this['box_ratio'] works but this.box_ratio or just box_ratio does not

2006-09-12 Thread Hans Wichman
Hi, Delegate is not only for components, it works for anycase where you wish to run functions in another scope. greetz JC On 9/12/06, Alexander Farber [EMAIL PROTECTED] wrote: Hello John, On 9/12/06, John Axel Eriksson [EMAIL PROTECTED] wrote: You could look into Delegate or Proxy... makes

Re: [Flashcoders] Re: Re: Re: Re: Re: Re: new logger for as 2

2006-09-11 Thread Hans Wichman
Hi peeps, this project now has a page on osflash: http://www.osflash.org/xflas2 greetz JC On 9/6/06, Hans Wichman [EMAIL PROTECTED] wrote: Soo... all the important data has been recovered:) and after my next deadline I'm back on this proejct as well. Did anyone have time to look at it since

[Flashcoders] fp xhtml render

2006-09-11 Thread Hans Wichman
Hi list, i was wondering if any of you have experience with fp_xhtml_render? I am looking for an easy way to include forms in my html etc, for exampe radio buttons, by simple loading a html page containing them. Has anybody tried this? kind regards JC

Re: [FlashCoders] XRay _global tree

2006-09-06 Thread Hans Wichman
Hey John, this is the same thing i sent you a mail about a while ago, I experience it as well, but not sure if its xray or me:) greetz JC On 9/6/06, Dimitrios Bendilas [EMAIL PROTECTED] wrote: Hi John, I'm using connector 1.6.1 and the 1.2.5 interface. I just made a really simple example

Re: [Flashcoders] weird class could not be loaded.

2006-09-06 Thread Hans Wichman
Hi, it might be that you are using relative class paths. If so, the fla will compile all right, but during syntax check, there is no relative path to start from. You will need to add a full absolute classpath, and it should go okay. grtz JC On 9/6/06, Adrian Ionut Beschea [EMAIL PROTECTED]

Re: [Flashcoders] weird class could not be loaded.

2006-09-06 Thread Hans Wichman
deleted the aso file... still the same fu*** thing... only the check syntax generate the error... Hans Wichman wrote: Hi, it might be that you are using relative class paths. If so, the fla will compile all right, but during syntax check, there is no relative path to start from. You

Re: [Flashcoders] Reliable local FLV stop event

2006-09-06 Thread Hans Wichman
Hi, if I remember correctly, when using a streaming server, and a buffer of for example 10 seconds, the NetStream.Play.Stop would trigger just fine 10 SECONDS BEFORE the actual end of the flv:) So you end up waiting for an empty buffer after the stop event etc etc greetz JC On 9/6/06, Dan

[Flashcoders] printing from context menu

2006-09-05 Thread Hans Wichman
Hi list, if i right click my flash content and print it, it prints correctly except for the textfields: they get a green background? A clue anyone? grtz Hans ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

Re: [Flashcoders] Slow performance

2006-09-03 Thread Hans Wichman
Hi, setInterval each 10ms might be a bit overkill. grtz JC On 9/3/06, kariminal [EMAIL PROTECTED] wrote: Hello All... My flash movie fills the whole browser window. If the window is kept small performance is great, however when I maximize the browser everything slows down. This is a simple

Re: [Flashcoders] knowing the llinkage id of a movieclip

2006-09-03 Thread Hans Wichman
Hi, dont think so. A workaround would be to use a jsfl script to write this information to an xml file upon build, which is loaded at runtime. grtz Hans On 9/2/06, PR Durand [EMAIL PROTECTED] wrote: Hi List Is there a way to know an MC affected export for actionscript linkage id via AS code?

Re: [Flashcoders] Class inheritance and scope

2006-08-29 Thread Hans Wichman
Hi, no you are calling it once, if you had used: function SubApplication() { super(); initiate(); } you would have seen it twice, but i wouldn't know why you'd want to:) grtz Hans On 8/30/06, Helmut Granda [EMAIL PROTECTED] wrote: Thanks guys, I think i have to go back to the

Re: [Flashcoders] Dynamically Upcast to a class in the _global tree?

2006-08-23 Thread Hans Wichman
Hi, not sure if this is what you mean but: import com.somepackage.HomeView; var bv:BasicView = getSomeBasicView(); var newHomeViewHomeView =HomeView( bv ); grtz JC On 8/23/06, aaron smith [EMAIL PROTECTED] wrote: How do I cast to something that is in the _global tree. by that i mean. cast

[Flashcoders] new logger for as 2

2006-08-23 Thread Hans Wichman
Hi list, I am writing a new logger for actionscript 2 projects. It's not completely done yet (say about 90%), but i have together a preliminary set of sources and examples. In short some of its nicest features (imo:)): - automatic reflection, eg you use Logger.log (here) and it prints

[Flashcoders] Re: new logger for as 2

2006-08-23 Thread Hans Wichman
Hi, ofcourse my hosting provider decided today was a good day to die, sooo here is an alternative link... http://www.screatoris.net/xflas2/ greetz JC On 8/23/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi list, I am writing a new logger for actionscript 2 projects. It's not completely done

Re: [Flashcoders] Re: Re: new logger for as 2

2006-08-23 Thread Hans Wichman
... keep up the good work! henrik -- Henrik Weber Certified Flash Developer __freemind design__ www.freemind-design.de On 8/23/06, Hans Wichman [EMAIL PROTECTED] wrote: Date: Wed, 23 Aug 2006 16:24:00 +0200 From: Hans Wichman [EMAIL PROTECTED] Subject: [Flashcoders] Re: new logger for as 2

Re: [Flashcoders] Re: Re: Re: Re: new logger for as 2

2006-08-23 Thread Hans Wichman
. have you already looked at zeroi http://www.osflash.org/zeroi? On 8/23/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, John, tnx, but I'm ok, i used my screatoris page for now located at my workplace, but i might take you up on your offer once i'm further along;), thanks again. Henrik, thanks! Take

Re: [Flashcoders] flash player

2006-08-19 Thread Hans Wichman
which needs to display flash or other programs that like to host flash content, the ocx might be needed. I'm going with the licensing option, thanks! grtz Hans On 8/18/06, John Dowdell [EMAIL PROTECTED] wrote: Hans Wichman wrote: is there anyway to install the latest flashplayer ocx without

[Flashcoders] flash player

2006-08-18 Thread Hans Wichman
Hi list, ok this feels a bit like a stupid question, but i haven't been able to find it anywhere, is there anyway to install the latest flashplayer ocx without visiting the adobe site with internet explorer? I can download the archived players, but i can't download the latest, except through a

Re: [Flashcoders] flash player

2006-08-18 Thread Hans Wichman
] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Hans Wichman Sent: 18 August 2006 11:56 To: Flashcoders mailing list Subject: [Flashcoders] flash player Hi list, ok this feels a bit like a stupid question, but i haven't been able to find it anywhere, is there anyway to install

Re: [Flashcoders] flash player

2006-08-18 Thread Hans Wichman
sorry, instead of on *ADOBE* djeez its like changing to the euro all over again... On 8/18/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi, yes and no:). I see a standalone installer, Download the *Flash Player* 9 (Complete * Standalone* Installer) http://www.softwarepatch.com/internet

Re: Re: [Flashcoders] Mtasc Delegate

2006-08-05 Thread Hans Wichman
Hi, are you compiling in mtasc with the -mx flag? If so, the delegate class will not be compiled into your swf and it will not work. When I work with Mtasc (through FlashDevelop) i find it the easiest to use an injection swf, but i dont know if that is an option for you. If so, create an swf in

Re: [Flashcoders] jigsaw puzzle piece algorithm

2006-08-04 Thread Hans Wichman
Hi Gunther, imagine the puzzle in its correct configuration: ABCD EFGH I see this as the grid Now if i tell you A, B and E are in a group, you automatically know B is the right neighbour of A, since they can only be in the same group if they connect, and they will only connect if they are in the

Re: [Flashcoders] jigsaw puzzle piece algorithm

2006-08-04 Thread Hans Wichman
ps whether you do this through a naming convention as you mentioned, or through storing a row and column property for each piece doesnt really matter i guess. On 8/3/06, Hans Wichman [EMAIL PROTECTED] wrote: Hi Gunther, imagine the puzzle in its correct configuration: ABCD EFGH I see

Re: [Flashcoders] jigsaw puzzle piece algorithm

2006-07-29 Thread Hans Wichman
Hi, no i dont think its the same. Reading your story it sounds like every piece has a set of neighbours, with a maximum of fours neighbours. Taking your example: Initially each piece group property is an empty array, but for a group something like: A B C D a.group = [a,b,c,d] and b.group =

Re: [Flashcoders] swf to AVI

2006-07-29 Thread Hans Wichman
Hi, you can also stop advertising/spamming :). greetz Hans ps or make it open source, that'd be even better:)) On 7/28/06, master [EMAIL PROTECTED] wrote: Hi, You can try Moyea Flash to Video Converter at http://www.flash-video-mx.com/flash_to_video_web/ master 2006-07-28

Re: [Flashcoders] Array Empowerment

2006-07-26 Thread Hans Wichman
Hi Steven, awesome, very welcome additions. Would addIfNotPresent (in want of a better name), getRandomItem(with the option of deleting that randomItem), randomizeOrder , make any sense to add as well? Or am I missing something (with respect to the code that is). greetz Hans On 7/26/06, Mike

Re: [Flashcoders] sequential tweens ?

2006-07-26 Thread Hans Wichman
Hi peeps, i think my post from a while ago, is related to this post: http://www.mail-archive.com/flashcoders@chattyfig.figleaf.com/msg17995.html It completely falls under zeh's opinion of overcomplication :), but i think there is a time and a place to either overcomplicate things or keep it

Re: [Flashcoders] sequential tweens ?

2006-07-26 Thread Hans Wichman
;-), well first 2,5 weeks are a real vacation no laptop on penalty of death, after that there are some hobby projects such as the logger and this thing that have been lying on my desk for too long now :) but hey no pressure On 7/26/06, Danny Kodicek [EMAIL PROTECTED] wrote: Soo I by no

Re: [Flashcoders] Key.CAPSLOCK woes.

2006-07-25 Thread Hans Wichman
Hi, the isDown call traces true when i test it here, the isToggled traces false (both when holding down capslock ofcourse). Tested on xp, flash 8 Just to be sure, 'disable keyboard shortcuts' doesnt have anything to do with it? When i do: Key.addListener(this); this.onKeyUp = function () { if

Re: [Flashcoders] catching errors by webservice

2006-07-25 Thread Hans Wichman
Hi, just to be clear on this, PendingCall.onFault is not working for you? greetz hans On 7/25/06, PR Durand [EMAIL PROTECTED] wrote: I changed everything to work with the connector instead of the service class : same result If I right understood, an exception thrown with server should give

Re: [Flashcoders] My swap function does not work

2006-07-24 Thread Hans Wichman
Hi, you cannot reassign the objects like you do in your method body. Reassign parameter values is a bad idea anyway i think, but assume you have: var a = myObj1; var b = myObj2; Utilities.swap (a,b); the swap function receives a copy of the reference to a and b. You reassign the copy, and exit

Re: [Flashcoders] jigsaw puzzle

2006-07-24 Thread Hans Wichman
, but it uses bitmapdata object, and the peices are clickable. It's using external FLV's etc. hth, JG On 7/23/06, natalia Vikhtinskaya [EMAIL PROTECTED] wrote: May I sent fla to your mail? 2006/7/23, Hans Wichman [EMAIL PROTECTED]: Hi, what exactly do you mean, it has a config

Re: [Flashcoders] jigsaw puzzle

2006-07-23 Thread Hans Wichman
); depthCount++; activity(part.mask); } } } tiler(pic); Thanks a lot for help. 2006/7/16, Hans Wichman [EMAIL PROTECTED]: Hi Natalia, you can find it here: http://www.google.nl/search?hl=nlq

<    1   2   3   4   5   6   7   >