<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How to avoid calling packages multiple times</title>
    <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 11:45:49 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 11:45:49 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How to avoid calling packages multiple times</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How to avoid calling packages multiple times</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times</link>
    </image>
    <item>
      <title>For details on initialization files you can</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96508</link>
      <itunes:summary>&lt;p&gt;For details on initialization files you can see &lt;a href="http://www.maplesoft.com/support/help/search.aspx?term=CreateMapleInitializationFile"&gt;?CreateMapleInitializationFile&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You could try to make a worksheet script for your students.&amp;nbsp; I know the following Maple code works in Linux to set up the init file so that it will automatically run 'with' after each restart. I think it works in Windows, but I have not tested it.&lt;/p&gt;
&lt;pre&gt; # Uncomment the approriate line below:&lt;br&gt; #mapleinitfile := cat(kernelopts(homedir), kernelopts(dirsep), ".mapleinit"); # Linux, Solaris, and Mac&lt;br&gt; #mapleinitfile := cat(kernelopts(homedir), kernelopts(dirsep), "maple.ini"); # Windows (untested)&lt;br&gt;&lt;br&gt; FileTools:-Copy(mapleinitfile, cat(mapleinitfile, ".mpl.bak"));&lt;br&gt; FileTools:-Text:-Open( mapleinitfile, 'append');&lt;br&gt; FileTools:-Text:-WriteLine(mapleinitfile, "with(PackageName):");&lt;br&gt; FileTools:-Text:-Close( mapleinitfile );&lt;br&gt;﻿&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;For details on initialization files you can see &lt;a href="http://www.maplesoft.com/support/help/search.aspx?term=CreateMapleInitializationFile"&gt;?CreateMapleInitializationFile&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You could try to make a worksheet script for your students.&amp;nbsp; I know the following Maple code works in Linux to set up the init file so that it will automatically run 'with' after each restart. I think it works in Windows, but I have not tested it.&lt;/p&gt;
&lt;pre&gt; # Uncomment the approriate line below:&lt;br&gt; #mapleinitfile := cat(kernelopts(homedir), kernelopts(dirsep), ".mapleinit"); # Linux, Solaris, and Mac&lt;br&gt; #mapleinitfile := cat(kernelopts(homedir), kernelopts(dirsep), "maple.ini"); # Windows (untested)&lt;br&gt;&lt;br&gt; FileTools:-Copy(mapleinitfile, cat(mapleinitfile, ".mpl.bak"));&lt;br&gt; FileTools:-Text:-Open( mapleinitfile, 'append');&lt;br&gt; FileTools:-Text:-WriteLine(mapleinitfile, "with(PackageName):");&lt;br&gt; FileTools:-Text:-Close( mapleinitfile );&lt;br&gt;﻿&lt;/pre&gt;</description>
      <guid>96508</guid>
      <pubDate>Mon, 30 Aug 2010 23:42:41 Z</pubDate>
      <itunes:author>John May</itunes:author>
      <author>John May</author>
    </item>
    <item>
      <title>command line options</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96514</link>
      <itunes:summary>&lt;p&gt;John's solution is interesting, but I wouldn't want a worksheet to mess with my initialization file. There is another way to do what you want, however, as with most things, it is easy to do in linux, and a bit more challenging in Windows.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you launch the Maple gui from the command line, you can use the -c option to assign a command that the Maple engine executes when it starts up, and reexecutes following a restart.&amp;nbsp; So if you wanted to load a package few packages you could do (in linux)&lt;/p&gt;
