<?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>Northcode Support</title>
		<link>http://www.northcode.com/forums/</link>
		<description>This is a discussion forum about SWF Studio,  a professional quality replacement for the stand-alone projector that comes with Adobe Flash.</description>
		<language>en</language>
		<lastBuildDate>Sun, 26 May 2013 04:57:05 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.northcode.com/forums/images/misc/rss.jpg</url>
			<title>Northcode Support</title>
			<link>http://www.northcode.com/forums/</link>
		</image>
		<item>
			<title>I feel almost guilty</title>
			<link>http://www.northcode.com/forums/showthread.php?t=10860&amp;goto=newpost</link>
			<pubDate>Tue, 21 May 2013 03:35:04 GMT</pubDate>
			<description><![CDATA[I've been a long time user of SS and I honestly can't see my programming life without it.  It is by far my most favorite and valuable application...]]></description>
			<content:encoded><![CDATA[<div>I've been a long time user of SS and I honestly can't see my programming life without it.  It is by far my most favorite and valuable application that I own.<br />
<br />
When  I say I feel guilty it's because Ido, I bought my first version of SS long ago and have seen many releases and updates and beta builds.  Yet I have yet to pay a dime more than my initial investment besides some custom work by Tim.<br />
<br />
I just want you guys to know that and maybe others feel the same way, that I really don't mind paying for new major releases as they come out or every few versions or so.  SS has done so well for me and I never want this tool to die off due to it not being funded enough.<br />
<br />
I know things are slow in the Flash world, but it still lives strong here with me even using older versions which are more than capable of producing applications that I create.  This is probably true for a lot of people as not all the latest and greatest new Flash features are super useful, but nice to have.<br />
<br />
I remember at one point you guys mentioned changing the pay structure for the application and maybe you should rethink that.<br />
<br />
Does anyone reading this agree or disagree?<br />
<br />
Keep up the good work guys.<br />
<br />
P.S  I sent an email for latest beta build but no response, and I always get a response, which worries me.</div>

]]></content:encoded>
			<category domain="http://www.northcode.com/forums/forumdisplay.php?f=24">Coffee Lounge</category>
			<dc:creator>jlsyzsin</dc:creator>
			<guid isPermaLink="true">http://www.northcode.com/forums/showthread.php?t=10860</guid>
		</item>
		<item>
			<title>ssCore.ADO.execSQL freezes the app</title>
			<link>http://www.northcode.com/forums/showthread.php?t=10859&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 18:25:42 GMT</pubDate>
			<description>I have an application that uses an MDB over the network to store data. The application is run by multiple users and at times the database is accessed...</description>
			<content:encoded><![CDATA[<div>I have an application that uses an MDB over the network to store data. The application is run by multiple users and at times the database is accessed by more than one, which causes a success=false. I do a couple of retries when this happens, with a delay, and everything works fine.<br />
<br />
In one setup, at times, ssCore.ADO.execSQL just freezes; This happens more than a couple of times in an hour! Since the calls are made synchronously, It doesn't get to go to the next line of code to check for the success, and the app becomes unresponsive.<br />
<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">ssDebug.trace(&quot;Q2&quot;);<br />
ret = ssCore.ADO.execSQL({sql:SQLString});<br />
ssDebug.trace(&quot;Q3&quot;);</code><hr />
</div>This shows Q2, but never gets to show Q3.<br />
<br />
Has anyone faced any such issue? This happens for very basic SELECTs and for regular UPDATEs. I left it for a while, thinking it will recover and return some description, but it didn't. Is there a way to debug this inside the ADO plugin?<br />
<br />
Miki</div>

]]></content:encoded>
			<category domain="http://www.northcode.com/forums/forumdisplay.php?f=37">SWF Studio V3</category>
			<dc:creator>AMoo-Miki</dc:creator>
			<guid isPermaLink="true">http://www.northcode.com/forums/showthread.php?t=10859</guid>
		</item>
		<item>
			<title>Show Folder Browser cancelling not working</title>
			<link>http://www.northcode.com/forums/showthread.php?t=10858&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 15:16:58 GMT</pubDate>
			<description>ShowFolderBrowser cancelling is not working. 
 
 
