Posts tagged with JavaScript

Easing equation test tool

JavaScript

ease function tool I made a tool to write/test easing equation functions. It uses JavaScript syntax to evaluate the expression, which you can just type in. I found it helpful to test curves. I rolled out this one because I didn’t found a similar tool, most were Math or CSS related.

Read more

Create JSFL using Haxe

Haxe, JSFL

JSFL If you write a lot of JSFL scripts, it could be useful to have good code-completion. FlashDevelop has great Haxe support, and Haxe can compile to Javascript. JSFL is Javascript, so we can simply conclude you can create JSFL with Haxe out of the box, and have code completion on it.

Read more

console-log-viewer.js

JavaScript

console-log-viewer.js displays console logs and javascript errors in a div on top of your site. Useful for mobile webdevelopment. It is enabled in 5 seconds. Works on every device, every browser.

Read more

Javascript for AS3 developers

Code snippets, JavaScript

This article is some training for your JavaScript skills. I love Actionscript , and I am also starting to like JavaScript. HTML5 is an hot topic nowadays, and it seems using JavaScript is an important part of it, so why not learn more of it?

Read more

Flex tutorial – Build a calculator

Flex

With Flex you can create applications. So, why not start creating a very simple application, like a calculator?

How does a calculator work, in my opinion? Simple: it just evaluates a string. But how can we evaluate a simple string like “1+1″ in AS3? I think we can’t, because eval() isn’t supported in actionscript 3. So I search on google, and found some solutions for it. But nothing really satisfied me. I don’t want to use PHP or another serverside script for evaluating strings, do you? So why not using a client side script, like javascript?

I want to share how I did this to you, and also the process of creating a calculator.

Read more