Re: [Flashcoders] H264 encoding

2008-12-01 Thread Weyert de Boer
Maybe you are able to use thee free x254 encoder? See: http://www.videolan.org/developers/x264.html Hi All, I am working on video chat application, but i want to encode the stream to H.264. Can any one suggest me how i can do this, or what is the possible way out. i have read the articles abt F

Re: SPAM-LOW: Re: [Flashcoders] Arabic flipping

2008-12-06 Thread Weyert de Boer
Yes, I would've thought that when using UTF-8 it would go just fine? It's good to know. What about Flash 10 new text engine? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] My rights - site not paid for.

2008-12-08 Thread Weyert de Boer
Uh, I thought they dropped the requirement of Terms and Conditions to be registered by a notary? You still need to issue T&C to the client like when sending the quote. If you haven't given the T&C to the client it won't apply. For example, if you just put them on your website won't be good enou

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 especial

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. I've

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 y

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 Flashcoders@chattyfig

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 http://chattyfig.figleaf.com/mailman/list

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 listen

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 c

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 Lin

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

2009-01-12 Thread Weyert de Boer
Absolutely. I was merely correcting this line: HaXe will still have the same limitations in the Flash Player/AIR: no server sockets. Yes, I wasn't aware of that bit :-) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://ch

Re: [Flashcoders] FDT & SVN + Code Assist

2009-02-14 Thread Weyert de Boer
ke plugins 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? Regard

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 http://chattyfig

[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 Flashc

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 in

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 http://chattyfig.figleaf.com/mailman/

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

2009-02-18 Thread Weyert de Boer
Similar 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 ref

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 blocks

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 http://chatty

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 clock

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
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

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 time

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, at

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 give

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 ___ Flas

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 animations/moviecl

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] A question about localConnection

2008-04-11 Thread Weyert de Boer
Maybe you could try this example: http://blog.everythingflex.com/2008/01/11/more-fun-with-air-localconnection-source-included/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash apps via bluetooth

2008-08-28 Thread Weyert de Boer
Hi Glen, You can consider using RoomWare. More information at: http://www.roomwareproject.org/ Yours, Weyert de Boer Hi, I am working on a project with a control interface that has a "little brother" for Pocket PC, but I was wondering if it is possible to develop another v

Re: [Flashcoders] pythagoras question

2008-08-30 Thread Weyert de Boer
May I ask a related question? How can I detected if a user has clicked on a line (or later a bezier path) ? I am having the starting and ending coordinates of this line and so also the distance. Now I am would like to check if the user has clicked within this line with/or without a specific radi

Re: [Flashcoders] pythagoras question

2008-08-31 Thread Weyert de Boer
Merrill, Jason wrote: A simple solution could be to create a sprite to draw the line onto, and add a listener to the sprite to see if it was clicked on. Yes, but then you still have the problem that a two pixel line is not a great hit area for drawn line. That's why I asked the question to im

[Flashcoders] > State Machines and user interaction

2008-09-03 Thread Weyert de Boer
Hello! I am curious if anyone on this list has ever tried to leverage state machines to handle user interaction gestures in Flash. If so, what's your opinion about this? Any tips how to implement this? Yours, Weyert ___ Flashcoders mailing list Flash

Re: [Flashcoders] working with AS3 and php/mysql to send and retrieve info from database

2008-09-10 Thread Weyert de Boer
Or you just redirect all the www-trafic to the non-www domain ;) 1) You can place a crossdomain xml in the public root that allows connections from *.boyd-speer.com. 2) You can place the same crossdomain somewhere else and load it explicitly (loadDomainPolicy() if I remember right) 3) You can use

Re: [Flashcoders] Advice on creating nodes on elastic

2008-10-03 Thread Weyert de Boer
You can consider using Birdeye. This should everything you want: http://code.google.com/p/birdeye/ Yours, Weyert ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] RESUME: Senior Flash Developer (2)

2008-10-09 Thread Weyert de Boer
I am still waiting for that job offer on the list that requires me to travel to big cities around the globe every n weeks. And of course allows me to telecommute, pays my health care insurance. Not forget pays the ecnomy class tickets to the islands in the pacific where I prefer to telecommute

[Flashcoders] E4X/XML and comment elements

2008-10-10 Thread Weyert de Boer
Does anyone know a way to create comment elements? I tried it the following way but no luck: var ieCode: String = ""; result.appendChild( new XML( ieCode ) ); It just doesn't get added. I am missing some flag which needs to be disabled? Yours, Weyert __

Re: [Flashcoders] Recommendation for budget development mac

2008-10-22 Thread Weyert de Boer
Yes, you can also consider to buy a Mac and use VMWare Fusion to test under Windows etc. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] How to read image meta data?

