<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	
	<channel>
		<title>MonkeybreadSoftware Blog Archive</title>
		<link>http://www.mbsplugins.de/archive.php</link>
		<description>A new Pivot weblog</description>
		<language>en</language>
		<managingEditor>tonne@monkeybreadsoftware.info</managingEditor>
                <copyright>Copyright 2010</copyright>
		<generator>Pivot Pivot - 1.40.7: 'Dreadwind'</generator>
		<pubDate>Thu, 29 Jul 2010 17:46:49 +0200</pubDate>
		<ttl>60</ttl>
		
		
		
		
		<item>
			<title>About new Call functions</title>
			<link>http://www.mbsplugins.de/archive/2010-07-29/About_new_Call_functions/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-29/About_new_Call_functions/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />In recent plugin prereleases we added functions like this:<br />
<br />
CallMethodMBS(target as object, name as string, value... as variant) as boolean<br />
CallMethodOnMainThreadMBS(target as object, name as string, value... as variant) as boolean<br />
CallMethodOnThreadMBS(BackgroundThread as BackgroundThreadMBS, target as object, name as string, value... as variant) as boolean<br />
<br />
They are very similar. Currently they can take up to three variants as parameters, but that number can be increased if you need. The number of parameters you pass must of course match the declaration of the method you want to call.<br />
<br />
Now you may ask: What do this methods do and why should I use them?<br />
<br />
Well, first they call a method for you. Something that you can do yourself. Let's say you have a method like this:<br />
<br />
sub test(someParameter as variant)<br />
<br />
Now you can call in your code this method like this: window1.test("Hello World"). But you can also use our CallMethodMBS function can call it this way: CallMethodMBS(window1, "test", "Hello World"). As you see you need to pass an object for the function to be searched on. As you pass the function name as a string, you can make it dynamically. From time to time a feature like this is requested on the mailing lists and forums, so here you have it. CallMethodMBS returns a boolean whether the call worked. It fails of course if the target object is nil or has no such method.<br />
<br />
Next you can use CallMethodOnMainThreadMBS to call this method. While this function returns directly to you, the actual function call will happen later on the main thread. Normally within a few milliseconds, but that depends on how busy your application is. You need a function like this if you do some work in a background thread and you need to perform code on the main thread. There is code doing GUI functions which must be called on the main thread, because it will crash otherwise. Especially with the new Cocoa target we will see this need. That it works most cases on Carbon/Win32 code has its reason in the fact that the main thread is mostly idle at that time.<br />
<br />
The third set of functions called CallMethodOnThreadMBS will create a new thread for you and call your method there. Is makes multi threading in REAL Studio much easier than before. So instead of calling window1.test(somedata), you can now call CallMethodMBS(new BackgroundThreadMBS, window1, "Test", somedata). This will spin off a new thread and do the execution there, so your main thread has time for doing GUI actions. Your other code will run after this line just fine.<br />
<br />
We need you to pass a new BackgroundThreadMBS object as the plugin can't create one on itself. Within some limitations you could build functions like this yourself, but our plugin gives you a convenience way to improve your times. Email us if you have more ideas for functions like this. ]]></description>
			<guid isPermaLink="false">264@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Thu, 29 Jul 2010 17:43:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>MBS REALbasic Plugins, version 10.4pr9</title>
			<link>http://www.mbsplugins.de/archive/2010-07-29/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-29/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />New in the ninth prerelease of the 10.4 plugins:
<ul>
<li>Updated DynaPDF to version 2.5.1.534.</li>
<li>ScaleMBS works for me, but crashes for one customer. Help on reproducing is very welcome.</li>
<li>Replaced REALBuildPictureFromGWorld from the plugin SDK with my own replacement for Cocoa so all plugin functions using it, will now work on Cocoa. for example: StringtoPictureByOSTypeMBS and StringtoPictureMBS.</li>
</ul>
Download: <a rel="external" href="http://www.macsw.de/plugin/Prerelease/">macsw.de/plugin/Prerelease</a> ]]></description>
			<guid isPermaLink="false">263@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Thu, 29 Jul 2010 16:43:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>REAL Studio 2010r3</title>
			<link>http://www.mbsplugins.de/archive/2010-07-28/REAL_Studio_2010r3/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-28/REAL_Studio_2010r3/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/realbasiclogo.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />Today REAL Software released a new version of REAL Studio. We worked hard on getting plugins ready, but the Cocoa target and the console graphics gave us a lot of work. Most is ready, we hope, but not everything.<br />
