Comments for ActionSnippet https://actionsnippet.com paste it Tue, 19 Mar 2024 11:57:27 +0000 Comment on ActionSnippet.zip by Cor https://actionsnippet.com/?p=2950#comment-2418 Cor Thu, 27 Mar 2014 06:41:04 +0000 http://actionsnippet.com/?p=2950#comment-2418 Hi!! I’d love to have this zip… if I still can. Thank you! Hi!! I’d love to have this zip… if I still can.

Thank you!

]]>
Comment on QuickBox2D Editor 2B Released by mia https://actionsnippet.com/?p=2880#comment-2372 mia Thu, 30 Jan 2014 07:18:20 +0000 http://actionsnippet.com/?p=2880#comment-2372 I'm using a touch panel Drag the object Is it possible in the touch panel I’m using a touch panel
Drag the object Is it possible in the touch panel

]]>
Comment on ActionSnippet.zip by iton https://actionsnippet.com/?p=2950#comment-2292 iton Tue, 03 Sep 2013 09:29:30 +0000 http://actionsnippet.com/?p=2950#comment-2292 zip - interesting to see zip - interesting to see

]]>
Comment on drawTriangles() Terrain by Nima https://actionsnippet.com/?p=1726#comment-2290 Nima Tue, 27 Aug 2013 23:05:15 +0000 http://actionsnippet.com/?p=1726#comment-2290 U ared the one of the Gods of AS(ing)!!! U ared the one of the Gods of AS(ing)!!!

]]>
Comment on HTML5 Canvas Tutorial by George https://actionsnippet.com/?p=2975#comment-2288 George Sun, 18 Aug 2013 19:54:36 +0000 http://actionsnippet.com/?p=2975#comment-2288 You have helped me understand the Canvas concept. Thank you You have helped me understand the Canvas concept. Thank you

]]>
Comment on ActionSnippet.zip by George https://actionsnippet.com/?p=2950#comment-2287 George Sun, 18 Aug 2013 19:53:00 +0000 http://actionsnippet.com/?p=2950#comment-2287 I would like the actionscript.zip download if it is still available. Learning a lot about HTML5 here too. Great work! I would like the actionscript.zip download if it is still available. Learning a lot about HTML5 here too. Great work!

]]>
Comment on HTML5 Canvas Tutorial by Seke1412 https://actionsnippet.com/?p=2975#comment-2286 Seke1412 Fri, 16 Aug 2013 07:44:44 +0000 http://actionsnippet.com/?p=2975#comment-2286 hi Zevan, i’ve just use your equation as follow: x = r sin(u) cos(v) y = r cos(u) cos(v) z = r sin(v) and i’ve just success create a sphere (a ball actually) by multi shape, but i don’t know how to fix their rotation, can you explain more about this? hi Zevan, i’ve just use your equation as follow:
x = r sin(u) cos(v)
y = r cos(u) cos(v)
z = r sin(v)
and i’ve just success create a sphere (a ball actually) by multi shape, but i don’t know how to fix their rotation, can you explain more about this?

]]>
Comment on ActionSnippet.zip by kapeed https://actionsnippet.com/?p=2950#comment-2269 kapeed Thu, 04 Jul 2013 07:03:19 +0000 http://actionsnippet.com/?p=2950#comment-2269 thanks if u could send me your zippped code thnks in advance thanks if u could send me your zippped code
thnks in advance

]]>
Comment on QuickBox2D Contacts Part 3 by Necmi.demirkeser https://actionsnippet.com/?p=2201#comment-2250 Necmi.demirkeser Wed, 15 May 2013 21:52:56 +0000 http://actionsnippet.com/?p=2201#comment-2250 Solution for "RangeError: Error #1005:" You can delete items in array. But array itself is not getting empty. You need to splice the array after destroying object. function clearArrayItem(no:int) { items.splice(no,1); } for (var k:int = 0; k < items.length; k++) { if (contacts.inCurrentContact(items[k])) { items[k].destroy(); //destroy item setTimeout(clearArrayItem,10,k); //empty array element } } Good library, but we need Kinetics object from newer version of BOX2D Solution for “RangeError: Error #1005:”

You can delete items in array. But array itself is not getting empty. You need to splice the array after destroying object.

function clearArrayItem(no:int)
{
items.splice(no,1);
}

for (var k:int = 0; k < items.length; k++)
{
if (contacts.inCurrentContact(items[k]))
{
items[k].destroy(); //destroy item
setTimeout(clearArrayItem,10,k); //empty array element
}
}

Good library, but we need Kinetics object from newer version of BOX2D

]]>
Comment on Tausworthe Random Numbers (seeded) by Eric https://actionsnippet.com/?p=809#comment-2221 Eric Sat, 09 Mar 2013 01:22:39 +0000 http://actionsnippet.com/?p=809#comment-2221 One tausworth method looks a little better. notice the black banding at the bottom of math.random. Try multiple tausworth methods together, and google Central Limit therom. Also make a .wav file from your code and listen. you will be able to hear differences. One tausworth method looks a little better. notice the black banding at the bottom of math.random.

Try multiple tausworth methods together, and google Central Limit therom. Also make a .wav file from your code and listen. you will be able to hear differences.

]]>