Hi,
I have recently decided to use "notepad++" rather than "tcl Editor". However, I cannot run my OpenSees model when I push Run Button in notepad++, while I have no problem running model from Tcl Editor. Could you tell me please how can I cope this problem, and what I have to exactly do? I appreciate your consideration.
Run OpenSees in notepad++
Moderators: silvia, selimgunay, Moderators
Re: Run OpenSees in notepad++
Hi,
you can see this post:
http://opensees.berkeley.edu/community/ ... =2&t=54014
However, in my case I run the tcl file written in notepadd++ opening the OpenSees.exe or directly from Matlab.
Andrea
you can see this post:
http://opensees.berkeley.edu/community/ ... =2&t=54014
However, in my case I run the tcl file written in notepadd++ opening the OpenSees.exe or directly from Matlab.
Andrea
Scientists study the world as it is; engineers create the world that never has been.
Re: Run OpenSees in notepad++
Thanks a lot dear Andrea
-
- Posts: 1
- Joined: Thu Jul 17, 2014 11:53 pm
- Location: University of Pisa
Re: Run OpenSees in notepad++
Hi all,
To run Opensees "inside" Notepad++, I use NppExec Plugin.
You can found it in the Plugin Manager of Notepad++.
To set-up the plugin, go to Plugin->NppExcec->Exectute and copy the follow code
echo off
cls
echo Starting OpenSees..
echo off
C:\tcleditor\bin\openSees.exe "$(FULL_CURRENT_PATH)"
Actually I prefer to use Komodo Editor with the follow command
Tools->Run Command...
C:\tcleditor\bin\openSees.exe %f
David
To run Opensees "inside" Notepad++, I use NppExec Plugin.
You can found it in the Plugin Manager of Notepad++.
To set-up the plugin, go to Plugin->NppExcec->Exectute and copy the follow code
echo off
cls
echo Starting OpenSees..
echo off
C:\tcleditor\bin\openSees.exe "$(FULL_CURRENT_PATH)"
Actually I prefer to use Komodo Editor with the follow command
Tools->Run Command...
C:\tcleditor\bin\openSees.exe %f
David