2008-11-11 Thread Weyert de Boer
The Adobe XMF is at the end of the and is a block of XML. About EXIF you could port this one to AS3: http://www.nihilogic.dk/labs/exif/ Hi All, Just need some guideline for reading the image metadata. How to read EXIF, IPTC and XMF of the images through AS 3.0? Any wayout ? Thanks, Deepak Sa

Re: [Flashcoders] I want to write an open 3d gaming engine ...recommend any books?

2008-11-11 Thread Weyert de Boer
You could consider to have a look at the book "Mathematics for Game Developers". All about Math. Amazon link: http://www.amazon.com/Mathematics-Game-Developers-Development/dp/159200038X Yours, Weyert Has anyone here developed a gaming engine before?... I have a detailed understanding of AI; ho

Re: [Flashcoders] How to read image meta data?

2008-11-11 Thread Weyert de Boer
Even better: http://code.google.com/p/exif-as3/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] How much would you charge?

2008-11-14 Thread Weyert de Boer
Nah, the same as $367. Of course, in general Europe is more expensive then America so we need to ask more ;) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flex vs. Flash

2008-11-20 Thread Weyert de Boer
You could consider the The Essential Guide to Flex 3 book by FriendsOfED. I consider it as a nice book for beginners in the world of Flex. More information at: http://www.friendsofed.com/book.html?isbn=1590599500 ___ Flashcoders mailing list Flashcoder

Re: [Flashcoders] Flex vs. Flash

2008-11-20 Thread Weyert de Boer
Of course, this problem might disappear when Flex 4 is production ready! Flex 4 makes skinning and similar activities a lot easier. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flex vs. Flash

2008-11-20 Thread Weyert de Boer
Meinte van't Kruis wrote: "Yes, for sites that have a lot of UI "zing" - animations and effects, and really wild transitions and layouts, well, Flex would not be the best choice. That's why you have to decide which tool is best for what kind of project you have." That's what bothers me about Fle

Re: [Flashcoders] Flex vs. Flash

2008-11-20 Thread Weyert de Boer
Yes, too bad it runs on Java. I never been able to get that going on my webservers under Centos/Debian. Yes, that was an AWESOME demo. I've never used CF but what they showed with the two rocked and is quite tempting to start digging into it. I think that CF is by far the best back-end pl

Re: [Flashcoders] Re: Flex vs. Flash

2008-11-20 Thread Weyert de Boer
I am currently trying to rework a AS2 project where I currently try to move the timeline code into classes. Now the project uses v2 components men that's a can of worms. Terrible. You can better spend time writing your components for the buttons and comboboxes then trying to fix alle the issues

Re: [Flashcoders] Flex vs. Flash

2008-11-20 Thread Weyert de Boer
Dave Watts wrote: Yes, too bad it runs on Java. I never been able to get that going on my webservers under Centos/Debian. If you're serious about running CF on those distros, you might find this site helpful: http://www.talkingtree.com/ Thanks! I will have a look at it. Currently, I am

Re: Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-05 Thread Weyert de Boer
Hi Dennis, Do you want to switch all the sound of the computer or only the sound that Flash creates? And does it have to be into a webbrowser or is more a projector that requires it? Yours, Weyert de Boer ___ Flashcoders@chattyfig.figleaf.com To

Re: Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-05 Thread Weyert de Boer
, though. [1] http://msdn2.microsoft.com/en-us/library/ms712115.aspx [2] http://msdn2.microsoft.com/en-us/library/ms712123.aspx Yours, Weyert de Boer Hey Weyert, It's for a projecter.. It will be shown on a computer of my own.. on a presentation location. At the location users have to have

Re: Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-05 Thread Weyert de Boer
Dennis - I Sioux wrote: Hey Weyert, Thanks for taking the time to look into this. We across the same thing.. although it's a b*tch to get .NET running.. We had an old cd laying here.. but that didn't have all the elements.. os you have to download for 24 hours to get a gig of new .net files :-D

Re: Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-05 Thread Weyert de Boer
Merrill, Jason wrote: that ain't that big. Maybe your internet sucks, though. There's only one internet. :) Details my friend! ;-) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chat

Re: Fw: [Flashcoders] Switching sound between boxes and headphones

2007-01-05 Thread Weyert de Boer
Trucks? I thought it were robots? ___ 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 Premier Authorized Adobe Con

Re: [Flashcoders] Will the new iPhone run flash?

2007-01-09 Thread Weyert de Boer
Hi Steven, iPhone: $499 for 4GB, $599 for 8GB. As far as I understood that where the prices when you buy two year Cingular membership with it. Yours, Weyert ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the

[Flashcoders] > Tiles Based game engine

