<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SciTE Java API</title>
	<atom:link href="http://www.burgaud.com/scite-java-api/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burgaud.com/scite-java-api/</link>
	<description>André Burgaud’s Blog</description>
	<lastBuildDate>Wed, 24 Feb 2010 02:04:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: André Burgaud</title>
		<link>http://www.burgaud.com/scite-java-api/comment-page-1/#comment-501</link>
		<dc:creator>André Burgaud</dc:creator>
		<pubDate>Sat, 26 Sep 2009 16:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://74.220.207.61/~burgaudc/wordpress/?p=10#comment-501</guid>
		<description>On Windows, to execute a BeanShell script from SciTE, you could add the following lines to the &lt;em&gt;cpp.properties&lt;/em&gt; file located in the SciTE installation directory:

&lt;pre class=&quot;brush: text;&quot;&gt;
command.go.*.bsh=cmd /q /c bsh $(FilePath)
command.go.subsystem.*.bsh=1
&lt;/pre&gt;
In this scenario, bsh is in fact a windows batch file dropped in the &lt;em&gt;PATH&lt;/em&gt;. Example of &lt;em&gt;bsh.bat&lt;/em&gt; file:
&lt;pre class=&quot;brush: text;&quot;&gt;
@echo off
setlocal
:CLASSPATH
set BSH_HOME=C:\ab\bsh
set LOCALCLASSPATH=.;
for %%i in (&quot;%BSH_HOME%\*.jar&quot;) do call :LCP &quot;%%i&quot;
goto MAIN
:LCP
set LOCALCLASSPATH=%LOCALCLASSPATH%;%1
goto :EOF
:MAIN
java -classpath %LOCALCLASSPATH% bsh.Interpreter %*
:END
endlocal
&lt;/pre&gt;

Following the instructions above, when editing a BeahShell script, in the menu &lt;strong&gt;Tools&lt;/strong&gt;, the command &lt;strong&gt;Go (F5)&lt;/strong&gt; is enabled and allows to execute the script with the output redirected to the SciTE output pane. A Console window appears during the execution of the script.</description>
		<content:encoded><![CDATA[<p>On Windows, to execute a BeanShell script from SciTE, you could add the following lines to the <em>cpp.properties</em> file located in the SciTE installation directory:</p>
<pre class="brush: text;">
command.go.*.bsh=cmd /q /c bsh $(FilePath)
command.go.subsystem.*.bsh=1
</pre>
<p>In this scenario, bsh is in fact a windows batch file dropped in the <em>PATH</em>. Example of <em>bsh.bat</em> file:</p>
<pre class="brush: text;">
@echo off
setlocal
:CLASSPATH
set BSH_HOME=C:\ab\bsh
set LOCALCLASSPATH=.;
for %%i in ("%BSH_HOME%\*.jar") do call :LCP "%%i"
goto MAIN
:LCP
set LOCALCLASSPATH=%LOCALCLASSPATH%;%1
goto :EOF
:MAIN
java -classpath %LOCALCLASSPATH% bsh.Interpreter %*
:END
endlocal
</pre>
<p>Following the instructions above, when editing a BeahShell script, in the menu <strong>Tools</strong>, the command <strong>Go (F5)</strong> is enabled and allows to execute the script with the output redirected to the SciTE output pane. A Console window appears during the execution of the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sm</title>
		<link>http://www.burgaud.com/scite-java-api/comment-page-1/#comment-493</link>
		<dc:creator>sm</dc:creator>
		<pubDate>Sun, 06 Sep 2009 14:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://74.220.207.61/~burgaudc/wordpress/?p=10#comment-493</guid>
		<description>Hey, nice tutorial! Thank you.

Just a litle question;

Did you manage to use Scite editor to run (test) BeanShell scripts? I mean use Scite like an IDE to deploy BeanShell code. There is a way to create a tool in tools menu to run a BeansShell script real-time?

Thank you</description>
		<content:encoded><![CDATA[<p>Hey, nice tutorial! Thank you.</p>
<p>Just a litle question;</p>
<p>Did you manage to use Scite editor to run (test) BeanShell scripts? I mean use Scite like an IDE to deploy BeanShell code. There is a way to create a tool in tools menu to run a BeansShell script real-time?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
</channel>
</rss>