&lt;pre&gt;$ maple -x -c 'with(plots)' -c 'with(LinearAlgebra)'&lt;/pre&gt;
&lt;p&gt;The -x option says to launch the gui, each -c option defines a command that is executed. For a more complicated sequence of commands, you could put them into a text file, say restart.mpl, and then do&lt;/p&gt;
&lt;pre&gt;$ maple -x -c 'read("restart.mpl")'&lt;/pre&gt;
&lt;p&gt;The Maple commands in restart.mpl will be read and executed at startup and following each restart.&lt;/p&gt;
&lt;p&gt;Getting this to work in Windows is doable, I believe, though I don't use Windows so cannot verify.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;John's solution is interesting, but I wouldn't want a worksheet to mess with my initialization file. There is another way to do what you want, however, as with most things, it is easy to do in linux, and a bit more challenging in Windows.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you launch the Maple gui from the command line, you can use the -c option to assign a command that the Maple engine executes when it starts up, and reexecutes following a restart.&amp;nbsp; So if you wanted to load a package few packages you could do (in linux)&lt;/p&gt;
&lt;pre&gt;$ maple -x -c 'with(plots)' -c 'with(LinearAlgebra)'&lt;/pre&gt;
&lt;p&gt;The -x option says to launch the gui, each -c option defines a command that is executed. For a more complicated sequence of commands, you could put them into a text file, say restart.mpl, and then do&lt;/p&gt;
&lt;pre&gt;$ maple -x -c 'read("restart.mpl")'&lt;/pre&gt;
&lt;p&gt;The Maple commands in restart.mpl will be read and executed at startup and following each restart.&lt;/p&gt;
&lt;p&gt;Getting this to work in Windows is doable, I believe, though I don't use Windows so cannot verify.&lt;/p&gt;</description>
      <guid>96514</guid>
      <pubDate>Tue, 31 Aug 2010 04:03:01 Z</pubDate>
      <itunes:author>Joe Riel</itunes:author>
      <author>Joe Riel</author>
    </item>
    <item>
      <title>customized restart command - first ideas</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96516</link>
      <itunes:summary>&lt;p&gt;Here's an idea that I hope somewill can turn into a viable answer.&lt;/p&gt;
