Re: [Flashcoders] search engine optimization for flash sites

2007-09-06 Thread Jiri Heitlager | dadata.org
Robin, maybe this will help. It wont solve all your problems, but could make a solution a bit easier. http://www.asual.com/swfaddress/ Jiri Robin Burrer wrote: Hi there, My client wants to have his website optimized for search engines. I don't know much about this topic. The binary data

[Flashcoders] Iterator question

2007-08-27 Thread Jiri Heitlager | dadata.org
Hello list, i have a page object that contains has a Array that holds pageElements. This is a storage for elements with an iPageElement interface. The page object has an destroy() method. When page.destroy() is called, it will loop trough the page.pageElements Array using an iterator. Every

[Flashcoders] Colin Moock Book - stores in Berlin

2007-07-16 Thread Jiri Heitlager | dadata.org
Hello, My question has not so much to do with actual coding, so I hope that it is not a problem posting it here. I am currently living in Berlin for a few months and I am looking for a bookstore where I can buy the new Colin Moock book on AS3. If somebody on the list happens to be living in

[Flashcoders] Preloading mp3 - onLoad vs GetBytesLoaded()

2007-06-29 Thread Jiri Heitlager | dadata.org
Hello list, I have a question on preloading mp3's. When I start preloading the mp3 I set the isstreaming to false. Then I check the bytesloaded compared to bytestotal en when that is 100% procent it means all is loaded When I start preloading the sound, I also delegate the function onLoad of

Re: [Flashcoders] Grid / Math - getting neighbouring positions

2007-06-18 Thread Jiri Heitlager | dadata.org
I'll take it ;) thanks for everybody's help. Jiri Merrill, Jason wrote: That is a nice solution, but it leaves me with the problem that starting from one point (3,2) it only produces a set of points of ring directly around the selected point. I am looking for a solution to get _all_ the

Re: [Flashcoders] Grid / Math - getting neighbouring positions

2007-06-17 Thread Jiri Heitlager | dadata.org
Please I really need help on this on, I am cracking my head over it. Bresenham algo is also not the way to go, because it is for circle's and to complex! I can only get one ring, arggg If I go one ring further then it results in many double values, calculate allready when doing the

Re: [Flashcoders] Grid / Math - getting neighbouring positions

2007-06-17 Thread Jiri Heitlager | dadata.org
Thxn Joshua and others, I have to look into that. In the mean time I came up with the following code. This takes in a vector and then calculates a 'ring' from that position. With this, I can scale up the 'radius' and get recursively get all the rings from a point from in to outer ring. My

[Flashcoders] Mathematics specialist - trigonometry

2007-06-16 Thread Jiri Heitlager | dadata.org
Hello list, I have a client that wants something like this: http://www.wdcs.co.uk/media/flash/whalebanner/content_pub_en.html Basically a huge image is split into tiles, and each load a tileImage. The user can drag a navigator (small view in ratio) over the image. It can occur that the tiles

[Flashcoders] Grid - getting neighbouring positions

2007-06-16 Thread Jiri Heitlager | dadata.org
[0,0] [1,0] [2,0] [3,0] [4,0] [0,1] [1,1] [2,1] [3,1] [4,1] [0,2] [1,2] [2,2] [3,2] [4,2] [0,3] [1,3] [2,3] [3,3] [4,3] [0,4] [1,4] [2,4] [3,4] [4,4] I have the following grid and would like to find the neighbouring positions of a certain point, going in a radius from in to out, covering all

[Flashcoders] Grid / Math - getting neighbouring positions

2007-06-16 Thread Jiri Heitlager | dadata.org
Hello list, I have the following grid and would like to find the neighbouring positions of a certain point, going in a radius from in to out, covering all the positions. [0,0] [1,0] [2,0] [3,0] [4,0] [0,1] [1,1] [2,1] [3,1] [4,1] [0,2] [1,2] [2,2] [3,2] [4,2] [0,3] [1,3] [2,3] [3,3] [4,3]

Re: [Flashcoders] Grid / Math - getting neighbouring positions