We already have a few bug reports REAL Software said they will fix in a 3.1 update. For example feedback ID 12772 where a project with the line "Backdrop = LogoMBS(500)" in a window.open event in Cocoa will not show the picture. Although the picture is there and you can see it in the debugger or if you display it in a canvas.backdrop.<br />
Please email us about any problem you find related to our plugins so we can fix it. ]]></description>
			<guid isPermaLink="false">262@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Wed, 28 Jul 2010 01:26:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>MBS REALbasic Plugins, version 10.4pr8</title>
			<link>http://www.mbsplugins.de/archive/2010-07-27/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-27/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />New in the eighth prerelease of the 10.4 plugins:
<ul>
<li>Removed Base64MBS.close.</li>
<li>Updated DynaPDF to version 2.5.0.533.</li>
<li>Added WindowsSystemTrayMBS.InstallEvent.</li>
<li>Much more classes/modules have been modified to work on console applications.</li>
<li>Added CallMethodOnThreadMBS, CallMethodOnMainThreadMBS and CallMethodMBS functions.</li>
<li>Added BackgroundThreadMBS class.</li>
<li>Changed MutexMBS.Tag to Variant.</li>
<li>Fixed DRFileMBS.symLinkPointingTo function.</li>
<li>Added ThreadMBS.StackSize property.</li>
<li>In SQLDatabaseMBS the database error is now better cleared after an operation was successful.</li>
<li>Changed picture handling code to work better with Cocoa and Console targets in REAL Studio 2010r3.</li>
<li>Updated PictureEditor24MBS, PictureEditor32MBS, PictureReaderMBS and PictureWriterMBS classes.</li>
<li>Added PictureEditor32ConsoleMBS, PictureReaderConsoleMBS and PictureWriterConsoleMBS classes.</li>
<li>Added new NotificationObserverMBS class.</li>
<li>Added new NotificationReceiverMBS interface.</li>
<li>Added new NotificationMBS class.</li>
<li>Renamed NotificationMBS to MacNotificationMBS.</li>
</ul>
Download: <a rel="external" href="http://www.macsw.de/plugin/Prerelease/">macsw.de/plugin/Prerelease</a> ]]></description>
			<guid isPermaLink="false">261@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Tue, 27 Jul 2010 20:37:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Progress on REAL Studio 2010r3 compatibility</title>
			<link>http://www.mbsplugins.de/archive/2010-07-26/Progress_on_REAL_Studio_2010r3/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-26/Progress_on_REAL_Studio_2010r3/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />A few changes are coming to plugin developers with REAL Studio 2010r3. We make progress on this and also REAL Software fixed a few of the bugs we found in the latest final candidates. So we are confident, we can have our 10.4 plugins working well with the new REAL Studio release.<br />
Of course our <a rel="external" href="http://www.monkeybreadsoftware.de/realbasic/rbversion.shtml">version supported table</a> will soon be updated to show plugin version 10.4 as minimum for REAL Studio 2010r3. This does not mean that older plugins will stop working if you upgrade REAL Studio, but we recommend keeping the plugins up to date. ]]></description>
			<guid isPermaLink="false">260@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Mon, 26 Jul 2010 14:47:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Working on Cocoa</title>
			<link>http://www.mbsplugins.de/archive/2010-07-22/Working_on_Cocoa/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-22/Working_on_Cocoa/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ Currently we are busy like crazy. REAL Studio 2010r3 is close to release and will bring a beta of the new Cocoa target. I do expect that we'll get a ton of support requests because something is not working. And I do hope that we can simply point most people to download the latest plugin beta version.<br />
So please be patient. Especially if REAL Studio 2010r3 may have some bug or non implemented functionality which we need for our plugins and you'll have to wait for 2010r4.<br />
<br />
Some things work already, but some not, so we hope the final release will fix the problems. ]]></description>
			<guid isPermaLink="false">259@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Thu, 22 Jul 2010 01:39:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Today: Atlanta REALbasic Users Group Meeting</title>
			<link>http://www.mbsplugins.de/archive/2010-07-19/Today_Atlanta_REALbasic_Users_/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-19/Today_Atlanta_REALbasic_Users_/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbatl_logo_2010.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />The Atlanta REALbasic Users Group will be meeting tonight, Monday, July 19th. For this meeting we'll be discussing popular plugins, how to best implement them, strengths and weaknesses.<br />