2007-01-30 Thread Weyert de Boer
Hello! I am curious if anyone happen to know a nice AS2 based tiles based game engine for use to create Mario Bros or Commander Keen like games. Somehow I don't get the scrolling and/or ladder stuff working correctly. Stupid games ;) Yours, Weyert de

Re: [Flashcoders] Re: Anyone hate flash 9 already?

2007-02-13 Thread Weyert de Boer
http://labs.adobe.com/technologies/flash9as3preview/ ___ 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 Premier A

Re: [Flashcoders] OT: Pirated Books

2007-03-02 Thread Weyert de Boer
It's even scary how fast they pirated ebooks are available after publication. :/ ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you b

Re: [Flashcoders] MDM Zinc v2.5 Trial _ Writing files to hard drive

2007-03-25 Thread Weyert de Boer
You could consider wrapping it into a Apollo projector :) ___ 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 Prem

[Flashcoders] Resending request.

2007-04-03 Thread Weyert de Boer
this period don't hesitate to inform me, and them... Thanks in advance. Yours, Weyert de Boer ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashc

Re: [Flashcoders] Flashcoders really bad lag - just me?

2007-04-10 Thread Weyert de Boer
Well, it's always a pain when it arrives to late. Wed 1:09PM NZDT ___ 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 Soft

Re: [Flashcoders] How is it done? coca-cola creator

2007-04-13 Thread Weyert de Boer
SVG and Flash? Are you saying you just had a list of SVG xml code which you send to your server? I am not aware of any Flash artwork to SVG converts libraries for Flash. ___ [EMAIL PROTECTED] To change your subscription options or search the archive: ht

[Flashcoders] > Ten Year Flash website

2007-04-13 Thread Weyert de Boer
Hi! I just saw the new website Ten Year Flash. It really looks nice. But could someone here share what you used for creating the Earth? How would have made the website like this: 1. some rotating video left to right, right to left. you cant rotate top-bottom etc. 2. reusable zoom in, and zo

Re: [Flashcoders] > Ten Year Flash website

2007-04-13 Thread Weyert de Boer
Weyert de Boer wrote: How would have made the website like this: My issue from childhood pops up again. You should read: 'How I would have made the website, is like this:' ___ [EMAIL PROTECTED] To change your subscription options or

[Flashcoders] > UUID generation code

2007-04-14 Thread Weyert de Boer
Anyone happen to be aware of code for AS3 which enables the generation of UUID and reading them? I just want to avoid reinventing the wheel ;) Yours, Weyert de Boer ___ [EMAIL PROTECTED] To change your subscription options or search the archive: http

Re: [Flashcoders] [semi-OT] - Preventing Software Piracy

2007-04-16 Thread Weyert de Boer
s are weak. Please rent some person who is fully into the dongle and encryption. If not, it will be lost money. What do you guys think about this kind of protection? Why isn't it used more often? Because it's a big investment to implement. Y

Re: [Flashcoders] Microsoft Silverlight ...

2007-04-16 Thread Weyert de Boer
I think not everyone wants to install because you would have to reinstall MacOSX. Because it ain't working for on 10.4.9. Beside of that it's quite nice. It has the coolness of Apollo but then inside a browser window... What do you make of Microsoft's Silverlight:http://www.microsoft.com/silver

Re: [Flashcoders] Flash 9 CS 3 Components

2007-04-16 Thread Weyert de Boer
Yeah, everything is shipping. Design Premium, Web Premium etc. Not the Production Suite or Master Edition Suite, though. There is some mention that in order for the flash 9 cs3 components to work version .45 needs to be downloaded. However on adobe's site there are examples using these new compo

[Flashcoders] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer
8772bc0a3dda09e834b4d9aede"; send_lv.addRequestHeader( "Contraband-PublicHash", "068c0316e6af2602bbf56cfd85175ff2ae732d02" ); send_lv.sendAndLoad("http://127.0.0.1:8082/";, result_lv, "POST" ); stop(); Thanks in advance! p.s. Probably overlooking some

Re: [Flashcoders] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer
It works. onLoad don't get triggered when you using onData Yours, Weyert de Boer ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought t

Re: [Flashcoders] Reasons of failing onLoad of LoadVars

2007-04-16 Thread Weyert de Boer
I still think it's some dodgy way of triggering events. If it works this way Yours, Weyert ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brou

Re: [Flashcoders] OT: Salary Questions

2007-04-17 Thread Weyert de Boer
100-120K nice... ___ 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 Premier Authorized Adobe Consulting and Train

Re: [Flashcoders] [semi-OT] - Preventing Software Piracy

2007-04-17 Thread Weyert de Boer
Genuine Dongles? What about dumping dongle data and then use a dongle emulator? Yours, Weyert ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Br

Re: [Flashcoders] Need help with error, PLEASE HELP ME!!!

