<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>SwishTalk.com</title>
		<link>http://www.swishtalk.com/</link>
		<description>This is a discussion forum for Swish users including web designers and SWiSHmax users!</description>
		<language>en</language>
		<lastBuildDate>Sun, 26 May 2013 02:07:40 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.swishtalk.com/st_images/images/misc/rss.jpg</url>
			<title>SwishTalk.com</title>
			<link>http://www.swishtalk.com/</link>
		</image>
		<item>
			<title><![CDATA[[Resolved]Need help with button script]]></title>
			<link>http://www.swishtalk.com/showthread.php?t=55223&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 08:41:18 GMT</pubDate>
			<description><![CDATA[I'm creating a photo gallery containing hundreds of pics. To manage this, I need to break this down into several sections (.SWFs). The problem I encounter is the button script to move from one .SWF file to another. Nothing seems to work for me. Can anyone steer me in the right direction?? 
Thanks a...]]></description>
			<content:encoded><![CDATA[<div>I'm creating a photo gallery containing hundreds of pics. To manage this, I need to break this down into several sections (.SWFs). The problem I encounter is the button script to move from one .SWF file to another. Nothing seems to work for me. Can anyone steer me in the right direction??<br />
Thanks a lot!!</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=30">» SWiSH Max4 General Help</category>
			<dc:creator>IrvSummers</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55223</guid>
		</item>
		<item>
			<title>Javascript Countdown Timer redirecting Affiliate Links</title>
			<link>http://www.swishtalk.com/showthread.php?t=55222&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 05:26:03 GMT</pubDate>
			<description>With this simple JavaScript countdown timer, you will easily notice to visitors that the link will be redirected. This JavaScript script is quite short and very easy to modify as you want; so this cod... detail...</description>
			<content:encoded><![CDATA[<div>With this simple JavaScript countdown timer, you will easily notice to visitors that the link will be redirected. This JavaScript script is quite short and very easy to modify as you want; so this cod... <a href="http://www.javascriptbank.com/javascript-countdown-timer-redirecting-affiliate-links.html/en//" target="_blank">detail</a> at <a href="http://www.javascriptbank.com/" target="_blank">JavaScriptBank.com - 2.000+ free JavaScript codes</a><br />
<br />
<div align="center"><a href="http://www.javascriptbank.com/javascript/time/counter/javascript-countdown-timer-redirecting-affiliate-links/preview/en/" target="_blank"><img src="http://www.javascriptbank.com/javascript.images/time/javascript-countdown-timer-redirecting-affiliate-links.jpg" border="0" alt="" /></a><br />
Demo: <a href="http://www.javascriptbank.com/javascript-countdown-timer-redirecting-affiliate-links.html/en/" target="_blank">JavaScript Javascript Countdown Timer redirecting Affiliate Links</a><br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<b>Step 1</b>: Place CSS below in your HEAD section<br />
CSS<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;style type=&quot;text/css&quot;&gt;<br />
/*<br />
&nbsp; &nbsp;  This script downloaded from www.JavaScriptBank.com<br />
&nbsp; &nbsp;  Come to view and download over 2000+ free javascript at www.JavaScriptBank.com<br />
*/<br />
<br />
body {<br />
&nbsp;  color: black;<br />
&nbsp;  background: white;<br />
&nbsp;  font: bold 18pt Verdana, Arial, Helvetica, sans-serif;<br />
&nbsp;  text-align: center;<br />
}<br />
<br />
span.counter {<br />
&nbsp;  color: red;<br />
&nbsp;  cursor: default;<br />
&nbsp;  font-size: larger;<br />
}<br />
<br />
div.info {<br />
&nbsp;  margin: 0 auto;<br />
&nbsp;  text-align: left;<br />
&nbsp;  font-size: smaller;<br />
&nbsp;  width: 80%;<br />
&nbsp;  margin-top: 2em;<br />
}<br />
&lt;/style&gt;</code><hr />
</div><b>Step 2</b>: Place JavaScript below in your HEAD section<br />
JavaScript<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;script name=&quot;countdownRedirect.js&quot; type=&quot;text/javascript&quot;&gt;<br />
/*<br />
&nbsp; &nbsp;  This script downloaded from www.JavaScriptBank.com<br />
&nbsp; &nbsp;  Come to view and download over 2000+ free javascript at www.JavaScriptBank.com<br />
*/<br />
<br />
/**<br />
&nbsp;* Copyright (C) 2006-2009, QuietAffiliate.com. All rights reserved.<br />
&nbsp;*<br />
&nbsp;* Script Name: Countdown Redirect<br />
&nbsp;*<br />
&nbsp;* THIS SOURCE CODE MAY BE USED FREELY PROVIDED THAT<br />
&nbsp;* YOU DO NOT REMOVE THIS MESSAGE.<br />
&nbsp;*<br />
&nbsp;* You can obtain this script at http://www.QuietAffiliate.com<br />
&nbsp;*/<br />
<br />
function countdownRedirect(url, msg)<br />
{<br />
&nbsp;  var TARG_ID = &quot;COUNTDOWN_REDIRECT&quot;;<br />
&nbsp;  var DEF_MSG = &quot;Redirecting...&quot;;<br />
<br />
&nbsp;  if( ! msg )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; msg = DEF_MSG;<br />
&nbsp;  }<br />
<br />
&nbsp;  if( ! url )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; throw new Error('You didn\'t include the &quot;url&quot; parameter');<br />
&nbsp;  }<br />
<br />
<br />
&nbsp;  var e = document.getElementById(TARG_ID);<br />
<br />
&nbsp;  if( ! e )<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; throw new Error('&quot;COUNTDOWN_REDIRECT&quot; element id not found');<br />
&nbsp;  }<br />
<br />
&nbsp;  var cTicks = parseInt(e.innerHTML);<br />
<br />
&nbsp;  var timer = setInterval(function()<br />
&nbsp;  {<br />
&nbsp; &nbsp; &nbsp; if( cTicks )<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  e.innerHTML = --cTicks;<br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  clearInterval(timer);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  document.body.innerHTML = msg;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  location = url;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp;  }, 1000);<br />
}<br />
<br />
window.onload = function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; countdownRedirect(&quot;http://www.javascriptbank.com&quot;, &quot;Thanks For Visiting&quot;)<br />
}<br />
&lt;/script&gt;</code><hr />
</div><b>Step 3</b>: Copy &amp; Paste HTML code below in your BODY section<br />
HTML<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;div class=&quot;info&quot;&gt;This is a demo page of the redirect script in action, code and instructions can be found at &lt;strong&gt;QuietAffiliate.com&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;You will automatically be redirected in &lt;span class=&quot;counter&quot; id=&quot;COUNTDOWN_REDIRECT&quot;&gt;10&lt;/span&gt; seconds.&lt;/center&gt;<br />
&lt;/div&gt;</code><hr />
</div><br />
<br />
<br />
<br />
<br />
<div align="center"><a href="http://www.javascriptbank.com/web-based-music-player.html/en/" target="_blank"><font color="DarkOrange">Javascript Music Player</font></a> - <a href="http://www.javascriptbank.com/random-text-generator.html" target="_blank"><font color="Blue">Random Text Generator</font></a> - <a href="http://www.javascriptbank.com/up-down-floating-image.html" target="_blank">Floating Image Script</a></div></div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=5">» HTML and Backend Scripting</category>
			<dc:creator>JavaScriptBank</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55222</guid>
		</item>
		<item>
			<title>JavaScript Countdown Timer | JavaScript Timer Countdown</title>
			<link>http://www.swishtalk.com/showthread.php?t=55221&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 04:57:42 GMT</pubDate>
			<description>This JavaScript timer countdown displays a Javascript countdown timer and alerts the user when the timer reaches zero. This countdown timer (http://www.javascriptbank.com/javascript/time/clock-time-date/) then redirec... detail (http://www.javascriptbank.com/javascript-countdown-timer.html/en//) at...</description>
			<content:encoded><![CDATA[<div>This JavaScript timer countdown displays a Javascript countdown timer and alerts the user when the timer reaches zero. This <a href="http://www.javascriptbank.com/javascript/time/clock-time-date/" target="_blank">countdown timer</a> then redirec... <a href="http://www.javascriptbank.com/javascript-countdown-timer.html/en//" target="_blank">detail</a> at <a href="http://www.javascriptbank.com/" target="_blank">JavaScriptBank.com - 2.000+ free JavaScript codes</a><br />
<br />
<div align="center"><a href="http://www.javascriptbank.com/javascript/time/counter/javascript-countdown-timer/preview/en/" target="_blank"><img src="http://www.javascriptbank.com/javascript.images/time/countdown-timer.jpg" border="0" alt="" /></a><br />
Demo: <a href="http://www.javascriptbank.com/javascript-countdown-timer.html/en/" target="_blank">JavaScript JavaScript Countdown Timer | JavaScript Timer Countdown</a><br />
</div><br />
<font size="4"><u>How to setup</u></font><br />
<br />
<b>Step 1</b>: Place CSS below in your HEAD section<br />
CSS<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;style type=&quot;text/css&quot;&gt;<br />
#txt {<br />
&nbsp; border:none;<br />
&nbsp; font-family:verdana;<br />
&nbsp; font-size:16pt;<br />
&nbsp; font-weight:bold;<br />
&nbsp; border-right-color:#FFFFFF<br />
}<br />
<br />
&lt;/style&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!--<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This script downloaded from www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Come to view and download over 2000+ free javascript at www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; --&gt;</code><hr />
</div><b>Step 2</b>: Copy &amp; Paste JavaScript code below in your HEAD section<br />
JavaScript<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;script language=&quot;javascript&quot;&gt;<br />
// Created by: Neill Broderick :: http://www.bespoke-software-solutions.co.uk/downloads/downjs.php<br />
<br />
var mins<br />
var secs;<br />
<br />
function cd() {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  mins = 1 * m(&quot;10&quot;); // change minutes here<br />
&nbsp; &nbsp; &nbsp; &nbsp;  secs = 0 + s(&quot;:01&quot;); // change seconds here (always add an additional second to your total)<br />
&nbsp; &nbsp; &nbsp; &nbsp;  redo();<br />
}<br />
<br />
function m(obj) {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  for(var i = 0; i &lt; obj.length; i++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(obj.substring(i, i + 1) == &quot;:&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  return(obj.substring(0, i));<br />
}<br />
<br />
function s(obj) {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  for(var i = 0; i &lt; obj.length; i++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(obj.substring(i, i + 1) == &quot;:&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  return(obj.substring(i + 1, obj.length));<br />
}<br />
<br />
function dis(mins,secs) {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  var disp;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  if(mins &lt;= 9) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disp = &quot; 0&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disp = &quot; &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  disp += mins + &quot;:&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  if(secs &lt;= 9) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disp += &quot;0&quot; + secs;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; disp += secs;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  return(disp);<br />
}<br />
<br />
function redo() {<br />
&nbsp; &nbsp; &nbsp; &nbsp;  secs--;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  if(secs == -1) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; secs = 59;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mins--;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  document.cd.disp.value = dis(mins,secs); // setup additional displays here.<br />
&nbsp; &nbsp; &nbsp; &nbsp;  if((mins == 0) &amp;&amp; (secs == 0)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; window.alert(&quot;Time is up. Press OK to continue.&quot;); // change timeout message as required<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // window.location = &quot;yourpage.htm&quot; // redirects to specified page once timer ends and ok button is pressed<br />
&nbsp; &nbsp; &nbsp; &nbsp;  } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  cd = setTimeout(&quot;redo()&quot;,1000);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  }<br />
}<br />
<br />
function init() {<br />
&nbsp; cd();<br />
}<br />
window.onload = init;<br />
&lt;/script&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!--<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This script downloaded from www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Come to view and download over 2000+ free javascript at www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; --&gt;</code><hr />
</div><b>Step 3</b>: Place HTML below in your BODY section<br />
HTML<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;form name=&quot;cd&quot;&gt;<br />
&lt;input id=&quot;txt&quot; readonly=&quot;true&quot; type=&quot;text&quot; value=&quot;10:00&quot; border=&quot;0&quot; name=&quot;disp&quot;&gt;<br />
&lt;/form&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!--<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This script downloaded from www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Come to view and download over 2000+ free javascript at www.JavaScriptBank.com<br />
&nbsp; &nbsp; &nbsp; &nbsp; --&gt;</code><hr />
</div><br />
<br />
<br />
<br />
<br />
<div align="center"><a href="http://www.javascriptbank.com/web-based-music-player.html/en/" target="_blank"><font color="DarkOrange">Javascript Music Player</font></a> - <a href="http://www.javascriptbank.com/random-text-generator.html" target="_blank"><font color="Blue">Random Text Generator</font></a> - <a href="http://www.javascriptbank.com/up-down-floating-image.html" target="_blank">Floating Image Script</a></div></div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=5">» HTML and Backend Scripting</category>
			<dc:creator>JavaScriptBank</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55221</guid>
		</item>
		<item>
			<title><![CDATA[[RESOLVED]Unload Variables]]></title>
			<link>http://www.swishtalk.com/showthread.php?t=55220&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 13:11:19 GMT</pubDate>
			<description><![CDATA[Hi guys, 
I'm having a bit of trouble with unloading variables.  
 
I have a movie that fetches variables form and external txt file, this works fine but when I change the content within the txt file it doesn't load the new variables and only displays the old text. 
 
How do I get it to either...]]></description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
I'm having a bit of trouble with unloading variables. <br />
<br />
I have a movie that fetches variables form and external txt file, this works fine but when I change the content within the txt file it doesn't load the new variables and only displays the old text.<br />
<br />
How do I get it to either refresh or get new content in the external txt after say 5 sec?<br />
<br />
<br />
Just thought I would update this with a bit more info, I'm trying to clear the text loaded form the external file and reload it again. In this case if the text has changed in the txt file it will update the container pulling the text form the external file. Hope this help ?!?!?!<br />
<br />
Your assistance is appreciated.</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=30">» SWiSH Max4 General Help</category>
			<dc:creator>Migs723</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55220</guid>
		</item>
		<item>
			<title>Replace Mouse with Enter button</title>
			<link>http://www.swishtalk.com/showthread.php?t=55219&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 13:16:31 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I have a Example1.swf that loads Example2.swf within itself.  
 
Example2.swf has button that needs a mouse click to activate it. I want to be able to click on where it says "Click with mouse", but by just pressing "Enter" from Example1.swf and not have to use a mouse. 
 
So in other words...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have a Example1.swf that loads Example2.swf within itself. <br />
<br />
Example2.swf has button that needs a mouse click to activate it. I want to be able to click on where it says &quot;Click with mouse&quot;, but by just pressing &quot;Enter&quot; from Example1.swf and not have to use a mouse.<br />
<br />
So in other words &quot;enter button&quot; for Example1.swf should activate &quot;Click with mouse&quot; within Example2.swf<br />
<br />
Can someone help me with a script?</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=6">» SWiSH Max General Help</category>
			<dc:creator>rokboy</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55219</guid>
		</item>
		<item>
			<title>basic physics engine</title>
			<link>http://www.swishtalk.com/showthread.php?t=55217&amp;goto=newpost</link>
			<pubDate>Mon, 01 Apr 2013 22:44:16 GMT</pubDate>
			<description>Hi all swish fans :) does anyone know how to create a basic physics engine in swishscript? i want to create a engine and for example when i click in movie box will appear and drop to the ground, oehrn example i want to create a realistic rope/chain with a weight at the end so he can swing and move...</description>
			<content:encoded><![CDATA[<div>Hi all swish fans :) does anyone know how to create a basic physics engine in swishscript? i want to create a engine and for example when i click in movie box will appear and drop to the ground, oehrn example i want to create a realistic rope/chain with a weight at the end so he can swing and move while touched by mouse. sorry for my english but i hope all you know what i mean :)</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=7">» Actionscript Help</category>
			<dc:creator>Grzesiek</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55217</guid>
		</item>
		<item>
			<title>mobosof account</title>
			<link>http://www.swishtalk.com/showthread.php?t=55216&amp;goto=newpost</link>
			<pubDate>Sat, 30 Mar 2013 10:27:15 GMT</pubDate>
			<description><![CDATA[Hi all 
 
Just to let you know there's been problems in la la land and the servers with a hack attack so to be safe all Mobosof links/site/board swi's swf's etc are in the process of being deleted 
 
Apologies if you hit any dead links..there should be enough stuff floating about to not disappear...]]></description>
			<content:encoded><![CDATA[<div>Hi all<br />
<br />
Just to let you know there's been problems in la la land and the servers with a hack attack so to be safe all Mobosof links/site/board swi's swf's etc are in the process of being deleted<br />
<br />
Apologies if you hit any dead links..there should be enough stuff floating about to not disappear altogether but not at my space<br />
:angry:</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=20"><![CDATA[» The Swisher&#39;s Lounge]]></category>
			<dc:creator>mobosof</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55216</guid>
		</item>
		<item>
			<title>read sms from mobile and display as ticker</title>
			<link>http://www.swishtalk.com/showthread.php?t=55215&amp;goto=newpost</link>
			<pubDate>Fri, 29 Mar 2013 11:40:29 GMT</pubDate>
			<description>it is possible in swish get text message from mobile device i.e. serial port and display in ticker or scroll in sprite....how it is possible in swishmax 4 it is usefule for live TV CHAT............</description>
			<content:encoded><![CDATA[<div>it is possible in swish get text message from mobile device i.e. serial port and display in ticker or scroll in sprite....how it is possible in swishmax 4 it is usefule for live TV CHAT............</div>

]]></content:encoded>
			<category domain="http://www.swishtalk.com/forumdisplay.php?f=7">» Actionscript Help</category>
			<dc:creator>kalpeshtonpe</dc:creator>
			<guid isPermaLink="true">http://www.swishtalk.com/showthread.php?t=55215</guid>
		</item>
	</channel>
</rss>