<br />
In addition, we'll be talking all of the latest news including news that pertains to us in Atlanta!<br />
<br />
When: 6pm to 9pm<br />
Where: Ippolitos Restaurant, Sandy Springs<br />
<br />
<a rel="external" href="http://www.atlantausergroups.com/events/atlanta-real-studio-users-2">http://www.atlantausergroups.com/events/atlanta-real-studio-users-2</a><br />
<br />
If you live in the Atlanta area, we'd love to meet you and talk all things REAL Studio! ]]></description>
			<guid isPermaLink="false">256@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Mon, 19 Jul 2010 18:05:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Just arrived</title>
			<link>http://www.mbsplugins.de/archive/2010-07-17/Just_arrived/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-17/Just_arrived/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ We are happy about the birth of our son Michael.<br />
<br />
<!-- error: You haven't included [[ thickbox:head ]] in your templates. --><a href='http://www.mbsplugins.de/images/baby1.jpg' class="thickbox" title="" rel="entry-255 external" ><img src="http://www.mbsplugins.de/images/baby1.thumb.jpg" style="border: 0px solid;" alt="" title="" align="inline" class='pivot-popupimage' /></a> <!-- error: You haven't included [[ thickbox:head ]] in your templates. --><a href='http://www.mbsplugins.de/images/baby2.jpg' class="thickbox" title="" rel="entry-255 external" ><img src="http://www.mbsplugins.de/images/baby2.thumb.jpg" style="border: 0px solid;" alt="" title="" align="inline" class='pivot-popupimage' /></a> ]]></description>
			<guid isPermaLink="false">255@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Sat, 17 Jul 2010 22:18:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>MBS REALbasic Plugins, version 10.4pr7</title>
			<link>http://www.mbsplugins.de/archive/2010-07-17/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-17/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />New in the seventh prerelease of the 10.4 plugins:
<ul>
<li>Added NSTextFieldMBS.bezelStyle property and constants.</li>
<li>Added SetAnnotOpenState, SetAnnotIcon, SetAnnotHighlightMode, SetAnnotFlagsEx, SetAnnotColor, SetAnnotBorderWidth, SetAnnotBorderStyle, RenameSpotColor, AddRenderingIntentEx to DynaPDFMBS.</li>
<li>Updated DynaPDF to version 2.5.0.532.</li>
<li>Added a lot of new methods for DiscRecording plugin affecting the following classes: DRTrackMBS, DRSetupPanelMBS, DRFSObjectMBS, DRFileMBS, DREraseProgressPanelMBS, DREraseMBS, DRDeviceMBS, DRBurnSetupPanelMBS, DRBurnProgressPanelMBS and DRBurnMBS.</li>
<li>Renamed initWithLinkType to linkWithLinkType in DRFileMBS class.</li>
<li>Added more write methods to DynaPDF so you can pass arrays of values.</li>
<li>Unregistered plugin dialogs now show version number and process ID.</li>
<li>Fixed FontActivateMBS and FontDeactivateMBS on Windows to work again. Also console safe now.</li>
<li>Made changes to the common picture creating code for better support of future REAL Studio versions.</li>
<li>Most EyeOneMBS methods are shared methods now.</li>
</ul>
Download: <a rel="external" href="http://www.macsw.de/plugin/Prerelease/">macsw.de/plugin/Prerelease</a> ]]></description>
			<guid isPermaLink="false">254@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Sat, 17 Jul 2010 02:05:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>License upgrades?</title>
			<link>http://www.mbsplugins.de/archive/2010-07-16/License_upgrades/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-16/License_upgrades/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ If you have a couple of license for our plugin parts like Util, Compression, Win, etc. and you like to get a complete license, you can email us and we give you your discounted upgrade price. ]]></description>
			<guid isPermaLink="false">253@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Fri, 16 Jul 2010 23:59:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>REAL Studio to Include Cocoa Framework Beta in Upcoming Release</title>
			<link>http://www.mbsplugins.de/archive/2010-07-15/REAL_Studio_to_Include_Cocoa_F/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-15/REAL_Studio_to_Include_Cocoa_F/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/realbasiclogo.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />see <a rel="external" href="http://www.realsoftwareblog.com/2010/07/real-studio-to-include-cocoa-framework.html">http://www.realsoftwareblog.com/2010/07/real-studio-to-include-cocoa-framework.html</a><br />
