<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>  - AutoUser for Lotus Notes</title>
        <description>Get help, share ideas, or suggest feature requests. </description>
        <link>http://smart-toucan.com/forum/list.php?2</link>
        <lastBuildDate>Mon, 06 Sep 2010 19:19:20 -0400</lastBuildDate>
        <generator>Phorum 5.2.9a</generator>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,195,195#msg-195</guid>
            <title>Setting Text (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,195,195#msg-195</link>
            <description><![CDATA[ Hi,<br />
<br />
I have a field called &quot;RichText.Job No.&quot;<br />
<br />
Its a text entry field. When I select it and enter a new value, the text is NOT overwriiten, so I end up with too many characters. I have tried using the &quot;kepress 127&quot; delete key, but cant get rid of all whats there. I always have one character remaining!<br />
<br />
Is the an easier way to clear or overwrite what is there?]]></description>
            <dc:creator>AndyCase</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Sep 2010 10:15:23 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,191,191#msg-191</guid>
            <title>Test Execution Options (3 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,191,191#msg-191</link>
            <description><![CDATA[ There doesnt seem to be many options with regard to executing the scripts.<br />
<br />
Options I would like to be able to do is:-<br />
1. Set a point at which to stop in the script.<br />
2. start running the script from a certain point within the script.<br />
<br />
Can you provide some suggestions.]]></description>
            <dc:creator>AndyCase</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Sep 2010 10:17:58 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,174,174#msg-174</guid>
            <title>AutoUser Roadmap (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,174,174#msg-174</link>
            <description><![CDATA[ Hi,<br />
<br />
i liked the road map posted previously....even if it lacks the figures for the release years ;)<br />
<br />
I it possible to get an updated schedule in this thread?<br />
<br />
Cheers,<br />
Olaf]]></description>
            <dc:creator>Olaf</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 21 May 2010 06:31:30 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,172,172#msg-172</guid>
            <title>Tabs in tables (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,172,172#msg-172</link>
            <description><![CDATA[ Hi,<br />
<br />
i have a form with a table with tabs. The problem is: I can not capture the tabs in the table. <br />
<br />
When I try to capture the tabs the focus is only arround all tabs, but not on the desired tab.<br />
<br />
kind regards<br />
<br />
Maik Endler]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 17 May 2010 10:00:02 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,170,170#msg-170</guid>
            <title>Close tab window (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,170,170#msg-170</link>
            <description><![CDATA[ Hello Guys, <br />
<br />
I just started using Smart Toucan recently. I am writing a simple script to schedule a meeting using Calendar . In the script, I want to close the tabs that I open. I found 3 ways to do it from the UI:<br />
- Click on the X button in the tab<br />
- Right click the tab, select &quot;Close Window&quot;<br />
- Press &quot;Ctrl+W'<br />
<br />
I can't get the first 2 ways working.<br />
<br />
- Click on the X button in the tab: I used the following command. It just clicks the tab, not close it:<br />
        Click &quot;Tab.New Calendar Entry for user&quot;<br />
<br />
- Right click the tab, select &quot;Close Window&quot;: I used the following command. It doesn't work either (btw I had to use the &quot;force&quot; option to capture &quot;Close Window&quot;<br />
        RightClick &quot;Tab.New Calendar Entry for user&quot;<br />
        Click &quot;Menu.#32768&quot;<br />
        <br />
- Press &quot;Ctrl+W': The following command works, but I can't use it (because I generate a popup outside Lotus Notes)<br />
        KeyPress Key.CTRL + asc('W')<br />
<br />
I assume there would be a standard way to close a tab. Can someone point me to the right direction.<br />
<br />
Thanks,<br />
Gaurav]]></description>
            <dc:creator>gagupta</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Sat, 15 May 2010 04:00:44 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,167,167#msg-167</guid>
            <title>Visible() fails when LN-Client is started via WScript.Shell.run (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,167,167#msg-167</link>
            <description><![CDATA[ Hello,<br />
<br />
I have problems with the following script: (ItemContainer.xml is attached)<br />
<pre class="bbcode">
01: ItemContainer = &quot;LN_Connection_item_container.xml&quot;
02: FastMode=false
03: TimeOut=5
04: 
05: Set shell = CreateObject(&quot;WScript.Shell&quot;)
06: shell.run &quot;notes&quot;, 1, false
07:
08: Sleep 2 ' or 20, or 200 -&gt; same result
09: 
10: If Not Visible(&quot;Login.Text.Password&quot;) Then
11:	WriteLog &quot;Unable to find password field&quot; 
12: Else
13:	WriteLog &quot;Detected password field&quot;
14: End If
15:
16: WriteTo &quot;Login.Text.Password&quot;, &quot;wrongPassword&quot;
17: KeyPress Key.Enter
18: 
19: Click &quot;RichButton.New Message&quot;
20: 
21: WriteLog &quot;Reached end of script&quot;</pre>
<br />
Result:<br />
Login-Window is opened<br />
&quot;Unable to find password field&quot; is written to the log<br />
&quot;wrongPassword&quot; is written to the password field<br />
Line #19 fails silently (as it is the wrong password, this button is not visible)<br />
&quot;Reached end of script&quot; is written to the log<br />
<br />
Also, the AU-Statusbar show's &quot;No connection to Notes&quot; during the execution, a few seconds after the end of script, the bulb goes green.<br />
<br />
I know, user switching can be performed with the &quot;Switch id&quot; command, as shown in one of the examples, but for some cases, it would be useful, to perform a restart of the LN client.<br />
<br />
Best regards,<br />
Theodor Hartmann<br />
<br />
IBM Lotus Notes 8.5<br />
<br />
Release 8.5.1 <br />
Revision 20090929.1223 (Release 8.5.1) <br />
Standard Configuration<br />
<br />
AutoUser<br />
<br />
Vers. 1.1.920<br />
<br />
PS: If I remove line #5 and #6, and launch the LN client manually before starting the script, it works as expected]]></description>
            <dc:creator>TheodorHartmann</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 30 Mar 2010 05:07:06 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,164,164#msg-164</guid>
            <title>64Bit OS (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,164,164#msg-164</link>
            <description><![CDATA[ Will AU work on 64bit OS? I'm going to get a new laptop later this month with Win7 64bit.]]></description>
            <dc:creator>eknori</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 06:13:55 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,159#msg-159</guid>
            <title>Function notesversion (5 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,159#msg-159</link>
            <description><![CDATA[ Hello,<br />
<br />
Function notesversion displays:<br />
<br />
writelog &quot;#### Current Version is: &quot;&amp;notesversion&amp;&quot; ####&quot;<br />
<br />
#### Current Version is: 5.0.0.0.b.de ####<br />
<br />
but installed is:<br />
<br />
Release 7.0.2 HF930 November 05, 2007 ...<br />
<br />
kind regards<br />
Maik Endler]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 06:25:59 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,156,156#msg-156</guid>
            <title>More suggestions for the next version (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,156,156#msg-156</link>
            <description><![CDATA[ Is there already an option to fill out a date, calculated from today? In case a form has a validation and does not accept dates in the past, I would like to set the date automatically.<br />
<br />
The command should be like: Date(Format:string,Offset:integer). Offset can be a positive of negative value, to indicate the days after (positive) or before (negative) today.<br />
<br />
For example:<br />
<br />
Write Date(&quot;dd-mmm-yyyy&quot;,10)<br />
<br />
which should return the date tens days from now.]]></description>
            <dc:creator>sviveen</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 05 Feb 2010 03:28:04 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,153,153#msg-153</guid>
            <title>Problem with opening Notes search box (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,153,153#msg-153</link>
            <description><![CDATA[ Good Evening!<br />
<br />
We are working on a script which requires finding notification mails within the inbox.<br />
<br />
We want to use the search box which works perfect as long a we activate the inbox manually and run this code:<br />
<br />
<pre class="bbcode">
keypress key.ctrl+asc(&quot;e&quot;)   'opens search box
write &quot;testmail&quot;             'enters search term
keypress key.enter           'starts search</pre>
<br />
<br />
The problem is: This fails as soon as we add a command line which let AutoUser click on the inbox. The search box opens but the search field always remains empty. We have already tried to add a pause after opening the search box but this does not help as well.<br />
<br />
<pre class="bbcode">
Click &quot;OutlineItem.Ordner Eingang&quot; 
keypress key.ctrl+asc(&quot;e&quot;)   'opens search box
sleep 1                      'little pause which does not help
write &quot;testmail&quot;             'enters search term
keypress key.enter           'starts search</pre>
<br />
Clients used: German Notes 7.0.3 with AutoUser 1.1.746<br />
<br />
Regards<br />
<br />
Karin Klimbold]]></description>
            <dc:creator>Karin Klimbold</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 14 Jan 2010 20:04:59 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,149,149#msg-149</guid>
            <title>Auto User is not recognizing some of the objects in Lotus Notes (3 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,149,149#msg-149</link>
            <description><![CDATA[ Hi<br />
<br />
Currently i am using Lotus Notes 8.5 Demo version.I am trying to send an email using Autouser through Lotus Notes .But Auto User is not able to identify some objects in Lotus Notes.<br />
For Example when i am trying to capture the send button. It is giving the following error attached in the screenshot . <br />
<br />
kindly provide me your valuable suggestion as how to workout with these kind of situations.<br />
<br />
Thanks and Regards<br />
Abhishek Sinha]]></description>
            <dc:creator>abhishek1502</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 01 Jan 2010 14:30:23 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,144,144#msg-144</guid>
            <title>email contact details (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,144,144#msg-144</link>
            <description><![CDATA[ Hi All,<br />
<br />
I know that this isnt the correct place to post this message but could somebody send me your companys email address so I can send a query regarding purchasing. The internet filter at my place or work blocks me each time I try to send a query via your site...<br />
<br />
Thanks<br />
Des]]></description>
            <dc:creator>Des Boyle</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 27 Nov 2009 07:05:00 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,142,142#msg-142</guid>
            <title>Autouser tool is not recognizing Notes Calendar (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,142,142#msg-142</link>
            <description><![CDATA[ Hi downloaded this tool and tried automate the Notes 8.0.2 Calendar screen. When i hit the Capture button on the tool and go to notes, i am getting blue lines covering the objects and followed by the message in the tool as &quot;Press Ctrl to capture..&quot;. I pressed Ctrl and then typed some words on the Subject. Then stopped the automation. I was routed to Auto User bif main screen after hitting back on the small dialog. In the big screen i am not getting the captured objects in the opened .vbs file. <br />
<br />
Another question: Can we automate other applications using Auto User tool?<br />
<br />
Thanks<br />
-KarThik]]></description>
            <dc:creator>KarThik</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 23 Nov 2009 07:54:52 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,140,140#msg-140</guid>
            <title>Write to a local file (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,140,140#msg-140</link>
            <description><![CDATA[ Hi,<br />
<br />
how can I use WriteTo to write in a local file?<br />
<br />
Kind regards<br />
Maik]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 04 Nov 2009 11:43:23 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,134,134#msg-134</guid>
            <title>Demo Scripts for 8.5.1 (3 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,134,134#msg-134</link>
            <description><![CDATA[ Hello<br />
<br />
I just upgraded my clients to 8.5.1. Doesn't look like your test scripts included in the download package support that yet. What's your status? <br />
<br />
Howard]]></description>
            <dc:creator>Howard Shevitz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 20 Oct 2009 13:56:30 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,130,130#msg-130</guid>
            <title>Problems with KeyPress and drop down boxes (3 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,130,130#msg-130</link>
            <description><![CDATA[ Hello,<br />
I have tried AutoUser and had some problems with shortcuts in combination with drop down boxes. I use Lotus Notes 7.0.30 with AutoUser. What I want to do is to open the database open dialog and select a database from the drop down box. To open the drop down box I use the shortcut 'ALT+DOWN', but it didn't work. I added some sleeps to wait for the dialogs, but it doesn't help. Any suggestion what is wrong - my script or AutoUser. I attached my script and item container as a zip file.<br />
<br />
~marco]]></description>
            <dc:creator>marco</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 30 Sep 2009 09:35:07 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,128,128#msg-128</guid>
            <title>New Version: Suggestions (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,128,128#msg-128</link>
            <description><![CDATA[ Hello <br />
<br />
We have tested a beta release some months ago and haven't been able to use for our application. Now I have checked out the latest version and everything works fine!<br />
<br />
So instead of a bug report I have just some ideas for new features /  improvements I like to put forward:<br />
<br />
<br />
1) I really want to have the ability to create a script with Ctrl ON, Ctrl OFF, Alt ON, ALT OFF and so on options.<br />
Let me explain: let's say I want to click Actions -&gt; Tools -&gt; Preferences when I write a memo. If I create a script like this:<br />
<br />
<pre class="bbcode">
KeyPress Key.Alt+Asc(&quot;A&quot;)
KeyPress Key.Alt+Asc(&quot;T&quot;)
KeyPress Key.Alt+Asc(&quot;P&quot;)</pre>
<br />
<br />
It will not work because Alt will be pressed once more with eyery new line and the chain of commands will brake. So I want to have an ability to do it like this:<br />
<br />
<pre class="bbcode">
KeyPress Key.Alt+Asc(&quot;A&quot;)+Asc(&quot;T&quot;)+Asc(&quot;P&quot;)</pre>
<br />
<br />
Or<br />
<br />
<pre class="bbcode">
KeyPress Key.Alt ON
KeyPress Asc(&quot;A&quot;)
KeyPress Asc(&quot;T&quot;)
KeyPress Asc(&quot;P&quot;)
KeyPress Key.Alt OFF</pre>
<br />
<br />
2) There are a lot of navigation items that are available for all applications. Like File menu commands, Edit commands and so on.<br />
<br />
It will be very nice to have all this actions pre-defined by default in any new scripts, so I do not have to capture them manually any time I create a script. This will save a lot of time for any new script development.<br />
<br />
3) Is it possible to enter values during script execution?<br />
For example:<br />
I need to perform an action on a document that I need to search in the view. I create a prompt or something like that in a script and it asks me &quot;What are we searching for?&quot;<br />
<br />
I enter a key there, and a script than searches for this value in a view and than perform a set of actions on it. This will be nice to make some boring routine tasks automated without<br />
writing a lotus notes agent.<br />
<br />
Please let me know what you think about the ideas.<br />
<br />
Regards,<br />
<br />
Alex]]></description>
            <dc:creator>AlexM</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Sun, 16 Aug 2009 03:15:22 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,125,125#msg-125</guid>
            <title>Mysterious behaviour using notes functionalities (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,125,125#msg-125</link>
            <description><![CDATA[ Hi @ all,<br />
it's me again :-) and I'm having a mysterious problem with AU and Notes!<br />
<br />
We are trying to copy a Notes document to the clipboard with AU using Notes functionalities. Due to have several possibilities to do so we tried to copy the document using the menu actions of Notes. But unfortunately we always get an error message telling us that AU can't find the following items in the application.<br />
Because of that we tried a different way to get the document copied using KeyPress and it worked without any problem.<br />
Due to the fact we have to create different scripts to test all the possibilities which are available for an user we need both methods to copy documents and not only the working one.<br />
As you can see in the example script you can reproduce this behaviour of notes by starting the script with <b>&quot;intExecution = 1&quot;</b> (this will work!) and <b>&quot;intExecution = 2&quot;</b> (this won't work!). The only condition is an yet opened database with at least one selected document.<br />
<pre class="bbcode">
Option Explicit

Dim intExecution

ItemContainer = &quot;CopyTest_item_container.xml&quot;
intExecution = 1

Select Case intExecution
	Case 1
		KeyPress Key.CTRL + Asc(&quot;c&quot;)
		Click &quot;Menu.Datei&quot;
		Click &quot;Menu.Eigenschaften    Alt+Eingabe&quot;
		WriteLog &quot;Executed with value &quot; &amp; intExecution
	Case 2
		Click &quot;Menu.Bearbeiten&quot;
		Click &quot;Menu.Kopieren    Strg+C&quot;
		Click &quot;Menu.Datei&quot;
		Click &quot;Menu.Eigenschaften    Alt+Eingabe&quot;
		WriteLog &quot;Executed with value &quot; &amp; intExecution
	Case Else
		WriteLog &quot;Unexpected Execution!&quot;
End Select</pre>
I'm sorry but this is a very urgent issue and we really need a bug fix on this.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 12 Aug 2009 13:27:28 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,119,119#msg-119</guid>
            <title>Can not capture items! (5 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,119,119#msg-119</link>
            <description><![CDATA[ Hi,<br />
<br />
When i try to create a new script as &quot;Jump start: Write your first script within two minutes&quot; in help page, but i can not capture the items. The attachment is the snapshot.<br />
I am so appreciated if you tell me what shall i do!<br />
Many thanks!<br />
<br />
Adam]]></description>
            <dc:creator>adamch</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 29 Jul 2009 07:25:45 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,117,117#msg-117</guid>
            <title>Unpleasant problem with AutoNavigation (no replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,117,117#msg-117</link>
            <description><![CDATA[ Hi @ all,<br />
on using the function <b>AutoNavigation</b> I found out a reproducable and unpleasant problem.<br />
When I set <b>AutoNavigation</b> to <b>True</b> the appearance of the navigation frame of the used mail database will change. In the attached files you will find the optical result without using AutoNavigation (Screenshot#1.png) and with using it (Screenshot#2.png). And of course I was using the same script! ;-)<br />
I think this is not a very urgent issue but it should be fixed later.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 28 Jul 2009 05:35:33 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,116,116#msg-116</guid>
            <title>Error on using function RightClick (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,116,116#msg-116</link>
            <description><![CDATA[ Hi there,<br />
can you please check if I'm right because I think there is an error on using the function <b>RightClick</b>.<br />
I tried to open the properties box of a mail document by using <b>RightClick</b> on a view item. First I captured the view item with <b>Find text</b> and then I captured the context menu item &quot;Eigenschaften: Dokument&quot;. The capturing has been done properly. So I wrote the following script:<br />
<pre class="bbcode">
RightClick &quot;Text.Testmail 01 (Mime)&quot;
Click &quot;Menu.Eigenschaften: Dokument&quot;</pre>
But when executing the script I always got an error message telling me<br />
<blockquote class="bbcode"><div><small>Quote<br/></small><strong>Error 80004005 (65, 1), Can not find item &quot;Menu.Eigenschaften: Dokument&quot; in the application: (null)</strong><br/></div></blockquote>
After that I tried to record the actions with AU but the result was the same.<br />
<pre class="bbcode">
RightClick &quot;LineViewOutlineItem.Nachricht Christian Klümper   Testmail 01 (Mime) 02.07.2009 13:27 46K Büroklammernsymbol&quot;
Click &quot;Menu.Eigenschaften: Dokument.1&quot;</pre>
Thanks in advance.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 28 Jul 2009 06:33:04 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,115,115#msg-115</guid>
            <title>Missing keycode in function KeyPress (no replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,115,115#msg-115</link>
            <description><![CDATA[ Hi @ all,<br />
I think there is a keycode missing for another special key: the space bar. It works by using a string like <b>KeyPress &quot; &quot;</b> but I think the script will be more readable when using a keycode.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 28 Jul 2009 03:28:03 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,110,110#msg-110</guid>
            <title>New command to switch in single step mode (3 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,110,110#msg-110</link>
            <description><![CDATA[ Hi,<br />
due to our voluminous scripts :-) it would be nice to have a function to interrupt the running script and to switch the execution mode to single step execution. That will give us the chance to control critical parts step by step inside the script. Maybe it is possible to switch back to normal mode with the same function (e.g. <b>Script.Debug <i>True</i></b> and <b>Script.Debug <i>False</i></b>).]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 05 Feb 2010 02:43:17 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,109,109#msg-109</guid>
            <title>Properties window looses focus (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,109,109#msg-109</link>
            <description><![CDATA[ Hi @ all,<br />
when capturing items inside the properties dialog window the items seem to be captured correctly. But when using them in the script the dialog box seems to loose the focus (when having the focus the box is in dark grey, without focus the box is in white color). Due to that all <b>Clicks</b> will not work because the items will not be found, e.g. the listbox item <b>Document</b> on top of the box.<br />
This issue should be fixed <b>shortly</b> because at the moment we couldn't go on. For further scripting we need some field information of documents without opening the documents.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 23 Jul 2009 07:07:09 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,95,95#msg-95</guid>
            <title>visible() sometimes fails - no pattern (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,95,95#msg-95</link>
            <description><![CDATA[ Hello !<br />
<br />
I write script for doing search in Inbox. When checking status of navigation bar with using visible() it most time works but sometimes delivers wrong &quot;false&quot;.<br />
<br />
<pre class="bbcode">
Click &quot;OutlineItem.Mail&quot;
If not visible(&quot;LineViewOutline.Inbox &quot;) then
	Click &quot;OutlineItem.Folder Inbox&quot;
End if</pre>
<br />
Do you have any idea about it ?<br />
<br />
Regards<br />
<br />
Manuel Gomez]]></description>
            <dc:creator>Manuel Gomez</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 30 Jun 2009 08:29:31 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,94,94#msg-94</guid>
            <title>Function TextOf (4 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,94,94#msg-94</link>
            <description><![CDATA[ Good morning,<br />
it's me again :-)<br />
I think I found another issue in AU concerning the function <b>TextOf(<i>item</i>)</b>. I tried to read the content of a static text field but it returns only an empty string. As I know there are some not yet published fixes I guess this error is already done.<br />
If it is not like this you can reproduce the behaviour with the mask I sent a few days ago. And the field you can find on the tab <b>Eigenschaften</b> and it is titled as <b>DB-Titel:</b>.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 02 Jul 2009 06:49:30 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,91,91#msg-91</guid>
            <title>Capturing checkboxes (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,91,91#msg-91</link>
            <description><![CDATA[ Hi @ all and good morning,<br />
<br />
today I've got the problem again on capturing and using checkboxes and their values.<br />
<br />
I can capture the item and it will be found correctly. I can use this item in my scripts. But when running the script and using the function <b>Checked(<i>item</i>)</b> Notes will hang up immediately and it will crash! :-( In the past it worked fine but I know there has been an update concerning this feature and now it doesn't work!<br />
<br />
I hope you can reproduce this error or behaviour with help of the mask I sent you a few days ago. The checkbox items which don't work can be found on the tab <b>Eigenschaften</b>. The values are <b>Aktiviert</b> and <b>Deaktiviert</b>.<br />
<br />
It is not so urgent to be fixed because I can rem this part in our scripts and check the values by my own. But nevertheless it should be fixed in the next few days.<br />
Thanks for now]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 30 Jun 2009 02:25:27 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,90,90#msg-90</guid>
            <title>ShowUp &quot;Switching to...&quot; (1 reply)</title>
            <link>http://smart-toucan.com/forum/read.php?2,90,90#msg-90</link>
            <description><![CDATA[ Hello Lucius,<br />
due to the fact we are using 10 different script files at the moment (specially a script file for variable definitions and classes (!)) AU displays a <b>ShowUp</b> with <b>&quot;Switching to [...]&quot;</b> each time it switches to another script. Inside this definition script there are a few classes and so there many properties. Due to this AU switches very very often between the scripts! But when showing this information the script interrupts for about one or two seconds and therefor the execution of our scripts takes a very long time.<br />
And it's boring to see always this &quot;Switching to [...]&quot; :-)<br />
Is it possible to set this feature to be enabled or not by the &quot;Settings.ini&quot; of AU?<br />
It would be <b><u>very</u></b> helpful and would <b><u>increase</u></b> the execution of AU scripts...]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Jul 2009 02:36:32 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,86,86#msg-86</guid>
            <title>Script.CurrentFolder (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,86,86#msg-86</link>
            <description><![CDATA[ Hi again ;-)<br />
I'm not sure but I think in the past the AU function <b>Script.CurrentFolder</b> returned the full path to the current folder where the script is saved in. Today the function only returns the name of the folder without any parent folder or driveletter... :-(<br />
This is an <b>urgent issue</b> because we are using several selfmade functions using this information (e.g. creating log files) and all of them are not working anymore.<br />
If the function was modified so it only returns the name of the current folder without driveletter etc. we have to modify our scripts but if it is another &quot;feature&quot; (sorry! ;-] ) it would be nice to have it fixed again like before. Thanks.]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 25 Jun 2009 02:42:58 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,85,85#msg-85</guid>
            <title>Using variables II (2 replies)</title>
            <link>http://smart-toucan.com/forum/read.php?2,85,85#msg-85</link>
            <description><![CDATA[ Hi @ all,<br />
I think I just found another issue to be solved in AU when using variables in several script files. To explain what is happening I've created three script files:<br />
<b>Script01.vbs</b><br />
<pre class="bbcode">
Option Explicit

Script.Include &quot;Script02.vbs&quot;   ' just a public statement inside
Script.Include &quot;Script03.vbs&quot;   ' contains the function

ShowUp MyFunction, 2</pre>
<b>Script02.vbs</b><br />
<pre class="bbcode">
Public intMyVar, intMyResult</pre>
<b>Script03.vbs</b><br />
<pre class="bbcode">
Option Explicit

Public Function MyFunction
	intMyResult = 0
	For intMyVar = 1 to 10
		intMyResult = intMyResult + intMyVar
	Next
	MyFunction = intMyResult
End Function</pre>
When executing the first script there will occure an error telling (sorry, but it is a german error text) <blockquote class="bbcode"><div><small>Quote<br/></small><strong>Error 800a01f5 (5, 2), Ungültige Zuweisung: 'intMyVar': (null)</strong><br/></div></blockquote>
The script will be executed without any error messages when redefining the variable <b>intMyVar</b> additionally inside the function like this:<br />
<pre class="bbcode">
Option Explicit

Public Function MyFunction
	<b>Dim intMyVar</b>
	intMyResult = 0
	For intMyVar = 1 to 10
		intMyResult = intMyResult + intMyVar
	Next
	MyFunction = intMyResult
End Function</pre>
<br />
Am I right that there is a bug inside or is there something I have not regarded?]]></description>
            <dc:creator>Krischan</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Jul 2009 02:35:19 -0400</pubDate>
        </item>
    </channel>
</rss>