Code: 
--------- 
browse_btn.onRelease = function() 
{ 
	ssCore.Win.show(); 
 
	//var return_obj =</description>
			<content:encoded><![CDATA[<div>ShowFolderBrowser cancelling is not working.<br />
<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">browse_btn.onRelease = function()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; ssCore.Win.show();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //var return_obj = <br />
&nbsp; &nbsp; &nbsp; &nbsp; ssCore.App.showFolderBrowser({title:&quot;Select Installation folder&quot;, path:default_txt},{callback:&quot;onUserSelect&quot;, scope:_root},{errorCallback:&quot;onError&quot;, errorScope:_root});<br />
<br />
};<br />
_root.onUserSelect = function(return_obj, callback_obj, error_obj)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (return_obj.success)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; location_txt = return_obj.result;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; loc_txt.text = location_txt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var drive:String = location_txt.substr(0, 1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var fspace = ssCore.FileSys.getFreeSpace({path:drive + &quot;:&quot;});<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var freespace:Number = Math.round(fspace.result / 1024);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; drivefree.text = freespace + &quot; MB&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
};<br />
_root.onError = function(return_obj,callback_obj,error_obj)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; loc_txt.text=&quot;Error&quot;<br />
};</code><hr />
</div>This probably works. But when I cancel the folder browser, the error function is not called.<br />
<br />
And If that is not the way asynchronous mode works, then how do i check if the folder browser is cancelled?</div>

]]></content:encoded>
			<category domain="http://www.northcode.com/forums/forumdisplay.php?f=37">SWF Studio V3</category>
			<dc:creator>Nishan11</dc:creator>
			<guid isPermaLink="true">http://www.northcode.com/forums/showthread.php?t=10858</guid>
		</item>
		<item>
			<title>Hi Tim!</title>
			<link>http://www.northcode.com/forums/showthread.php?t=10857&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 03:45:04 GMT</pubDate>
			<description><![CDATA[Hi Tim! 
 
Haven't done much Flash in several years...thought about my favorite software tool tonight and thought I'd check in! Sucks that Flash is...]]></description>
			<content:encoded><![CDATA[<div>Hi Tim!<br />
<br />
Haven't done much Flash in several years...thought about my favorite software tool tonight and thought I'd check in! Sucks that Flash is not the technology centerpiece it once was. :(<br />
<br />
 Hope life is going well for you!!<br />
<br />
-John (aka CrustyClown)</div>

]]></content:encoded>
			<category domain="http://www.northcode.com/forums/forumdisplay.php?f=37">SWF Studio V3</category>
			<dc:creator>crustyclown</dc:creator>
			<guid isPermaLink="true">http://www.northcode.com/forums/showthread.php?t=10857</guid>
		</item>
		<item>
			<title>Printing a PDF file</title>
			<link>http://www.northcode.com/forums/showthread.php?t=10856&amp;goto=newpost</link>
			<pubDate>Sun, 28 Apr 2013 01:40:08 GMT</pubDate>
			<description>Hi all 
 
I am currently looking at implementing AlivePDF in my project so that I can format the reports the way I want them (with photos), the thing...</description>
			<content:encoded><![CDATA[<div>Hi all<br />
<br />
I am currently looking at implementing AlivePDF in my project so that I can format the reports the way I want them (with photos), the thing is once the report is created as a PDF file, I want the program to send it to their default printer without them having to go through any printer selection/options again.<br />
<br />
Anyone have a suggestion as to how this could be done? The PDF will have images, etc. on them - in the past I have had issues creating print jobs directly from the application using the PrintJob() process (Images are grabbed from an Access database), I was never able to get the images to show on the reports and therefore currently I have removed this ability to enter images from the application. However, reading the AlivePDF documentation, I now may be able to add this back in (yet to test it of course), but I just want to the user to select a report and click print and it does the rest in the background.<br />
<br />
So the created PDF has to be sent to the printer, so I am not sure how I either send it to print, or read it back in and then send it to the printer (obviously whichever works the fastest and will give the least headaches). I then would delete the PDF file that was created.<br />
<br />
I hope I am making sense :)<br />
<br />
Thanks in advance for your help.<br />
<br />
D</div>

]]></content:encoded>
			<category domain="http://www.northcode.com/forums/forumdisplay.php?f=37">SWF Studio V3</category>
			<dc:creator>d-train</dc:creator>
			<guid isPermaLink="true">http://www.northcode.com/forums/showthread.php?t=10856</guid>
		</item>
	</channel>
</rss>
