<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Als Web Page</title>
	<atom:link href="http://www.alswebpage.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.alswebpage.net</link>
	<description>Web design and related technologies.</description>
	<lastBuildDate>Tue, 19 Apr 2011 23:20:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Welcome</title>
		<link>http://www.alswebpage.net/?p=23</link>
		<comments>http://www.alswebpage.net/?p=23#comments</comments>
		<pubDate>Sun, 14 Feb 2010 03:26:51 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=23</guid>
		<description><![CDATA[<img src="http://www.alswebpage.net/wp-content/uploads/2010/02/robot.png" alt="" title="Welcome Robot" width="200" height="200" class="alignleft size-full wp-image-226" /><p>Welcome to alswebpage.net.</p>
<p>This site will contain various information about web design including PHP, JavaScript, HTML and other scripting languages. There will be various reviews of gadgets and gizmos and most probably lots of other stuff that you might find interesting.</p>
]]></description>
			<content:encoded><![CDATA[<div class="announcement_post"><p><img src="http://www.alswebpage.net/wp-content/uploads/2010/02/robot.png" alt="" title="Welcome Robot" width="200" height="200" class="alignright size-full wp-image-226" />
<p>Welcome to alswebpage.net.</p>
<p>This site will contain various information about web design including PHP, JavaScript, HTML and other scripting languages. There will be various reviews of gadgets and gizmos and most probably lots of other stuff that you might find interesting.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial: Countdown to lunch (&amp; dinner) timer</title>
		<link>http://www.alswebpage.net/?p=370</link>
		<comments>http://www.alswebpage.net/?p=370#comments</comments>
		<pubDate>Wed, 06 Apr 2011 22:37:26 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=370</guid>
		<description><![CDATA[Introduction Here is some code i created for a countdown to lunch and dinner timer. Countdown to lunch from 23:00 – 10:59. Lunch time is from 11.00 &#8211; 14:59. Countdown to dinner from 15:00 – 17:59. Dinner time is from 18:00 &#8211; 22:59. Demo Source Files This project was created in Flash CS5 using ActionScript [...]]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>Here is some code i created for a countdown to lunch and dinner timer.</p>
<ul>
<li>Countdown to lunch from 23:00 – 10:59.</li>
<li>Lunch time is from 11.00 &#8211; 14:59.</li>
<li>Countdown to dinner from 15:00 – 17:59.</li>
<li>Dinner time is from 18:00 &#8211; 22:59.</li>
</ul>
<h3>Demo</h3>
<p><CENTER><br />
<object id="countdown" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="200" height="60" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"><param name="movie" value="http://www.alswebpage.net/wp-content/uploads/2011/04/countdown.swf" /><embed type="application/x-shockwave-flash" width="200" height="60" src="http://www.alswebpage.net/wp-content/uploads/2011/04/countdown.swf" name="countdown" pluginspage="http://www.adobe.com/go/getflashplayer"></embed></object><br />
</CENTER></p>
<h3>Source Files</h3>
<p>This project was created in Flash CS5 using ActionScript 3.0, the project is called &#8220;countdown&#8221;, you can find the &#8220;.swf&#8221; and &#8220;.fla&#8221; files below.</p>
<p>All the ActionScript is written in the first frame of the actions layer. The &#8220;Text&#8221; layer holds the various movie clips.</p>
<ul>
<li><a href="http://www.alswebpage.net/wp-content/uploads/2011/04/countdown.swf">countdown.swf</a></li>
<li><a href="http://www.alswebpage.net/wp-content/uploads/2011/04/countdown.fla">countdown.fla</a></li>
</ul>
<p>The code in the first frame is below. You will need 2 dynamic text fields in the first frame called;</p>
<ol>
<li>countdown</li>
<li>until</li>
</ol>
<h3>Source Code</h3>
<pre class="brush: as3; title: ; notranslate">
//Author: bigal@alswebpage.net
//Website: www.alswebpage.net
//Created on: 06/04/2011
this.onEnterFrame = function()
{
    //Stores the current date
    var today:Date = new Date();
    //Stores the Current Time
    var currentTime = today.getTime();
	//Get the values for the current time
    var sec = today.getSeconds();
    var min = today.getMinutes();
    var hours = today.getHours();
	//Do some maths to find out how long untill midnight
	hours = 23-hours;
	min = 59-min;
	sec = 59-sec;
	//If there are more than 13 hrs left in day
	if (hours &gt;= 13){
		text_out(hours-13,min,sec);
		until.text = &quot;UNTIL LUNCH!&quot;;
	}
	//If there are less than 13 and more than 9 hrs left in day
	else if(hours &gt;= 9){
		countdown.text = &quot;It's&quot;;
		until.text = &quot;LUNCH TIME!&quot;;
	}
	//If there are less than 9 and more than 6 hrs left in day
	else if(hours &gt;= 6){
		text_out(hours-6,min,sec);
		until.text = &quot;UNTIL DINNER!&quot;;
	}
	//If there are less than 6 and more than 1 hrs left in day
	else if(hours &gt;= 1){
		countdown.text = &quot;It's&quot;;
		until.text = &quot;DINNER TIME!&quot;;
	}
	//If there are less than 1 hrs left in day
	else{
		text_out(hours+11,min,sec);
		until.text = &quot;UNTIL LUNCH!&quot;;
	}
}
//Function to output formatted time
function text_out(hours,min,sec){
    //If 1 sec, adjust ending.
	if(sec == 1){
		sec =  sec+&quot; sec &quot;;
	}
	else{
		sec =  sec+&quot; secs &quot;;
	}
	//If 1 min, adjust ending.
	if(min == 1){
		min =  min+&quot; min &quot;;
	}
	else{
		min =  min+&quot; mins &quot;;
	}
	//If 1 hr, adjust ending.
	if(hours == 1){
		hours =  hours+&quot; hr &quot;;
	}
	else{
		hours =  hours+&quot; hrs &quot;;
	}
	//Output
	countdown.text = hours + min + sec;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=370</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial: Auto-size unscaled content to fit stage</title>
		<link>http://www.alswebpage.net/?p=346</link>
		<comments>http://www.alswebpage.net/?p=346#comments</comments>
		<pubDate>Fri, 01 Apr 2011 23:42:57 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=346</guid>
		<description><![CDATA[Introduction Five movie clips are created and will be positioned in the four corners and center of the movies stage. The different movie clips are repositioned when the window is resized, note how the content is not resized to fit the window but rather moves into the available space. This effect is useful for creating engaging websites that can utilize a large [...]]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>Five movie clips are created and will be positioned in the four corners and center of the movies stage. The different movie clips are repositioned when the window is resized, note how the content is not resized to fit the window but rather moves into the available space. This effect is useful for creating engaging websites that can utilize a large portion of screen real estate.</p>
<h3>Video Demo</h3>
<p>This video demo shows the code in action. Click on on the black screen below to start the video.</p>
<div id="wp_zdytfp_container_346" style="width:100%; height:400px; text-align:center; margin:auto;">
<div id="v_wp_zdytfp_container_346" style="width:100%; height:100%;">ZD YouTube FLV Player</div>
</div>
<script type="text/javascript">
var flashvars = {
vurl: "http://www.alswebpage.net/wp-content/uploads/2011/04/Flash-Size-to-Screen.flv",
yturl: "http://www.alswebpage.net/wp-content/plugins/zd-youtube-flv-player/fl_youTubeProxy.php"
};
var params = {
wmode: "transparent",
allowFullScreen: "true"
};
var attributes = {
id: "my_wp_zdytfp_container_346",
name: "my_wp_zdytfp_container_346"
};
swfobject.embedSWF("http://www.alswebpage.net/wp-content/plugins/zd-youtube-flv-player/flash/zdytflv-player-dark.swf", "v_wp_zdytfp_container_346", "600", "400", "9.0.0", false, flashvars, params, attributes);
</script>

<h3>Source Files</h3>
<p>This project was created in Flash CS5 using ActionScript 3.0, the project is called &#8220;FullscreenNoResize&#8221;, you can find the &#8220;.swf&#8221; and &#8220;.fla&#8221; files below.</p>
<p>All the ActionScript is written in the first frame of the actions layer. Other layers hold the various movie clips.</p>
<ul>
<li><a href="http://www.alswebpage.net/wp-content/uploads/2011/04/FullscreenNoResize.swf">FullscreenNoResize.swf</a></li>
<li><a href="http://www.alswebpage.net/wp-content/uploads/2011/04/FullscreenNoResize.fla">FullscreenNoResize.fla</a></li>
</ul>
<p>The code in the first frame is below. You will need 5 movie clips in the first frame called;</p>
<ol>
<li>top_left</li>
<li>top_right</li>
<li>center</li>
<li>bottom_left</li>
<li>bottom_right</li>
</ol>
<h3>Source Code</h3>
<pre class="brush: as3; title: ; notranslate">
//Author: bigal@alswebpage.net
//Website: www.alswebpage.net
//Created on: 02/04/2011
//Move Top Left Holder
top_left.x = 10;
top_left.y = 10;
//Move Top Right Holder
top_right.x = stage.stageWidth - top_right.width - 10;
top_right.y = 10;
//Move Center
center.x = stage.stageWidth/2 - center.width/2;
center.y = stage.stageHeight/2 - bottom_right.height/2;
//Move Top Left Holder
bottom_left.x = 10;
bottom_left.y = stage.stageHeight - bottom_left.height - 10;
//Move Bottom Right Holder
bottom_right.x = stage.stageWidth - bottom_right.width - 10;
bottom_right.y = stage.stageHeight - bottom_right.height - 10;
//Add listener to stage triggered by resize
stage.addEventListener(Event.RESIZE, resizeListener);
//Function called by resize
function resizeListener (e:Event):void {
//Uncomment the line below to see actual values in output window
//trace(&quot;stageWidth: &quot; + stage.stageWidth + &quot;\r&quot; + &quot;stageHeight: &quot; + stage.stageHeight);
//Move Top Left Holder
top_left.x = 10;
top_left.y = 10;
//Move Top Right Holder
top_right.x = stage.stageWidth - top_right.width - 10;
top_right.y = 10;
//Move Center
center.x = stage.stageWidth/2 - center.width/2;
center.y = stage.stageHeight/2 - bottom_right.height/2;
//Move Top Left Holder
bottom_left.x = 10;
bottom_left.y = stage.stageHeight - bottom_left.height - 10;
//Move Bottom Right Holder
bottom_right.x = stage.stageWidth - bottom_right.width - 10;
bottom_right.y = stage.stageHeight - bottom_right.height - 10;
}
//Set the stage so it does not scale
stage.scaleMode = StageScaleMode.NO_SCALE;
//Align the stage so that top left is the origin
stage.align = StageAlign.TOP_LEFT;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=346</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.alswebpage.net/wp-content/uploads/2011/04/Flash-Size-to-Screen.flv" length="2309076" type="video/x-flv" />
		</item>
		<item>
		<title>iPhone Backgrounds</title>
		<link>http://www.alswebpage.net/?p=316</link>
		<comments>http://www.alswebpage.net/?p=316#comments</comments>
		<pubDate>Thu, 03 Feb 2011 00:21:44 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=316</guid>
		<description><![CDATA[Here is a collection of background images for the iPhone. All images are 320 x 480 pixels in size.]]></description>
			<content:encoded><![CDATA[<p>Here is a collection of background images for the iPhone. All images are 320 x 480 pixels in size.</p>

<a href='http://www.alswebpage.net/?attachment_id=317' title='Metal Mesh'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Metal-Mesh-150x150.jpg" class="attachment-thumbnail" alt="Metal Mesh" title="Metal Mesh" /></a>
<a href='http://www.alswebpage.net/?attachment_id=318' title='Metal Grid'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Metal-Grid-150x150.jpg" class="attachment-thumbnail" alt="Metal Grid" title="Metal Grid" /></a>
<a href='http://www.alswebpage.net/?attachment_id=321' title='GreenPub'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/GreenPub-150x150.jpg" class="attachment-thumbnail" alt="GreenPub" title="GreenPub" /></a>
<a href='http://www.alswebpage.net/?attachment_id=322' title='Nuclear Symbol iPhone Wallpaper'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Radioactive-150x150.jpg" class="attachment-thumbnail" alt="Nuclear Symbol iPhone Wallpaper" title="Nuclear Symbol iPhone Wallpaper" /></a>
<a href='http://www.alswebpage.net/?attachment_id=323' title='RainWindow'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/RainWindow-150x150.jpg" class="attachment-thumbnail" alt="RainWindow" title="RainWindow" /></a>
<a href='http://www.alswebpage.net/?attachment_id=324' title='Rays'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Rays-150x150.jpg" class="attachment-thumbnail" alt="Rays" title="Rays" /></a>
<a href='http://www.alswebpage.net/?attachment_id=325' title='Skull'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Skull-150x150.jpg" class="attachment-thumbnail" alt="Skull" title="Skull" /></a>
<a href='http://www.alswebpage.net/?attachment_id=327' title='BlueStripe'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/BlueStripe-150x150.jpg" class="attachment-thumbnail" alt="BlueStripe" title="BlueStripe" /></a>
<a href='http://www.alswebpage.net/?attachment_id=328' title='BlueVector'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/BlueVector-150x150.jpg" class="attachment-thumbnail" alt="BlueVector" title="BlueVector" /></a>
<a href='http://www.alswebpage.net/?attachment_id=329' title='Droplets'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/Droplets-150x150.jpg" class="attachment-thumbnail" alt="Droplets" title="Droplets" /></a>
<a href='http://www.alswebpage.net/?attachment_id=330' title='SkullSpades'><img width="150" height="150" src="http://www.alswebpage.net/wp-content/uploads/2011/02/SkullSpades-150x150.jpg" class="attachment-thumbnail" alt="SkullSpades" title="SkullSpades" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=316</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Space Shooter Concept</title>
		<link>http://www.alswebpage.net/?p=236</link>
		<comments>http://www.alswebpage.net/?p=236#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:03:29 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Scripting Tools]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=236</guid>
		<description><![CDATA[<img class="size-full wp-image-248 alignleft" title="ship" src="http://www.alswebpage.net/wp-content/uploads/2010/04/ship.png" alt="" width="20" height="20" />I have recently tried developping a flash game for free. I have found a good IDE called "FlashDevelop", set it up with the free flex sdk compiler given by adobe and created a small concept game using pure ActionScript 3.0:]]></description>
			<content:encoded><![CDATA[<p>I have recently tried developping a flash game for free. I have found a good IDE called &#8220;FlashDevelop&#8221;, set it up with the free flex sdk compiler given by adobe and created a small concept game using pure ActionScript 3.0, it would have been allot easier using CS5 but the ability to create flash movies for free is always useful.</p>
<p style="text-align: center;"><a href="http://www.alswebpage.net/wp-content/uploads/2010/04/SpaceShooterConcept.swf" target="_new"><img class="size-full wp-image-239 aligncenter" title="Space Shooter Concept" src="http://www.alswebpage.net/wp-content/uploads/2010/04/ssc.png" alt="" width="420" height="146" /></a></p>
<p>Click the image above to play the concept game (you may have to click on the game at first to begin):</p>
<ul>
<li>UP KEY: Accelerate.</li>
<li>LEFT and RIGHT KEYS:  Rotate your ship</li>
<li>SHIFT: Fire your <span style="color: #ff0000;">LAZOR</span>!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=236</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nicEdit: save multiple fields</title>
		<link>http://www.alswebpage.net/?p=215</link>
		<comments>http://www.alswebpage.net/?p=215#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:47:32 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[nicEdit]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=215</guid>
		<description><![CDATA[Here is an example of how to use the nicEdit WYSIWYG to send the contents of three fields. A working example can be downloaded at the bottom of this post.

You can download the <a href="http://www.alswebpage.net/wp-content/uploads/2010/03/NicEdit-Example.zip">NicEdit Save Button Example</a> buy clicking <a href="http://www.alswebpage.net/wp-content/uploads/2010/03/NicEdit-Example.zip">Here</a>.]]></description>
			<content:encoded><![CDATA[<p>Here is an example of how to use the nicEdit WYSIWYG to send the contents of three fields. A working example can be downloaded at the bottom of this post.</p>
<p>The following code assumes that you have necEdit.js and nicEditorIcons.gif in the same directory.</p>
<pre class="brush: as3; title: ; notranslate">
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;!– Inculde your nicEdit.js script –&gt;
&lt;script src=&quot;nicEdit.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;!– Create a NicEdit and custom save button script –&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!–
//Create a NicEdit pointer
var myNicEditor;
//Edit the onDomLoaded event
bkLib.onDomLoaded(function() {
//Crea a NicEdit instance
myNicEditor = new nicEditor({buttonList : ['save','bold', 'italic', 'underline', 'subscript', 'superscript', 'strikethrough', 'forecolor', 'bgcolor', 'image', 'left', 'center', 'right', 'justify', 'outdent', 'indent', 'link', 'unlink', 'hr','removeformat'],
//The save function
onSave : function(content, id, instance) {
//Add call to the submit_post function here passing the content off the three instances.
submit_post(myNicEditor.instanceById('myInstance1').getContent(), myNicEditor.instanceById('myInstance2').getContent(), myNicEditor.instanceById('myInstance3').getContent());
}});
//Load NicEdit
myNicEditor.setPanel('myNicPanel');
myNicEditor.addInstance('myInstance1');
myNicEditor.addInstance('myInstance2');
myNicEditor.addInstance('myInstance3');
});
/*
//submit_post function:
title: the content from the Instance for this field.
content: the content from the Instance for this field.
other: the content from the Instance for this field.
To DO:
1)this could be edited to accept arrays
*/
function submit_post(title,content,other){
var params = new Array();
//Set the parameters from the function input
params['post_title'] = title;
params['post_content'] = content;
params['post_other'] = other;
//GET to self
post_to_url('index.html',params,'GET');
}
/*
//post_to_url function:
path: is the page you want to submit the data to.
params: are the parameters to send.
method: is either GET or POST like a normal form (Default POST).
*/
function post_to_url(path, params, method) {
method = method || &quot;post&quot;; // Set method to post by default, if not specified.
// The rest of this code assumes you are not using a library.
// It can be made less wordy if you use one.
//Create a hidden form.
var form = document.createElement(&quot;form&quot;);
//Add a method an action to the form
form.setAttribute(&quot;method&quot;, method);
form.setAttribute(&quot;action&quot;, path);
//Prepare the parameters
for(var key in params) {
var hiddenField = document.createElement(&quot;input&quot;);
hiddenField.setAttribute(&quot;type&quot;, &quot;hidden&quot;);
hiddenField.setAttribute(&quot;name&quot;, key);
hiddenField.setAttribute(&quot;value&quot;, params[key]);
//Add to hidden form
form.appendChild(hiddenField);
}
document.body.appendChild(form); // Not entirely sure if this is necessary
//Submit the hidden form.
form.submit();
}
–&gt;
&lt;/script&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;DIV&gt;
&lt;P&gt;This example uses the three Instances and one NicPanel. You can edit all three fields then click the &quot;Save&quot; button on the NicPanel to submit all three field. At the moment it is setup to &quot;GET&quot; on the index.html by calling the url &quot;index.html?post_title=Title&amp;post_content=Content&amp;post_other=Another+Field.&quot;&lt;/P&gt;
&lt;/DIV&gt;
&lt;!– This is the first field: title –&gt;
&lt;DIV&gt;
&lt;DIV id=&quot;myInstance1&quot; style=&quot;width:300px;border:1px solid #000000&quot;&gt;Title&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;!– This is the second field: content –&gt;
&lt;DIV&gt;
&lt;DIV ID=&quot;myNicPanel&quot;&gt;&lt;/DIV&gt;
&lt;DIV ID=&quot;myInstance2&quot; style=&quot;height:300px;border:1px solid #000000&quot;&gt;Content&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;!– This is the third field: other –&gt;
&lt;DIV&gt;
&lt;DIV id=&quot;myInstance3&quot; style=&quot;width:300px;border:1px solid #000000&quot;&gt;Another Field&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BODY&gt;
</pre>
<p>You can download the <a href="http://www.alswebpage.net/wp-content/uploads/2010/03/NicEdit-Example.zip">NicEdit Save Button Example</a> buy clicking <a href="http://www.alswebpage.net/wp-content/uploads/2010/03/NicEdit-Example.zip">Here</a>.</p>
<p>This example includes:</p>
<ul>
<li>index.html &#8212; This contains the custom javascript and a custom form with three text fields.</li>
<li>nicEdit.js &#8212; The nicEdit script.</li>
<li>nicEditorIcons.gif &#8212; The images used by nicEdit</li>
</ul>
<p>To use the example, place the three files above in the same directory on your webserver.</p>
<p><DIV><DIV style="float:right;">18/03/2010 22:31</div>
<h2>Update:</H2></DIV></p>
<p>In response to crazy&#8217;s post (March 13, 2010 at 7:01 am) i have managed to get the nicEdit bar loading in Google chrome and Firefox, however it renders incorrectly in IE. The files can be found <a href='http://www.alswebpage.net/wp-content/uploads/2010/03/NiceEditandjQuery.zip'>Here (NiceEditandjQuery.zip)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=215</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple Image Gallery</title>
		<link>http://www.alswebpage.net/?p=108</link>
		<comments>http://www.alswebpage.net/?p=108#comments</comments>
		<pubDate>Sat, 06 Mar 2010 02:23:23 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[PHP Script]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=108</guid>
		<description><![CDATA[<img src="http://www.alswebpage.net/wp-content/uploads/2010/02/sig_logo.png" alt="Simple Image Gallery Logo" title="sig_logo" width="200" height="100" class="alignright size-full wp-image-205" /><a title="Simple Image Gallery" href="http://www.alswebpage.net/?page_id=96" target="_self">Simple Image Gallery</a> was created to quickly and easily display the contents of a folder as an easy to use image gallery. It supports jpg, png, gif and bmp images and allows you to spread the images over multiple pages by specifying a desired gird size using the x and y parameters. The script does the rest and presents a collage of images that link to the source image that will open in a new page.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.alswebpage.net/wp-content/uploads/2010/02/sig_logo.png" alt="Simple Image Gallery Logo" title="sig_logo" width="200" height="100" class="alignright size-full wp-image-205" /><a title="Simple Image Gallery" href="http://www.alswebpage.net/?page_id=96" target="_self">Simple Image Gallery</a> was created to quickly and easily display the contents of a folder as an easy to use image gallery. It supports jpg, png, gif and bmp images and allows you to spread the images over multiple pages by specifying a desired gird size using the x and y parameters. The script does the rest and presents a collage of images that link to the source image that will open in a new page.</p>
<p><H3>Update:</H3></p>
<ul>
<li>Simple Image Gallery is now included by using &#91;GALLERY=X&#93; where X is the gallery number.</li>
<li>Simple Image Gallery now runs off the WordPress database.</li>
<li>Simple Image Gallery now has an Admin Panel.</li>
<li>Simple Image Gallery now has a simple inbuilt slides-show feature.</li>
</ul>
<p>This WordPress plugin was created primarily for use on my site however you will soon be able to download and use this plugin in your WordPress site via the <a title="Simple Image Gallery" href="http://www.alswebpage.net/?page_id=96" target="_self">Simple Image Gallery</a> homepage under <a title="Web Design" href="http://www.alswebpage.net/?page_id=36" target="_self">WEB DESIGN</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Webmaster Central &#8211; How to verify using WordPress</title>
		<link>http://www.alswebpage.net/?p=162</link>
		<comments>http://www.alswebpage.net/?p=162#comments</comments>
		<pubDate>Tue, 02 Mar 2010 11:47:51 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Scripting Tools]]></category>
		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=162</guid>
		<description><![CDATA[Using Google Webmaster Central is a good way to edit and control the way Google sees your website. To do this you need to sign up to Google Webmaster Central then verify you own the site by uploading a web page via ftp or by adding a meta tag into your existing  page. This is how [...]]]></description>
			<content:encoded><![CDATA[<p>Using <a title="Google Webmaster Central" href="https://www.google.com/webmasters/" target="_blank">Google Webmaster Central</a> is a good way to edit and control the way Google sees your website. To do this you need to sign up to <a title="Google Webmaster Central" href="https://www.google.com/webmasters/" target="_blank">Google Webmaster Central</a> then verify you own the site by uploading a web page via ftp or by adding a meta tag into your existing  page.</p>
<p>This is how you can edit your WordPress theme to verify using the META method.</p>
<p>First you need to login to Google Webmaster Central then add a site and select the verification method you are using as &#8220;META&#8221;.</p>
<blockquote style="text-align: left;"><p>&lt;meta name=&#8221;google-site-verification&#8221; content=&#8221;[[VERIFICATION CODE]]&#8221; /&gt;</p></blockquote>
<p>Next you need to copy the meta tag you will be inserting into your WordPress theme.</p>
<ol>
<li>Login To Your WordPress admin center.</li>
<li>Under The &#8220;Apperance&#8221; menu select &#8220;Editor&#8221;.<img class="aligncenter size-full wp-image-175" title="Editor" src="http://www.alswebpage.net/wp-content/uploads/2010/03/editor.png" alt="Apperance-Editor" width="157" height="131" /></li>
<li>Select the &#8220;Theme File&#8221; containing the HEAD section of your document, this is typically called HEADER.php or something similar (The example below is using the ADSimple Template.)<img class="aligncenter size-full wp-image-177" title="Header" src="http://www.alswebpage.net/wp-content/uploads/2010/03/header.png" alt="Theme File Header" width="376" height="234" /></li>
<li>Paste the copied META tag into the head section so you get something that looks like</li>
<blockquote><p>&lt;HEAD&gt;<br />
&lt;TITLE&gt;My Page &lt;/TITLE&gt;<br />
&lt;meta name=&#8221;google-site-verification&#8221; content=&#8221;[[VERIFICATION CODE]]&#8221; /&gt;<br />
&lt;/HEAD&gt;</p></blockquote>
<li>Verify the meta tag is in place by visiting your website and viewing the page source (line 5 in the image below.)<a href="http://www.alswebpage.net/wp-content/uploads/2010/03/source.png"><img class="aligncenter size-full wp-image-172" title="Source" src="http://www.alswebpage.net/wp-content/uploads/2010/03/source.png" alt="Check the page source" width="649" height="202" /></a></li>
<li>Head back to Google Webmaster Central and verify your WordPress Site.</li>
</ol>
<p>Notes: If you change your site template, you will need to repeat the steps above to re-verify your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newgrounds</title>
		<link>http://www.alswebpage.net/?p=67</link>
		<comments>http://www.alswebpage.net/?p=67#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:16:50 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=67</guid>
		<description><![CDATA[<a href="http://www.newgrounds.com/refer/salti" target="_blank"><img class="alignleft" title="Newgrounds" src="http://img.ngfiles.com/fan-net/newgrounds120.gif" alt="" width="120" height="120" /></a><a title="Newgrounds" href="http://www.newgrounds.com/refer/salti" target="_blank">Newgrounds</a> is an Pennysylvanian based website that was created in 1995 by Tom Fulp. The site primarily offers Flash animations, games, music, art and much much more. <a title="Newgrounds" href="http://www.newgrounds.com/refer/salti" target="_blank">Newgrounds</a> is and advanced and automated submission and rating system, and it was the first website in history to produce a fully automated user-generated content system that continues to grow to this day.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.newgrounds.com/refer/salti" target="_blank"><img class="alignright" title="Newgrounds" src="http://img.ngfiles.com/fan-net/newgrounds120.gif" alt="" width="120" height="120" /></a><a title="Newgrounds" href="http://www.newgrounds.com/refer/salti" target="_blank">Newgrounds</a> is an Pennysylvanian based website that was created in 1995 by Tom Fulp. The site primarily offers Flash animations, games, music, art and much much more. <a title="Newgrounds" href="http://www.newgrounds.com/refer/salti" target="_blank">Newgrounds</a> is and advanced and automated submission and rating system, and it was the first website in history to produce a fully automated user-generated content system that continues to grow to this day.</p>
<p>I would recommend taking a look at this huge archive of amusing, interesting, humorous and sometimes adult content when you have a few moments to take in the worlds of other peoples minds.</p>
<p>When you sign up you are given your own page to show you achievements and other stuff. Check mine out at <a title="Newgrounds" href="http://salti.newgrounds.com/" target="_blank">salti.newgrounds.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=67</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notepad ++</title>
		<link>http://www.alswebpage.net/?p=58</link>
		<comments>http://www.alswebpage.net/?p=58#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:49:32 +0000</pubDate>
		<dc:creator>BigAl</dc:creator>
				<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Scripting Tools]]></category>

		<guid isPermaLink="false">http://www.alswebpage.net/?p=58</guid>
		<description><![CDATA[Notepad++ can be compared to a genetically modified, steroid pumped and feature rich version of the ever useful notepad. With syntax highlighting for all the big web-dev scripting languages, multi-view, text-zooming and the ability to collapse and expand functions/elements within the file you are editing, this awesome editor allows you to easily write scripts and web-pages [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://notepad-plus.sourceforge.net/" target="_blank"><img class="alignright" title="Notepad" src="http://notepad-plus.sourceforge.net/commun/images/npp.logo6.png" alt="Notepad ++" width="110" height="32" /></a>Notepad++ can be compared to a genetically modified, steroid pumped and feature rich version of the ever useful notepad. With syntax highlighting for all the big web-dev scripting languages, multi-view, text-zooming and the ability to collapse and expand functions/elements within the file you are editing, this awesome editor allows you to easily write scripts and web-pages the good ole&#8217; fashioned way and aids in the management of more complex scripts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alswebpage.net/?feed=rss2&#038;p=58</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

