home *** CD-ROM | disk | FTP | other *** search
- /* Insert_FMLCode.ms V1.0
- **
- ** Open a string requester where you can enter MathScript's
- ** formula describtion code to be inserted
- ** Needs rexxreqtools.library!
- **
- */
-
- options results
-
- if ~show('l','rexxreqtools.library') then
- if ~addlib('rexxreqtools.library',0,-30,0) then
- do
- say "Cannot open rexxreqtools.library!"
- exit 20
- end
-
- code=rtgetstring(,"FML Code:","Insert FMLCode","_Insert|_Cancel",,)
-
- if code="" then exit
-
- InsertCode '"'||code||'"'
-
-