2007-04-18 Thread Weyert de Boer
Cool company name! ;) ___ 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 Premier Authorized Adobe Consulting and

[Flashcoders] > Adobe at IBC

2006-09-02 Thread Weyert de Boer
Does anyone know which Adobe people will go to IBC? Yours, Weyert ___ 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 Soft

Re: [Flashcoders] Highscore submit security with independent library

2006-10-29 Thread Weyert de Boer
Hi Tjeerd, Never period, as long you have access to the files in use by the game or any applications. You can cheat period. Sometimes it's harder to get around... I would expect you have learned all the tricks in Enschede! Yours, Weyert de

Re: [Flashcoders] Highscore submit security with independent library

2006-10-29 Thread Weyert de Boer
Hi Tjeerd, The problem is that you can decompile flash movies with something like ActionScript Viewer. Meaning you can just easily browse the code. In readable form, by my knowledge you would always have a bit of the algoritmn in the flash movie to make it all. Meaning you can see how they se

Re: [Flashcoders] OOP advice for game

2006-11-04 Thread Weyert de Boer
Yeah, I made a little game myself and use the classes FoodPiece, Snake, and GameWorld and SnakeGame. Meaning that SnakeGame handles all the stuff such as start/stop game, score counting. The GameWorld is responsible for all the drawing, and calling the update method of the Snake instance, which

Re: [Flashcoders] Freelancer Class

2006-11-08 Thread Weyert de Boer
I think this keyword rks vworkery nicely. ___ 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 Premier Authorized A

[Flashcoders] > Anyone living in Japan?

2006-11-09 Thread Weyert de Boer
Hello, I am curious if anyone here is living in Japan, and could assist me with getting some images of content that are offered by NTT DoCoMo via i-Mode. This would be greatly appreciated, you will get credits... Yours, Weyert ___ Flashcoders@chattyf

Re: [Flashcoders] Job Opportunity at Gaia Interactive (San Jose, CA)

2006-11-15 Thread Weyert de Boer
Yeah, securing code in Flash Movie. Anyone know a good one for that beside of obfuscating it? I don't you think you got a lot of choices, right? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chat

[Flashcoders] > Studio 8 on MacBook Pro

2006-11-25 Thread Weyert de Boer
Hello! My MacBook Pro arrived earlier this week and now I am trying to install Studio 8 (under MacOSX) only I don't get it working. Mainly, because it keeps hanging. Does anyone know how I can install it? Yours, Weyert de Boer ___ Flashc

Re: [Flashcoders] > Studio 8 on MacBook Pro

2006-11-25 Thread Weyert de Boer
Flash 8 download only it hangs in the installer application. No errors, it just says "Application Not Responding"-message. Yours, Weyert de Boer ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search th

[Flashcoders] gProject

2006-11-27 Thread Weyert de Boer
Does anyone use gProject and if so what do you think of it? I might be planning to buy it, only I am not sure if it's any good. You can't get a limited demo either. Yours, Weyert de Boer ___ Flashcoders@chattyfig.figleaf.com To c

Re: [Flashcoders] Dump ByteArray localy

2007-04-26 Thread Weyert de Boer
Yeah, wrapped it into Apollo ;) Apollo has API to write it to a file. ___ 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 S

Re: [Flashcoders] resent: Question about CS3 Flash Pro

2007-04-27 Thread Weyert de Boer
Dennis Landi wrote: (The first message doesn't seem to have made it to the list serv) re: Flash CS3 Pro: Is this Flash 9 or still Flash 8? I am looking at the product page here: http://www.adobe.com/products/flash/ And it states that it supports: ActionScript 3.0 developmentSo does this basica

Re: [Flashcoders] Flash and the Xbox 360 ...

2007-04-29 Thread Weyert de Boer
Hi Stephen, I think their is some hack for running flash games by using some XBE files supplied by Microsoft. You might wanna read this: http://www.engadget.com/2006/01/31/how-to-run-flash-games-on-your-xbox-360/ You could also consider looking at XNA Game Studio this allows you to create ga

[Flashcoders] Survey about web applications

2007-05-06 Thread Weyert de Boer
Just a little non-scientific survey about web applications. Please, be so kind a fill in this survery when you find the time. You can find the survey at: http://tinyurl.com/29ydgj Thanks! Weyert ___ Flashcoders@chattyfig.figleaf.com To change your sub

Re: [Flashcoders] OT: Spiderman 3 === Worst movie ever

2007-05-07 Thread Weyert de Boer
The special effects were quite nice. Something things could be better, but that is with most things. Some nice post production glitches in it ;) I think I even spotted some grain issues but for that I would have to rewatch it. Mr. Wannabe SFX guy ;) Weyert

  1   2   3   4   5   >