<br />
That's a cool move as this gives REAL Software a lot of real world bug reports for the new Cocoa target. And plugin users can test our plugins with Cocoa, too. ]]></description>
			<guid isPermaLink="false">252@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Thu, 15 Jul 2010 18:03:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>MBS REALbasic Plugins, version 10.4pr6</title>
			<link>http://www.mbsplugins.de/archive/2010-07-14/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-14/MBS_REALbasic_Plugins_version_/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/rbplugin.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />New in the sixth prerelease of the 10.4 plugins:
<ul>
<li>Added ProcessMBS.CurrentProcessID.</li>
<li>Added GifExtensionMBS.FirstData and GIFMBS.FirstBlock for easier debugging.</li>
<li>Added GifPictureMBS.CopyData, GifBlockMBS.Clone, GifDataMBS.Clone, GifExtensionMBS.Clone, GIFMBS.Clone, GifPaletteMBS.Clone, GifPictureMBS.Clone, GifPictureMBS.HasPalette and GifScreenMBS.Clone.</li>
<li>Added TraceFile and TraceHandle to the DynaPDFMBS class.</li> 
<li>Added DynapdfMBS.PageCoords property.</li>
<li>Added QTPrerollMBS class.</li>
</ul>
Download: <a rel="external" href="http://www.macsw.de/plugin/Prerelease/">macsw.de/plugin/Prerelease</a> ]]></description>
			<guid isPermaLink="false">251@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Wed, 14 Jul 2010 17:19:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Emails caught by spam filters</title>
			<link>http://www.mbsplugins.de/archive/2010-07-14/Emails_caught_by_spam_filters/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-14/Emails_caught_by_spam_filters/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/mail.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />Seems like today is a day where my email server is on the blacklist of some other email servers. In that case I send again using another email server.<br />
<br />
So if you are waiting for an answer from me, it may be that your email or my email is in the filters and was rejected. In that case you can contact us with our feedback forms. ]]></description>
			<guid isPermaLink="false">250@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Wed, 14 Jul 2010 15:49:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>REAL Studio linker problem</title>
			<link>http://www.mbsplugins.de/archive/2010-07-11/REAL_Studio_linker_problem/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-11/REAL_Studio_linker_problem/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ <img src="http://www.mbsplugins.de/images/realbasiclogo.jpg" style="float:right;margin-left:10px;margin-bottom:5px;border:0px solid" title="" alt="" class="pivot-image" />Create a new REAL Studio project and add this test method to the window:<br />
<br />
Sub Test(x as shell)<br />
  dim c as BevelButton<br />
  c.Enabled = true<br />
End Sub<br />
<br />
Now build your application.<br />
You will see that the shell plugin code is added to the binary. But the AppearancePack is not included.<br />
<br />
So REAL Studio detects, that this method is not needed and marks Bevelbutton for not to be included.<br />
But it forgets to mark shell class here to be not included.<br />
<br />
So the application size is bigger than needed.<br />
<br />
Please add yourself to <a rel="external" href="feedback://showreport?report_id=12735">Feedback 12735</a> ]]></description>
			<guid isPermaLink="false">249@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Sun, 11 Jul 2010 15:21:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>CURL tip of the day</title>
			<link>http://www.mbsplugins.de/archive/2010-07-11/CURL_tip_of_the_day/monkeybreadsoftware_blog_archive</link>
			<comments>http://www.mbsplugins.de/archive/2010-07-11/CURL_tip_of_the_day/monkeybreadsoftware_blog_archive#comm</comments>
                        <description><![CDATA[ Normally we all put username and password in the URL for a download. It's simple and convenient. Like this:<br />
"ftp://christian:123456@ftp.someserver.com/test/file.txt"<br />
But what to do if the username or the password contains characters like "@" or ":"?<br />
<br />
"ftp://christian@mbs:123456@ftp.someserver.com/test/file.txt"<br />
this URL will fail to parse as CURL expects the server name after the first @.<br />
<br />
The solution is to use the OptionUsername and OptionPassword properties for the name and password:<br />
c.OptionUsername = "christian@mbs"<br />
c.OptionPassword = "123456"<br />
c.OptionURL = "ftp://ftp.someserver.com/test/file.txt"<br />
I hope this helps you. ]]></description>
			<guid isPermaLink="false">248@http://mbsplugins.de/pivot/</guid>
			<category>default</category>
			<pubDate>Sun, 11 Jul 2010 14:00:00 +0200</pubDate>
		</item>
		
		
		
	</channel>
</rss>