2007-06-16 Thread Jiri Heitlager | dadata.org
Jiri Heitlager | dadata.org wrote: Hello list, I have the following grid and would like to find the neighbouring positions of a certain point, going in a radius from in to out, covering all the positions. [0,0] [1,0] [2,0] [3,0] [4,0] [0,1] [1,1] [2,1] [3,1] [4,1] [0,2] [1,2] [2,2] [3,2

Re: [Flashcoders] Grid / Math - getting neighbouring positions

2007-06-16 Thread Jiri Heitlager | dadata.org
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jiri Heitlager | dadata.org Sent: Saturday, June 16, 2007 8:16 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Grid / Math - getting neighbouring positions Hello list, I have the following grid and would like to find

[Flashcoders] SWX and security

2007-05-25 Thread Jiri Heitlager | dadata.org
I have been reading up on SWX by Aral Balkan and have a question that maybe the list can answer. Dealing with sending data to a server from flash there is always the question of security. Making games in flash and sending data to a server is always a hassle when the sended data needs to be

Re: [Flashcoders] amfphp.org?

2007-05-17 Thread Jiri Heitlager | dadata.org
The new URL is http://www.amf-php.org Jiri Hershell Bryant wrote: See Count Schemula's reply...it's at sourceforge. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Tuesday, May 15, 2007 9:43 AM To: Flashcoders Subject: [Flashcoders]

[Flashcoders] Question on removing Proxied Functions and EventListeners

2007-05-08 Thread Jiri Heitlager | dadata.org
Hello List, I was wondering if I am doing something correctly when adding listeners to objects. My question is, if I remove the listener is the code below then the right way. Do I use the Proxy class (or mx.utils.Delegate) also when I remove the listener?? //adding a listener

[Flashcoders] Question on removeEventListener and Delegate callback

2007-05-08 Thread Jiri Heitlager | dadata.org
Hello List, I was wondering if I am doing something correctly when adding listeners to objects. My question is, if I remove the listener is the code below then the right way. Do I use the Proxy class (or mx.utils.Delegate) also when I remove the listener?? //adding a listener

[Flashcoders] Question on removeEventListener and Delegate callback

2007-05-08 Thread Jiri Heitlager | dadata.org
I was wondering if I am doing something correctly when adding listeners to objects. My question is, if I remove the listener is the code below then the right way. Do I use the Proxy class (or mx.utils.Delegate) also when I remove the listener?? //adding a listener

[Flashcoders] Question on removeEventListener and Delegate callback

2007-05-07 Thread Jiri Heitlager | dadata.org
I was wondering if I am doing something correctly when adding listeners to objects. My question is, if I remove the listener is the code below then the right way. Do I use the Proxy class (or mx.utils.Delegate) also when I remove the listener?? //adding a listener

[Flashcoders] Matrix Building

2007-04-26 Thread Jiri Heitlager | dadata.org
Can somebody help me out with dynamically building a matrix of clips. Well it is not really a matrix, see example: 1 2 3 4 12 5 11 6 10 9 8 7 Thanks.. Jiri ___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] Matrix Building

2007-04-26 Thread Jiri Heitlager | dadata.org
Can somebody help me out with dynamically building a matrix of clips. Well it is not really a matrix, see example: 1 2 3 4 12 5 11 6 10 9 8 7 Thanks.. Jiri ___ Flashcoders@chattyfig.figleaf.com To change your subscription

[Flashcoders] Init generic clip

2007-04-18 Thread Jiri Heitlager | dadata.org
Hello list, I have made a very simpele MovieClip that functions as a generic button, this is clip 'gen_btn_mc'. For the designers it is important that I place the gen_btn_mc on stage and not attach it at runtime. The gen_btn_mc clip itself has a few functions on the 1st frame of its timeline,

Re: [Flashcoders] Init generic clip

2007-04-18 Thread Jiri Heitlager | dadata.org
to be executed before the frame of the timeline it is seen on is started. Is this possible. For more light on what I am trying to achive, the file can be downloaded here: playground.dadata.org/initButtonWoo.fla Jiri Heitlager | dadata.org wrote: Hello list, I have made a very simpele MovieClip

Re: [Flashcoders] AS2 TextField with html content question

2007-04-12 Thread Jiri Heitlager | dadata.org
I think you have to use a placeholder. So in you html code that is rendered in the input field set the width and height: img align='left' src='pics' width='100' height='100'/ To detect if images are loaded I think you will have to make something like a proxy class that handles the loading of