<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Another Web Log</title>
	<link>http://blog.indopalta.net</link>
	<description>Just another web log</description>
	<pubDate>Sun, 06 Jan 2008 16:29:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Display Objects</title>
		<link>http://blog.indopalta.net/?p=37&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=37&amp;language=en#comments</comments>
		<pubDate>Sun, 06 Jan 2008 16:27:58 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Flash &#038; AS 3.0]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=37</guid>
		<description><![CDATA[Big changes in ActionScript 3.0 are about handling and working with display objects. While ActionScript 2.0 we only knew MovieClip, Graphic and Button, now there are additional display object instances as :
- Sprite (just alike MovieClip but without frame inside it)
- Shape (alike the Sprite, minus the mouse and keyboard interactive)
- Bitmap (only to displays [...]]]></description>
			<content:encoded><![CDATA[<p>Big changes in ActionScript 3.0 are about handling and working with display objects. While ActionScript 2.0 we only knew MovieClip, Graphic and Button, now there are additional display object instances as :<br />
- Sprite (just alike MovieClip but without frame inside it)<br />
- Shape (alike the Sprite, minus the mouse and keyboard interactive)<br />
- Bitmap (only to displays bitmap)<br />
- Loader (as a container for loaded content like SWF or images(bitmaps)</p>
<p>And as previously, each display objects hold properties we can access through our script. ActionScript 3.0 still have the properties we used to know, but have slight changes in the naming, mostly are the name that using underscore like _x, _y, _width, _height, etc and now simply x, y, width, height, etc. Some of this properties are not only changed in naming, but also how the value represent. For example :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #808080; font-style: italic;">//ActionScript 2.0</span>
mymovie.<span style="color: #0066CC;">_x</span> = <span style="color: #cc66cc;">100</span>;<span style="color: #808080; font-style: italic;">// x position value = 100</span>
mymovie.<span style="color: #0066CC;">_xscale</span> = <span style="color: #cc66cc;">200</span>;<span style="color: #808080; font-style: italic;">// x scaling to 200%</span>
mymovie.<span style="color: #0066CC;">_alpha</span> = <span style="color: #cc66cc;">10</span>;<span style="color: #808080; font-style: italic;">// alpha channel to 10%</span>
&nbsp;
&nbsp;
<span style="color: #808080; font-style: italic;">//ActionScript 3.0</span>
mymovie.<span style="color: #006600;">x</span> = <span style="color: #cc66cc;">100</span>;<span style="color: #808080; font-style: italic;">// x position value = 100</span>
mymovie.<span style="color: #006600;">xscale</span> = <span style="color: #cc66cc;">2</span>;<span style="color: #808080; font-style: italic;">// x scaling to 200%</span>
mymovie.<span style="color: #006600;">alpha</span> = <span style="color: #cc66cc;">0.1</span><span style="color: #808080; font-style: italic;">// alpha channel to 10%</span></pre></div></div>

<p>For button symbols now are instances of a new class, SimpleButton and Graphics become Shape. And dynamic text become instances of TextField. ActionScript 3.0 now will not allow us to place code inside Button or MovieClip. All code must be written in timelines or sepparate ActionScript files.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=37&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Classes</title>
		<link>http://blog.indopalta.net/?p=35&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=35&amp;language=en#comments</comments>
		<pubDate>Sun, 06 Jan 2008 16:23:00 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Flash &#038; AS 3.0]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=35</guid>
		<description><![CDATA[In ActionScript there are sealed class and dynamic class. And in ActionScript 2.0, sealed class enforcement were only handled by the compiler. Which mean we still can do some workaround the restriction using array access operator to reference variables. For example :

var mysound:Sound = new Sound&#40;&#41;;
mysound&#91;'myownvalue'&#93; = 2;

In ActionScript 3.0, we can not longer do [...]]]></description>
			<content:encoded><![CDATA[<p>In ActionScript there are sealed class and dynamic class. And in ActionScript 2.0, sealed class enforcement were only handled by the compiler. Which mean we still can do some workaround the restriction using array access operator to reference variables. For example :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> mysound:<span style="color: #0066CC;">Sound</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Sound</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
mysound<span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">'myownvalue'</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #cc66cc;">2</span>;</pre></div></div>

<p>In ActionScript 3.0, we can not longer do that workaround. Sealed classes enforced are not only in compile time, but also in runtime. So we must note which objects are dynamic and which are not. And here is the list of dynamic classes that commonly used :<br />
- Array<br />
- Object<br />
- Date<br />
- Dictionary<br />
- Error<br />
- MovieClip<br />
- RegExp<br />
- StyleSheet<br />
- URL Variables<br />
- XML and XMLList</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=35&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Functions</title>
		<link>http://blog.indopalta.net/?p=33&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=33&amp;language=en#comments</comments>
		<pubDate>Sun, 06 Jan 2008 16:07:22 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Flash &#038; AS 3.0]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=33</guid>
		<description><![CDATA[Functions in flash can be defined in two ways. First you can create a function using :
function [function name]([parameters]){[codes]}
and second way, you can also write :
var [function name] = function([parameters]){[codes]}
Both way with give you the same result. But by using variable defining (the second way), you can only define the function once in one timeline.
For [...]]]></description>
			<content:encoded><![CDATA[<p>Functions in flash can be defined in two ways. First you can create a function using :<br />
function [function name]([parameters]){[codes]}<br />
and second way, you can also write :<br />
var [function name] = function([parameters]){[codes]}<br />
Both way with give you the same result. But by using variable defining (the second way), you can only define the function once in one timeline.</p>
<p>For better debuging, it is highly recommended to assign type to the functions. For example :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">function</span> doubling<span style="color: #66cc66;">&#40;</span>val:<span style="color: #0066CC;">Number</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Number</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #b1b100;">return</span> val * <span style="color: #cc66cc;">2</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> doubling:<span style="color: #000000; font-weight: bold;">Function</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>val:<span style="color: #0066CC;">Number</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Number</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #b1b100;">return</span> val * <span style="color: #cc66cc;">2</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>In ActionScript 2.0, if you want to create a function that received no parameters, you must used Void type in the parameter list. In ActionScript 3.0 you must just leave the parameter list empty. And void (no capitalized) type is use as the function return type itself which defined the function to return nothing. And in ActionScript 2.0, if you not give anything at the parameter list, it means the function could receive arguments passed to it by the caller, and get the arguments using the arguments object in the function. But in ActionScript 3.0, by omitting parameter list, it really mean that the function will not received anything. And if you try to pass any arguments, it will return error. Instead, to able to receive arguments, you must use a new parameter type known as &#8230; (rest) in the parameter list and will written as &#8230;[argumentsArray] where the argumentsArray is name of the Array containing the arguments.<br />
So function would look like :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">function</span> traceall<span style="color: #66cc66;">&#40;</span>...<span style="color: #006600;">vals</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><span style="color: #66cc66;">&#123;</span>
	<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>vals<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
traceall<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;1&quot;</span>, <span style="color: #ff0000;">&quot;a&quot;</span>, <span style="color: #000000; font-weight: bold;">true</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #808080; font-style: italic;">//traces 1,a,true</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=33&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>SCAM</title>
		<link>http://blog.indopalta.net/?p=31&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=31&amp;language=en#comments</comments>
		<pubDate>Fri, 04 Jan 2008 18:11:23 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[SCAM]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=31&amp;language=en</guid>
		<description><![CDATA[At wikipedia, scam is defined as a confidence trick. It may refer to all type of tricks I have wrote about before. But here I will define it differently. I classified SCAM as tricks which using website as the media to convince people spending money without any suspicious. And by the time the victims realize [...]]]></description>
			<content:encoded><![CDATA[<p>At wikipedia, <a href="http://en.wikipedia.org/wiki/Scam" title="http://en.wikipedia.org/wiki/Scam" target="_blank">scam</a> is defined as a confidence trick. It may refer to all type of tricks I have wrote about before. But here I will define it differently. I classified SCAM as tricks which using website as the media to convince people spending money without any suspicious. And by the time the victims realize they have been tricked, the money is gone.</p>
<p>And there were so many schemes using in the tricks. Some of them use money game schemes like HYIP or Internet Investment. I do not said that all of Internet Investment is always a SCAM, but lot of them were. And some schemes pretends as online store selling interesting stuffs like electronic equipment, computer, cellphone or other things. Mostly they offering half of the normal price. And as always, when it sounds too good to be true, then mostly it is untrue.</p>
<p>I still try to get SCAM website I ever saw for examples. But since I never save any of them, it would need more time than I expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=31&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Phishing via Yahoo Messenger</title>
		<link>http://blog.indopalta.net/?p=29&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=29&amp;language=en#comments</comments>
		<pubDate>Mon, 10 Dec 2007 06:17:40 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=29</guid>
		<description><![CDATA[I know that I promise to write about scam at my last post in this category. But today a phishing message appear in my Yahoo Messenger, and I feel I must write about this one too.
The message were came from one of my contact. You can see the message at picture below.

(Click to see larger [...]]]></description>
			<content:encoded><![CDATA[<p>I know that I promise to write about scam at my last post in this category. But today a phishing message appear in my Yahoo Messenger, and I feel I must write about this one too.</p>
<p>The message were came from one of my contact. You can see the message at picture below.</p>
<p><a href="http://ptanuri.googlepages.com/yh_phishing00.jpg" title="Yahoo Phishing 00" target="_blank"><img src="http://ptanuri.googlepages.com/yh_phishing00_thumb.jpg" title="Yahoo Phishing 00" alt="Yahoo Phishing 00" border="0" height="185" width="200" /></a><br />
(Click to see larger image)</p>
<p>I know this is phishing, but I must click the link provided in the message to show you the phishing process. So after I clicked the link, my browser open me this page.</p>
<p><a href="http://ptanuri.googlepages.com/yh_phishing01.jpg" title="Yahoo Phishing 01" target="_blank"><img src="http://ptanuri.googlepages.com/yh_phishing01_thumb.jpg" title="Yahoo Phishing 01" alt="Yahoo Phishing 01" border="0" height="200" width="270" /></a><br />
(Click to see larger image)</p>
<p>As you can see in the address bar, it show page from geocities.com which is a free web hosting service provider. And I try to view the page source, and then find the word &#8220;action&#8221; as this is part of the tag &lt;form&gt;  which have the text input inside it.</p>
<p><a href="http://ptanuri.googlepages.com/yh_phishing02.jpg" title="Yahoo Phishing 02" target="_blank"><img src="http://ptanuri.googlepages.com/yh_phishing02_thumb.jpg" title="Yahoo Phishing 02" alt="Yahoo Phishing 02" border="0" height="161" width="300" /></a><br />
(Click to see larger image)</p>
<p>We can see there is an input that have value &#8220;goldz.love@yahoo.com&#8221; this is the email address of the man behind this phishing. And because this email using yahoo service, I then report this phishing page using yahoo phishing report at <a href="http://help.yahoo.com/l/us/yahoo/security/forms/phishing.html" title="Report phishing to yahoo" target="_blank">http://help.yahoo.com/l/us/yahoo/security/forms/phishing.html</a></p>
<p>Note: You might try the page address shown in the first picture, but never ever enter anything to the form.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=29&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Multilingual</title>
		<link>http://blog.indopalta.net/?p=27&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=27&amp;language=en#comments</comments>
		<pubDate>Fri, 07 Dec 2007 11:55:17 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/?p=27</guid>
		<description><![CDATA[Since  the first time I show this blog to people, there was some request to post in Bahasa Indonesia. So started from last week, I tried to add multilingual feature for this blog. And now I have done it. As you can see above, there are 2 choices of language you can choose. English and [...]]]></description>
			<content:encoded><![CDATA[<p>Since  the first time I show this blog to people, there was some request to post in Bahasa Indonesia. So started from last week, I tried to add multilingual feature for this blog. And now I have done it. As you can see above, there are 2 choices of language you can choose. English and Indonesia.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=27&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Identify a Domain Name</title>
		<link>http://blog.indopalta.net/?p=14&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=14&amp;language=en#comments</comments>
		<pubDate>Thu, 29 Nov 2007 05:57:48 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/2007/11/29/identify-a-domain-name/</guid>
		<description><![CDATA[This won&#8217;t be a new information for some of us, who has spent years surfing the cyberspaces. But for newbies, this information could help them from falling into phishing traps.
At early years of internet booming, there was only few domain name extension such as .com and .gov. But today, more and more new extension were [...]]]></description>
			<content:encoded><![CDATA[<p>This won&#8217;t be a new information for some of us, who has spent years surfing the cyberspaces. But for newbies, this information could help them from falling into phishing traps.</p>
<p>At early years of internet booming, there was only few domain name extension such as .com and .gov. But today, more and more new extension were added to the list in order to accommodate large internet user all around the world. And to make it simple, I will try to explain about these domain names in categories.</p>
<p>The categories would be by:<br />
1. Public regular / common<br />
2. Regional<br />
3. Business Lines</p>
<p><strong>Public regular / common domain name </strong></p>
<p>This kind of domain name can be registered and used by everybody. There is no limitation to whom it may be registered. As long as you have money to pay for it and no one own it, you can register and use it. Usually, the price is about 7USD - 10USD /year. It is not expensive at all. The domain name have extensions we are very familiar with. Like .com, .net, .info, .org, .ws.</p>
<p><strong>Regional domain name</strong></p>
<p>This domain name, used exclusively in a country. The original extension is the country code it self.</p>
<p>For example :<br />
1. Indonesia = .id<br />
2. Japan = .jp<br />
3. Hongkong = .hk<br />
4. China = .ch<br />
5. Singapore = .sg</p>
<p>But you can&#8217;t register to use this regional extensions (example : paulus.id). Instead, there a domain administrator which maintain a sub domain name to use with the extension. This sub domain name you can use will be vary depend on the regional domain administrator policy.</p>
<p>For in Indonesia, there is PANDI who administer this sub domain name. And the sub domain name for Indonesia is :</p>
<p>1. .co.id (for company)<br />
2. .ac.id (usually for educational institute)<br />
3. .go.id (special for government )<br />
and more</p>
<p>To use this domain extensions, you have follow the regional policy. So you can not register in anonymous as .com or other.</p>
<p><strong>Business Lines </strong></p>
<p>And this last category, is domain name extension which made to identify special business line of the company using it. Example :</p>
<p>1. .tv (for tv station)<br />
2. .edu (for educational)<br />
3. .org (organizations)<br />
4. .info (information provider, such as wikipedia. But can also use for others)<br />
5. .gov (government, but usually for US government other country will use the regional extensions)<br />
6. .mil (militar, as the .gov, this also used by US military)<br />
and more.</p>
<p>This kind of domain name usually ask for your business title to verify the registration. But for .org and .info I don&#8217;t think they will do that as I could register to use them easily.</p>
<p>Ok, now we have know the domain extensions that formed the domain name, and we will move on.</p>
<p>A phishing usually create a domain name sound or look a like the real domain name they want to mimic. For example, if they want to mimic the google site to fools your eyes, the might be create a domain name like example below :<br />
- gogle.com<br />
- gooogle.com<br />
- goooogle.com<br />
etc.</p>
<p>So you must remember how to write the domain name correctly. Specially if it is for your online banking. Write it down if necessary (but don&#8217;t write down your user id and password of course).</p>
<p>Beside that way above, they (phisher) can also create a sub domain name, like :<br />
- google.mydomain.com<br />
- google.freehosting.com<br />
- google_activate_account.anotherhosting.com<br />
- etc.</p>
<p>Pay attention to the domain name. Sub domain name is separated by dot (.) from the main domain name. Sub domain can be anything they want. But the main domain name will tell you if it real or not. Usually the phishing site will use a free hosting or free web for placed their web pages that mimic some original pages. This is to prepare a complete escape and will be almost impossible to track down the real person behind the scheme. So the only way and safest way to deal with them, is to be aware.</p>
<p>There is another kind of fraud, that fools visitor to spent money in their site. We call it SCAM. I will write about this too. Too many victims falls in to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=14&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Intro to AS 3.0</title>
		<link>http://blog.indopalta.net/?p=13&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=13&amp;language=en#comments</comments>
		<pubDate>Mon, 26 Nov 2007 06:54:43 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Flash &#038; AS 3.0]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/2007/11/26/intro-to-as-30/</guid>
		<description><![CDATA[ActionScript 3.0 have a lot of changes from the previous version. Very different so it need a completely new virtual machine to run it. But it still ActionScript, with very little syntax changed. Sometimes ActionScript 3.0 equivalent for ActionScript 2.0 will look similar. But not always that way.  But quite a lot of changes to [...]]]></description>
			<content:encoded><![CDATA[<p>ActionScript 3.0 have a lot of changes from the previous version. Very different so it need a completely new virtual machine to run it. But it still ActionScript, with very little syntax changed. Sometimes ActionScript 3.0 equivalent for ActionScript 2.0 will look similar. But not always that way.  But quite a lot of changes to make a direct conversion very difficult.</p>
<p>So what is new in ActionScript 3.0 ?</p>
<p>1. Runtime exceptions<br />
2. Runtime variable typing<br />
3. Sealed classes<br />
4. Method closures<br />
5. E4X<br />
6. Regular expressions<br />
7. Namespaces<br />
8. int and uint data types<br />
9. New display list model<br />
10. New event model</p>
<p><strong>Differences ?</strong></p>
<p><strong>Script Placement</strong></p>
<p>You can only placed your script in Timeline or in Class files. You can&#8217;t placed your script in a button, or movieclip, etc as you used to in ActionScript 1.0 and 2.0</p>
<p><strong>Variables</strong><br />
- In ActionScript 1.0 and 2.0 you can define variable using or without &#8220;var&#8221;. In ActionScript 3.0, using &#8220;var&#8221; is a must.<br />
- ActionScript 3.0 did not accept naming conflicts in a scope. example, can not re define a variable. Variable must defined only onces in a scope. If you try so, you will get error.<br />
For example :</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> x = value; <span style="color: #808080; font-style: italic;">// ok</span>
&nbsp;
...
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> x = another value; <span style="color: #808080; font-style: italic;">// error; you can only use var once</span></pre></td></tr></table></div>

<p>As in ActionScript 2.0 you can specifying a variable type. But in ActionScript 2.0, variable type only used in compile time error checking. In ActionScript 3.0, variable type will retain in playback or runtime. And as mentioned above, ActionScript 3.0 we have new variables types, int (integer) and uint (unsigned integer). And you can use &#8220;*&#8221; (untyped) for special type which represent no type. Which can hold value for any kinds of type.</p>
<p>But it is better to specify type, as it lead to better error checking. And performance.</p>
<p>Also, in Action Script 3.0 we have different data types default value. Here the list:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="actionscript"><span style="color: #000000; font-weight: bold;">var</span> untyped:*; <span style="color: #808080; font-style: italic;">// undefined</span>
<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">boolean</span>:<span style="color: #0066CC;">Boolean</span>; <span style="color: #808080; font-style: italic;">// false</span>
<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">number</span>:<span style="color: #0066CC;">Number</span>; <span style="color: #808080; font-style: italic;">// NaN</span>
<span style="color: #000000; font-weight: bold;">var</span> integer:<span style="color: #0066CC;">int</span>; <span style="color: #808080; font-style: italic;">// 0</span>
<span style="color: #000000; font-weight: bold;">var</span> unsignedInteger:uint; <span style="color: #808080; font-style: italic;">// 0</span>
<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">string</span>:<span style="color: #0066CC;">String</span>; <span style="color: #808080; font-style: italic;">// null</span>
<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">object</span>:<span style="color: #0066CC;">Object</span>; <span style="color: #808080; font-style: italic;">// null</span></pre></td></tr></table></div>

<p>The int and uint variables types are 32-bit integers.</p>
<p>One other type to mention is the special void type. In ActionScript 2.0 it was capitalized, and no longer in ActionScript 3.0. This type is only applies to functions.</p>
<p>If you interested to have some cheat sheets for  ActionScript, you can visit <a href="http://www.actionscriptcheatsheet.com" target="_blank">http://www.actionscriptcheatsheet.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=13&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Another Archive</title>
		<link>http://blog.indopalta.net/?p=12&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=12&amp;language=en#comments</comments>
		<pubDate>Sat, 24 Nov 2007 20:55:55 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/2007/11/25/another-archive/</guid>
		<description><![CDATA[I found another archive in my old files. Here for you to enjoy.

Dendam
&#160;
Hatiku sedang terbakar API LAKNAT
Maaf, bukan ku ingin jahat,
tapi kau tanamkan dendam yang melekat
lekat di hati hingga sulit tuk lepas
&#160;
Kau terus menyerang dan menginjak
sedang kau sendiri terus melunjak
simpan gertakmu untuk anak anak..
yang lain boleh gentar, tapi maaf aku tidak..
&#160;
Baru saja kau nyalakan api
api [...]]]></description>
			<content:encoded><![CDATA[<p>I found another archive in my old files. Here for you to enjoy.</p>

<div class="wp_syntax"><div class="code"><pre>Dendam
&nbsp;
Hatiku sedang terbakar API LAKNAT
Maaf, bukan ku ingin jahat,
tapi kau tanamkan dendam yang melekat
lekat di hati hingga sulit tuk lepas
&nbsp;
Kau terus menyerang dan menginjak
sedang kau sendiri terus melunjak
simpan gertakmu untuk anak anak..
yang lain boleh gentar, tapi maaf aku tidak..
&nbsp;
Baru saja kau nyalakan api
api laknat yang membakar hati
kau kobarkan dendam dalam hati
awas meledak, sempatkah kau lari sembunyi ..
&nbsp;
Paulus T.</pre></div></div>


<div class="wp_syntax"><div class="code"><pre>ENTAH
&nbsp;
entah apa yang di kepala
entah pula yang dirasa
terasa kini hanya hampa
seakan hilang sang asa
&nbsp;
semakin besar rasa cinta
besar pula kudapat gundah
tak tahu mengadu ke mana
tumpahkan sesal yang kurasa
&nbsp;
tak ada lagi air mata
seakan semua telah sirna
menguap hilang di udara
bersama asa dalam dada
&nbsp;
belum lama keluarkan tawa
belum puas rasakan suka
tiba tiba kini telah punah
sirna entah ke mana
&nbsp;
apa salah telah kubuat
apa dosa telah kutanam
mencoba cari tahu
jawabnya entah dan entah
&nbsp;
Paulus T.</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=12&amp;language=en</wfw:commentRss>
		</item>
		<item>
		<title>Flash and Me</title>
		<link>http://blog.indopalta.net/?p=11&amp;language=en</link>
		<comments>http://blog.indopalta.net/?p=11&amp;language=en#comments</comments>
		<pubDate>Sat, 24 Nov 2007 20:31:17 +0000</pubDate>
		<dc:creator>Paulus T</dc:creator>
		
		<category><![CDATA[Flash &#038; AS 3.0]]></category>

		<guid isPermaLink="false">http://blog.indopalta.net/2007/11/25/flash-and-me/</guid>
		<description><![CDATA[Used to be known as Macromedia Flash.
I still remember the first time I open the Flash IDE. It was still in version 3, and I still in fourth semester in the University. In the multimedia class, I have an assignment to create animation using Flash. I don&#8217;t ever even heard about this thing before. So [...]]]></description>
			<content:encoded><![CDATA[<p>Used to be known as Macromedia Flash.</p>
<p>I still remember the first time I open the Flash IDE. It was still in version 3, and I still in fourth semester in the University. In the multimedia class, I have an assignment to create animation using Flash. I don&#8217;t ever even heard about this thing before. So that the first time I learn and try the tweening and shape motion.  I got A for that assignment. I love this thing, but then after that multimedia class, I don&#8217;t touch Flash for years.</p>
<p>Got back to Flash (still named Macromedia Flash) in 2000 at job. At that time, Flash was already in version 5 with the new improvement of Action Script. Now we identify it as Action Script 1.0 which was an amazing improvement from the original Action Script. But then, I still not much got into the programming. My job required me to create animation for a Flash based web portal for a big cigarettes company. And then to maintain flash animation for an Electronic company website. Flash animation, tweening etc was my daily activity then. I start learn the Action Script but still limited to just some few function needed to control the time line.</p>
<p>One or two year(s) after that, Macromedia then release the version 6 or known as Macromedia Flash MX. There were more improvement at the Action Script. Added with new feature called Remoting. A lot of people around the world seem very interested the Flash Remoting. Some of them even create component to use the Remoting with other platform, such as PHP. Macromedia only release component to use the Remoting with proprietary platform like ColdFusion and .Net framework.</p>
<p>After that version, then released Flash MX 2004 with Action Script 2.0. More changes to the Action Script.  Together with it there were also Flex came out from the Macromedia Lab. After MX 2004, there is no more MX version. Following the MX 2004, it was Flash 8.</p>
<p>Then Macromedia bought by Adobe group and now we know Flash as Adobe Flash.</p>
<p>There is only One person I know as a Macromedia Certified Developer. The one and only in Indonesia. Not me of course. But it happened to be my friend. I learn a lot from him.</p>
<p>Adobe Flash now bundled with Adobe Creative Suite package. With more advanced Action Script version 3.0. A lot more different compared to version 1.0 and 2.0. Only run at Flash Player 9.0 or above. With this CS3, you would still able to create Flash using ActionScript 2.0 but will absolutely missing the greatest advantage offered by version 3.0 Action Script.</p>
<p>It is a whole new thing. And a lot to learn in order to adapt the AS 3.0. But all the efforts are worthed.</p>
<p>So here I will open a discussion about using the Action Script 3.0. I won&#8217;t talk about creating animation using the tween in time line. Here I will talk about Scripting and Programming.</p>
<p>Enjoy..</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.indopalta.net/?feed=rss2&amp;p=11&amp;language=en</wfw:commentRss>
		</item>
	</channel>
</rss>
