Monthly Archives: October 2005

Flash8.5 released

Get Flash8.5 and the Flex2 Framework from the Macromedia Labs. I am currently downloading the whole package and already read something about compiling. Most of the AS2 Classes won’t work with the new compiler. Maybe some IRC Client release today? I’ll hurry! Do not miss the AS3 Language Reference and also the Socket documentation. And [...]

BinTree and AVLTree

According to the list classes I have some binary and AVL trees. They work the same way like the list but they have got some more functions like find() and a sorted trace() to debug the data. There is also an experiment which shows the difference between both kinds of trees. [as]import de.je2050.util.tree.Root; import de.je2050.util.tree.AVLRoot; [...]

List and SortedList

Here are two sorts of lined lists. They are easy to use and not very hard to understand. You can simply insert() something into a list and walk() through it. If the list is an instance of SortedList it will be sorted automatically. [as]import de.je2050.util.SortedList; import de.je2050.util.List; import de.je2050.util.data.*; var simple: List = new List(); [...]

flIRC – Preparing for Flash 8.5 and the Flex builder

As I mentioned some days ago I am working on an IRC client for Flash 8.5. Of course there is currently no version in circulation but why not start developing a RIA which will be complete with all the new features? Of course it is only the public alpha but the use of binary sockets [...]

Flash 8.5 – binary sockets again

There is a thread on the FlashKit forums about the 8.5 FlashPlayer. After some speculations and rumors Mike Chambers issued a statement and revealed some interessting facts. This is the most important one for me: “3. Binary sockets basically allow you to connect to anything, and create custom protocols. want to connect to an email, [...]