Re: [Flashcoders] asset versioncontrol

2008-12-10 Thread Weyert de Boer
Oh, I just use GIT works really nice. Also see: http://gitcasts.com/ Hi list, I was wondering how you handle your assets in version control. I usually follow a standard project setup something like: trunk branches tags The trunk contains for example sources, deploy, deploy/assets Now

Re: [Flashcoders] Are you waiting ages for your copy of CS4?

2008-12-23 Thread Weyert de Boer
Maybe the courier lost the package? Maybe ask for a tracking number ;) ? Hi, Sorry to be slightly off-topic, but I am forced to extreme measures. I have been waiting since late October for my copy of CS4 Design Premium to ship. We have been told its 'in processing' and all number of things.

Re: [Flashcoders] Are you waiting ages for your copy of CS4?

2008-12-24 Thread Weyert de Boer
Oh yeah, that can be problematic. I have a US copy of CS4 and tried to request a mediakit here in Europe. Impossible because the North American version is not supported here... Really nice :/ Adobe US promised to send a media kit I haven't received it yet.

Re: [Flashcoders] ActionScript syntax enhancements?

2009-01-06 Thread Weyert de Boer
In Delphi and C# I used it to get RTTI information. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
Yes, should be possible. As long you use something like Merapi or some other solution to open a server socket connection. Basically, you want a simple http/socket server running which controllable from AIR application and maybe some nice use of zeroconf or Bonjour to broadcast/publish/account

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
If so, the code should be available on Google Code somewhere. Hi all, I wanted to ask if there is a way to let two AIR applications connect to each other through a home network (the same AIR application running on different computers) by using sockets or any other method. Thanks.

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
Yes, similar is easily done using Cocoa or Ruby or Python. Python might be nice because you have python2exe. And python itself is included out-of-the-box with OSX (Leopard, Tiger). Meaning easy to use. ___ Flashcoders mailing list

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
Check out: http://en.wikipedia.org/wiki/Zeroconf Hmm, I should try to rewrite it into some examples using Python or Cocoa. Nice pet project for me. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] multi-touch directly in flash...

2009-01-09 Thread Weyert de Boer
Nice. May I ask you how you did the project shown at your blog? In the blog post Touchscreen Jukebox you are talking about touchscreens. Only how is this working exactly. Really touch screen? Sounds like, a nice way to do gesture-based interaction.

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
You can't listen to sockets in ActionScript or Flash... No server sockets. Sadly enough, meaning a no go. You can use the client sockets, of course. But you would still need some helper application to create server sockets like AIR HELPER AIR ___

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
Can someone ban this user? Really annoying. You receive it each you mail to the list Thank you for contacting Security Disclosure at eBay. If you have submitted an eBay - specific security vulnerability, a member of our team will respond to you as soon as possible. If you have submitted your

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
If you want to open server sockets with AIR. You need an extra application alongside your AIR application. This application then opens the listening or server socket and then acts as some sort of middleman or proxy for your AIR application by redirecting the traffic back and forth of the

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
You could consider looking at CommandProxy by Mike Chambers. http://code.google.com/p/commandproxy/ If you want I can port my book example to C#. Tomorrow. If you like? Yours, Weyert de Boer ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Weyert de Boer
Of course! Dumb me. Thanks. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Weyert de Boer
You could really consider zeroconf or bonjour for finding other users connected on the network. Zeroconf/mDNS is the technically used by iTunes and/or iPhoto to detect shared libraries on the network. This means you get a few notifications. Really easier then some hard-coded sharepoint on the

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-12 Thread Weyert de Boer
How do you mean? HaXe will still have the same limitations in the Flash Player/AIR: no server sockets. Of course, you could write the helper applications in any language of your choice. I only would prefer some language which can convert to native executables for OSX, Windows and maybe even

Re: [Flashcoders] FDT SVN + Code Assist

2009-02-14 Thread Weyert de Boer
who revert hard work ;) Weyert de Boer Hello All, I am using eclipse SVN with FDT - and for the most part it really works a treat. However, I am getting all the SVN paths appearing in my code hinting. Do you know a way to get code assist to ignore svn paths? Regards Karim

Re: [Flashcoders] RTL...

2009-02-16 Thread Weyert de Boer
I normally put the textfield in the movieclip and then flip this movieclip with like _xscale=-100. Easiest solution and people who are able to read Arabic say it's correct. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Frame-based tween solution

2009-02-17 Thread Weyert de Boer
Element 4: after 6 frames (from start) Anyone know a good way to do this using some tween class? My first trials of using 1/30 * 3=0.09s as a delay wasn't successful. Thanks in advance. Yours, Weyert de Boer ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] Frame-based tween solution

2009-02-17 Thread Weyert de Boer
That's a bit vague. In which way wasn't it successful? Well, the problem is that I have a simple timeline animation Presumably you're getting rid of the timeline animation to try and save a few K. Mainly moving it to ActionScript to make it more dynamic to support more or less menu items

Re: [Flashcoders] Which way is best...