&lt;p&gt;What I envision is a procedure that captures the list of loaded packages, executes the restart, and then reloads the packages.&lt;/p&gt;
&lt;p&gt;The packages command provides the list of currently loaded packages. So, what you want to execute is, essentailly:&lt;/p&gt;
&lt;pre&gt;restart; map( with, packages() );&lt;/pre&gt;
&lt;p&gt;where the value of packages() is determined before the restart is executed.&lt;/p&gt;
&lt;p&gt;Here's my naive attempt to implement this idea:&lt;/p&gt;
&lt;pre&gt;MyRestart := proc()&lt;br&gt;&amp;nbsp; local _CMD;&lt;br&gt;&amp;nbsp; _CMD := sprintf( "restart; map( with, %a );", packages() );&lt;br&gt;&amp;nbsp; parse( _CMD );&lt;br&gt;&amp;nbsp; return NULL;&lt;br&gt;end proc;&lt;/pre&gt;
&lt;p&gt;Usage would be:&lt;/p&gt;
&lt;pre&gt;MyRestart();&lt;/pre&gt;
&lt;p&gt;This does not work because parse executes only one command each time it's called. So, the offset option has to be used, maybe something like this:&lt;/p&gt;
&lt;pre&gt;MyRestart := proc()&lt;br&gt; &amp;nbsp; local _CMD;&lt;br&gt; &amp;nbsp; _CMD := sprintf( "restart; map( with, %a );", packages() );&lt;br&gt; &amp;nbsp; parse( _CMD, 'offset'=0, statement );&lt;br&gt; &amp;nbsp; parse( _CMD, 'offset'=10, statement );&lt;br&gt; &amp;nbsp; return NULL;&lt;br&gt; end proc;&lt;/pre&gt;
&lt;p&gt;(There's no need for lastread because we know there are exactly 2 statements in this string.&lt;/p&gt;
&lt;p&gt;This has several problems. First, restart can be executed only at the top level, not in a proc.&lt;/p&gt;
&lt;p&gt;That's as far as I got with this tonight. I'll bet by the time I wake up someone will have a way to do this. I just hope my ideas are helpful in getting to that point.&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu
&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Here's an idea that I hope somewill can turn into a viable answer.&lt;/p&gt;
&lt;p&gt;What I envision is a procedure that captures the list of loaded packages, executes the restart, and then reloads the packages.&lt;/p&gt;
&lt;p&gt;The packages command provides the list of currently loaded packages. So, what you want to execute is, essentailly:&lt;/p&gt;
&lt;pre&gt;restart; map( with, packages() );&lt;/pre&gt;
&lt;p&gt;where the value of packages() is determined before the restart is executed.&lt;/p&gt;
&lt;p&gt;Here's my naive attempt to implement this idea:&lt;/p&gt;
&lt;pre&gt;MyRestart := proc()&lt;br&gt;&amp;nbsp; local _CMD;&lt;br&gt;&amp;nbsp; _CMD := sprintf( "restart; map( with, %a );", packages() );&lt;br&gt;&amp;nbsp; parse( _CMD );&lt;br&gt;&amp;nbsp; return NULL;&lt;br&gt;end proc;&lt;/pre&gt;
&lt;p&gt;Usage would be:&lt;/p&gt;
&lt;pre&gt;MyRestart();&lt;/pre&gt;
&lt;p&gt;This does not work because parse executes only one command each time it's called. So, the offset option has to be used, maybe something like this:&lt;/p&gt;
&lt;pre&gt;MyRestart := proc()&lt;br&gt; &amp;nbsp; local _CMD;&lt;br&gt; &amp;nbsp; _CMD := sprintf( "restart; map( with, %a );", packages() );&lt;br&gt; &amp;nbsp; parse( _CMD, 'offset'=0, statement );&lt;br&gt; &amp;nbsp; parse( _CMD, 'offset'=10, statement );&lt;br&gt; &amp;nbsp; return NULL;&lt;br&gt; end proc;&lt;/pre&gt;
&lt;p&gt;(There's no need for lastread because we know there are exactly 2 statements in this string.&lt;/p&gt;
&lt;p&gt;This has several problems. First, restart can be executed only at the top level, not in a proc.&lt;/p&gt;
&lt;p&gt;That's as far as I got with this tonight. I'll bet by the time I wake up someone will have a way to do this. I just hope my ideas are helpful in getting to that point.&lt;/p&gt;
&lt;!--break--&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu
&lt;/pre&gt;</description>
      <guid>96516</guid>
      <pubDate>Tue, 31 Aug 2010 07:27:22 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>Unassigning user assigned names</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96522</link>
      <itunes:summary>&lt;p&gt;Here is another idea.&lt;/p&gt;
&lt;p&gt;The procedure _RemoveMyAssignments unassigns all user assigned names, but because of the leading underscore, it doesn't unassign the name _RemoveMyAssignments.&lt;/p&gt;
&lt;p&gt;If the procedure is placed in a library, it won't be unassigned either. See the help for 'anames'.&lt;/p&gt;
&lt;p&gt;_RemoveMyAssignments:=proc() local L;&lt;br&gt;L:=map(convert,[anames('user')],string);&lt;br&gt;unassign(op(map(parse,L)))&lt;br&gt;end proc:&lt;/p&gt;
&lt;p&gt;&lt;br&gt;p:=plot(sin);&lt;br&gt;tr1:=87;&lt;br&gt;t[6]:=14;&lt;br&gt;M:=Matrix(3,3,(i,j)-&amp;gt;i+j);&lt;br&gt;_RemoveMyAssignments();&lt;br&gt;p,tr1,t[6],M;&lt;br&gt;eval(t);&lt;br&gt;eval(_RemoveMyAssignments);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Here is another idea.&lt;/p&gt;
&lt;p&gt;The procedure _RemoveMyAssignments unassigns all user assigned names, but because of the leading underscore, it doesn't unassign the name _RemoveMyAssignments.&lt;/p&gt;
&lt;p&gt;If the procedure is placed in a library, it won't be unassigned either. See the help for 'anames'.&lt;/p&gt;
&lt;p&gt;_RemoveMyAssignments:=proc() local L;&lt;br&gt;L:=map(convert,[anames('user')],string);&lt;br&gt;unassign(op(map(parse,L)))&lt;br&gt;end proc:&lt;/p&gt;
&lt;p&gt;&lt;br&gt;p:=plot(sin);&lt;br&gt;tr1:=87;&lt;br&gt;t[6]:=14;&lt;br&gt;M:=Matrix(3,3,(i,j)-&amp;gt;i+j);&lt;br&gt;_RemoveMyAssignments();&lt;br&gt;p,tr1,t[6],M;&lt;br&gt;eval(t);&lt;br&gt;eval(_RemoveMyAssignments);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>96522</guid>
      <pubDate>Tue, 31 Aug 2010 14:52:43 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>re-initialization</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96525</link>
      <itunes:summary>&lt;p&gt;We should note Erik's own comment that one of the benefits of having the `with` inside the worksheet is that it makes the worksheet portable amongst other users. It makes sense: if the worksheet needs the packages loaded in order to work as intended, then it is the worksheet which should somehow bring about the `with` loading.&lt;/p&gt;
&lt;p&gt;Having said that, of all the approaches mentioned I like Joe's most, to use an option of the GUI's launcher. At some universities the IT support is somehow able to install customized application launchers on students desktops. It could be done for a class, too, even if by running an insall script just once at the start of the semester.&lt;/p&gt;
&lt;p&gt;And repeated -c options might not be the only way, using the launcher. isn't there also a -i option, to force use of a particular file as the initialization file instead of the usual maple.ini? Or is that only on Unix?&lt;/p&gt;
&lt;p&gt;Trying to somehow clear the entire environment, by removing all assignments, etc, seems hard to do exhaustively. Erik only mentioned inadvertant assignments to variables. But there are also remember tables and caches of system routines to consider. That includes both remember tables of evalf, limit, etc, but also mistakes like &lt;strong&gt;sin(x):=2.3&lt;/strong&gt; which don't show up in &lt;strong&gt;anames(user)&lt;/strong&gt;.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;We should note Erik's own comment that one of the benefits of having the `with` inside the worksheet is that it makes the worksheet portable amongst other users. It makes sense: if the worksheet needs the packages loaded in order to work as intended, then it is the worksheet which should somehow bring about the `with` loading.&lt;/p&gt;
&lt;p&gt;Having said that, of all the approaches mentioned I like Joe's most, to use an option of the GUI's launcher. At some universities the IT support is somehow able to install customized application launchers on students desktops. It could be done for a class, too, even if by running an insall script just once at the start of the semester.&lt;/p&gt;
&lt;p&gt;And repeated -c options might not be the only way, using the launcher. isn't there also a -i option, to force use of a particular file as the initialization file instead of the usual maple.ini? Or is that only on Unix?&lt;/p&gt;
&lt;p&gt;Trying to somehow clear the entire environment, by removing all assignments, etc, seems hard to do exhaustively. Erik only mentioned inadvertant assignments to variables. But there are also remember tables and caches of system routines to consider. That includes both remember tables of evalf, limit, etc, but also mistakes like &lt;strong&gt;sin(x):=2.3&lt;/strong&gt; which don't show up in &lt;strong&gt;anames(user)&lt;/strong&gt;.&lt;/p&gt;</description>
      <guid>96525</guid>
      <pubDate>Tue, 31 Aug 2010 15:44:15 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>Repeat Autoexecute</title>
      <link>http://www.mapleprimes.com/questions/96504-How-To-Avoid-Calling-Packages-Multiple-Times?ref=Feed:MaplePrimes:How to avoid calling packages multiple times:Comments#answer96526</link>
      <itunes:summary>&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;form&gt;
&lt;table width="576" align="center"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/014a9ec2069c95efa911f3cc5c4c3f5e.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;Another way is to create a region of code and insert into it: with (Packages);&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;On the Format menu go to autoexecute / set and &lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;go to Edit menu Exetute / repeat / autoexecute.&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;The interesting thing would be to avoid the message:&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 100%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/5dda33191df44044aaa5fabc56867889.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img src="/view.aspx?sf=96526/280700/96ed38708ce57e101069212f62fd4dcc.gif" alt="" width="398" height="118" align="center"&gt;&lt;/p&gt;
&lt;span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;input name="ecbutton38_button" src="/view.aspx?sf=96526/280700/4d36b1b7d2f6959254b79cb79367d131.gif" type="image"&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 100%; font-family: monospace,monospace; font-weight: normal; font-style: normal;"&gt;your Package&lt;/span&gt; &lt;/span&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/f21365992da43c5097334f9265a30bda.gif" alt="" width="47" height="23"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/3b261c91b01220a3544c208d979da998.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/4cf3c23b8b96231dc1be1f36b79ab773.gif" alt="" width="141" height="23"&gt;&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr valign="baseline"&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;a href="http://www.maplesoft.com/support/faqs/MapleNet/redirect.aspx?param=plot_java_14206"&gt;&lt;img style="border: none;" src="/view.aspx?sf=96526/280700/a22d17410d48e23f67f3a9178276002f.gif" alt="" width="400" height="400" align="middle"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="color: #000000; font-family: Times, serif; font-weight: bold; font-style: normal;" align="right"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/d4b218c74a89e5859284be853d4a4d1f.gif" alt="" width="47" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/99681ede902f407bec17761b5c06c1f5.gif" alt="" width="228" height="23"&gt;&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr valign="baseline"&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;a href="http://www.maplesoft.com/support/faqs/MapleNet/redirect.aspx?param=plot_java_14206"&gt;&lt;img style="border: none;" src="/view.aspx?sf=96526/280700/d3b5db6ec8506ff44ceb193ddea8bc7e.gif" alt="" width="400" height="400" align="middle"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="color: #000000; font-family: Times, serif; font-weight: bold; font-style: normal;" align="right"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/1aae7f992b3221a5a1829681c5beb683.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;input name="sequence" type="hidden" value="1"&gt;&lt;/form&gt;
&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=96526/280700/Autoexecute.mw"&gt;Download Autoexecute.mw&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;form&gt;
&lt;table width="576" align="center"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/014a9ec2069c95efa911f3cc5c4c3f5e.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;Another way is to create a region of code and insert into it: with (Packages);&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;On the Format menu go to autoexecute / set and &lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;go to Edit menu Exetute / repeat / autoexecute.&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 133%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;The interesting thing would be to avoid the message:&lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;span style="color: #000000; font-size: 100%; font-family: Times New Roman,serif; font-weight: normal; font-style: normal;"&gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/5dda33191df44044aaa5fabc56867889.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img src="/view.aspx?sf=96526/280700/96ed38708ce57e101069212f62fd4dcc.gif" alt="" width="398" height="118" align="center"&gt;&lt;/p&gt;
&lt;span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;input name="ecbutton38_button" src="/view.aspx?sf=96526/280700/4d36b1b7d2f6959254b79cb79367d131.gif" type="image"&gt;&lt;/span&gt;&lt;span style="color: #000000; font-size: 100%; font-family: monospace,monospace; font-weight: normal; font-style: normal;"&gt;your Package&lt;/span&gt; &lt;/span&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/f21365992da43c5097334f9265a30bda.gif" alt="" width="47" height="23"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/3b261c91b01220a3544c208d979da998.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/4cf3c23b8b96231dc1be1f36b79ab773.gif" alt="" width="141" height="23"&gt;&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr valign="baseline"&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;a href="http://www.maplesoft.com/support/faqs/MapleNet/redirect.aspx?param=plot_java_14206"&gt;&lt;img style="border: none;" src="/view.aspx?sf=96526/280700/a22d17410d48e23f67f3a9178276002f.gif" alt="" width="400" height="400" align="middle"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="color: #000000; font-family: Times, serif; font-weight: bold; font-style: normal;" align="right"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/d4b218c74a89e5859284be853d4a4d1f.gif" alt="" width="47" height="23"&gt;&lt;/p&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/99681ede902f407bec17761b5c06c1f5.gif" alt="" width="228" height="23"&gt;&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr valign="baseline"&gt;
&lt;td&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;a href="http://www.maplesoft.com/support/faqs/MapleNet/redirect.aspx?param=plot_java_14206"&gt;&lt;img style="border: none;" src="/view.aspx?sf=96526/280700/d3b5db6ec8506ff44ceb193ddea8bc7e.gif" alt="" width="400" height="400" align="middle"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="color: #000000; font-family: Times, serif; font-weight: bold; font-style: normal;" align="right"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="margin: 0 0 0 0; padding-top: 0px; padding-bottom: 0px;"&gt;&lt;img style="vertical-align: -6;" src="/view.aspx?sf=96526/280700/1aae7f992b3221a5a1829681c5beb683.gif" alt="" width="6" height="23"&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;input name="sequence" type="hidden" value="1"&gt;&lt;/form&gt;
&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=96526/280700/Autoexecute.mw"&gt;Download Autoexecute.mw&lt;/a&gt;&lt;/p&gt;</description>
      <guid>96526</guid>
      <pubDate>Tue, 31 Aug 2010 16:00:44 Z</pubDate>
      <itunes:author>herclau</itunes:author>
      <author>herclau</author>
    </item>
  </channel>
</rss>