Privacy Policy
Privacy Policy for www.samburdge.co.uk
If you require any more information or have any questions about our privacy policy, please feel free to contact us by email at
At www.samburdge.co.uk, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by www.samburdge.co.uk and how it is used.
Log Files
Like many other Web sites, www.samburdge.co.uk makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user’s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.
Cookies and Web Beacons
www.samburdge.co.uk does use cookies to store information about visitors preferences, record user-specific information on which pages the user access or visit, customize Web page content based on visitors browser type or other information that the visitor sends via their browser.
Some of our advertising partners may use cookies and web beacons on our site. Our advertising partners include Google Adsense, .
These third-party ad servers or ad networks use technology to the advertisements and links that appear on www.samburdge.co.uk send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies ( such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.
www.samburdge.co.uk has no access to or control over these cookies that are used by third-party advertisers.
You should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. www.samburdge.co.uk's privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.
If you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers' respective websites.










This is very cool, thank you for sharing. I can't wait to try it
Hi, I tried this out and am having trouble getting it to work. Am I supposed to have 2 different layers, one for tadpole and one for mouse_mc? Also, my transparent pixels don't seem to be attached to my mouse…
Hi Sherry
They can be on separate layers, or both the same layer, it shouldn’t matter. Did you give the movie clips instance names in the ‘properties’ panel?
Sam
Hi there, just wondering if you’d have an tips on converting this to AS3. I’m very new to Flash and have been trying to do it all day!
Thanks in advance,
bex.
very nice !!!!!!!!!!
Hi, I know this is a little late in the game and not sure if anyone is still answering questions but…
What I’m looking to do is have the sprite (tadpole) freeze on mouse over; basically a button, and resume it’s motion on rollout.
Any help is appreciated.
Thanks,
Gray
i tried it and it worked! tnx
BUT i dont understand something. The tadpoles move quite smooth with an “ease out” first of all this looks nice but i dont understand why it moves like that. Second thing is… How can i also make an “ease in” So that they start moving slowly, then get to speed, then slow down en eventually stop… ?? can anyone help??
the function called newpos() basically does the following:
1. choose a rondom point on the stage
2. rotate to face the direction of that point
3. Move toward the point while decelerating to a stop
4. Once it is not moving repeat the process
@gray
to stop them moving try changing:
if(this.hitTest(_root.mouse_mc)){ this.newpos();}
to:
if(this.hitTest(_root.mouse_mc)){
this._x = this._x;
this._y = this._y;
}
@viezzz
sorry i don’t have time to code it and test it at the moment, but you need to look at these lines of code:
this._x += dx/acceleration;
this._y += dy/acceleration;
this is the code for the deceleration.
My idea would be to calculate a halfway point between the start and end position and make the tadpole accelerate towards the halfway point, and then deccelerate away from it.
Hope this helps!
where can i get copy of whole script?
Hi.. nice work. I wanted to increase the acceleration value, but the motion stops after a while if a higher value is used.
I just don’t get it why? maybe someone can give me a hint
Sweet little function man, cheers for the explanation!