2009-02-18 Thread Weyert de Boer
Hi Glen, I would just let the button bubble the events upwards to one of the parent objects and then handle the event there. Easiest ;) Yours, Weyert ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] component def doesn't pass params to constructor?

2009-02-18 Thread Weyert de Boer
to csDesigning in ComponentState in the VCL. Yours, Weyert de Boer ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Display Object Container refresh ...

2009-02-20 Thread Weyert de Boer
var n: Number = container.numChildren; while ( n-- ) { container.removeChildAt(n); } sounds better ;) less problems when you start from the bottom is my experience. You have a class with a public DOC (DisplayObjectContainer). This DOC contains all the visual assets of your class. In you

Re: [Flashcoders] try-catch-finally ...

2009-03-04 Thread Weyert de Boer
Sure. Reasonable good practice to catch exceptions. I normally use it for things like catch the exception and try it once again and if it fails for the second time. I will show an error message or try secondary option. Technically, it's good practice/professional to use try-catch-finally

Re: [Flashcoders] Benefits of as3 - to the client

2009-04-22 Thread Weyert de Boer
Yes, last week I have converted a Flash project to AS3 because it was all framescripts so I have reworked it to use classes. Much easier to fix bugs and other issues now. :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Benefits of as3 - to the client

2009-04-22 Thread Weyert de Boer
Maybe the admin should include a little line in the footer about how to subscribe (Want to subscribe? Find mor einfo at...) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] UK time clock

2009-04-22 Thread Weyert de Boer
Ain't that the same as the UTC time? As far as I know UTC time is GMT which is the UK time. Of course, you need to take the daylight saving into account. Winter: UTC+0 (UTC=GMT) Summer: UTC+1 (GMT+1) On Apr 22, 2009, at 8:16 PM, Pedro Kostelec wrote: Hello Is there a way to create a

Re: [Flashcoders] Benefits of as3 - to the client

2009-04-22 Thread Weyert de Boer
Hi Merill, Yes, just some more information in the footer so that they know you can find the information at that link how to unsubscribe from the mailing list. Yours, Weyert de Boer ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] UK time clock

2009-04-22 Thread Weyert de Boer
the offset from the current time and then you get the UK or GMT/UTC time. OH, there is a way to bring out zone related time in Flash? I only knew the way, that takes the time from the local computer. How'd you do it? Any tutorial or script? On Wed, Apr 22, 2009 at 8:31 PM, Weyert de Boer w

Re: [Flashcoders] UK time clock

2009-04-22 Thread Weyert de Boer
You can check if the locale takes DST into account by compare the offsets of a winter day with a summer day. If they are the same the locale doesn't care about DST. If not, I would need to fix my alarm clock ;) On 22/04/2009, at 10:12 PM, Keith Reinfeld wrote: Pedro, To calculate the

Re: [Flashcoders] Tab accessibility of buttons within dynamically displayed movie clip

2009-04-27 Thread Weyert de Boer
Did you enable tabChildren on the dynamically displayed movieclip? myClip.tabChildren = true ? tabChildren : Boolean Determines whether the children of the object are tab enabled. tabEnabled : Boolean Specifies whether this object is in the tab order. Yours, Weyert de Boer On 27/04/2009

Re: [Flashcoders] Placing sprites on the circumference of a circle

2009-11-09 Thread Weyert de Boer
again to fresh up) Yours, Weyert de Boer ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Placing sprites on the circumference of a circle

2009-11-09 Thread Weyert de Boer
Yeah, that's a nice big line of code. And yes, I have seen the HYPE framework and looks really interesting but I don't think it's having functionality for the thing I wanted. Jason, yes, indeed you should be able to use Point.polar() it should of course give the same result as long you

Re: [Flashcoders] Placing sprites on the circumference of a circle

2009-11-09 Thread Weyert de Boer
Yeah, I think it's working now! The final code for now (it's bedtime!) is as follows: http://www.friendpaste.com/23ImSCDq41zmXXmYUqtT0x Tomorrow, I will experiment with the code from David. Code on pastebin looks all fine. Thanks. Weyert ___

Re: [Flashcoders] Known memory leaks in FP10

2010-01-31 Thread Weyert de Boer
Hmm, I am reading 8 XML files every 30 seconds using XMLList and XML objects. Are you saying that AS3 XML objects have a big memory leak? Hopefully, the profiler will work tomorrow so I can try to hunt down some issues. If I remember correctly, I don't need to release timeline

Re: [Flashcoders] PDF and flash

2010-04-14 Thread Weyert de Boer
Maybe you can use this tool: http://www.swftools.org/ ? Converts PDF documents into SWF movies might interesting to use. On 15 apr 2010, at 01:22, Karl DeSaulniers wrote: Is there any way to import a PDF to flash and have the pages of the pdf be read as whole images? Karl DeSaulniers

Re: [Flashcoders] Adobe Flash future

2013-05-09 Thread Weyert de Boer
I think the main issue with EDGE is that it generates such big files. I haven't been able to create a useful banner animation with it. Well, one that meets the maximum file size for a HTML5 banner. Only the Edge script is already bigger ;) Yes, I have to admit CreateJS looks promising. Thanks

<    1   2   3   4