T.R | Title | User | Personal Name | Date | Lines |
---|
2144.1 | Who wants gum? I do, I do!! | CRISTA::CAPRICCIO | Slave to the waffle light | Mon Jan 23 1989 15:48 | 10 |
| Re: .1
> I had to write a simple program for the NewShell.
> If anyone wants it, let me know and I'll upload it.
Please do!
Thanks in advance,
Pete
|
2144.2 | NewShell upload | WJG::GUINEAU | | Tue Jan 24 1989 07:21 | 3 |
| I'll do it tonight.
John
|
2144.3 | here it is | WJG::GUINEAU | | Tue Jan 24 1989 21:35 | 32 |
|
WJG::AMIGA:ASHELL.ARC
AmigaShell
A program for use with HandyIcons to get an AmigaShell in the
menu. Just rename AShell.info to AmigaShell.info and put it and
AmigaShell into your favorite directory. Then add the path
and name to HandyIcons tooltypes.
AmigaShell will create a default window (see source for window spec)
or will read the environment variable named NewShellWin for the spec.
For example:
1> setenv NewShellWin NEWCON:0/55/550/300/AmigaShell
Make sure the window spec is right since there is no error
checking done!
John
|
2144.4 | here *it* is | WJG::GUINEAU | | Tue Jan 24 1989 21:36 | 29 |
|
Just for Kicks&Comments:
AmigaShell.c
------------
#include <stdio.h>
#include <libraries/dosextens.h>
extern char *getenv();
main()
{
UBYTE success;
char *windef,cmd[80];
windef = getenv("NewShellWin");
if(!windef)
windef = "NewCon:0/55/550/300/AmigaShell";
sprintf(cmd,"C:NewShell %s",windef);
success = Execute(cmd,NULL,NULL);
return((int)success);
}
|
2144.5 | need an executable | WILKIE::LEIMBERGER | | Wed Jan 25 1989 05:17 | 10 |
| re .4
Looks great but I don't have a compiler yet.Would you please
upload the binary code to the net.I like handy but really don't
want to give up the "shell".I have used Zippy but haven't tried
running the shell from it's menu feature.These programs that allow
you to extend the menus on workbench,are in my opinion some of the
most exciting because of the great potentional for new interfaces.
It would be great if CBM incorperated this type of user friendlyness
into It's future releases.
bill
|
2144.6 | "It's in there!" | WJG::GUINEAU | | Wed Jan 25 1989 07:57 | 11 |
|
$ arc -l ashell
Name Length Date
============ ======== =========
AmigaShell 6032 24 Jan 89 <- executable from Lattice 5.0/WB1.3
AmigaShell.c 316 24 Jan 89 <- C source code
ashell.info 395 24 Jan 89 <- The ICON (Handy requires one!)
read.me 544 24 Jan 89 <- a couple replies back
==== ========
Total 4 7287
|
2144.7 | Some delay may be necessary | YUPPIE::WILSON | Tony, the HOSS TRUMPET | Sun Jan 14 1990 19:48 | 5 |
| My HandyIcons clashed with my system the other night after I added a
MINIMEGS 1 meg upgrade (A500). It worked before I put the memory on
and when I removed it. It kept throwing up the SYSTEM ERROR requestor.
I added a WAIT 5 between my LoadWB and HandyWB and it seems to work OK.
No explanation.
|
2144.8 | HandyIcon it is, HandyWB it aint | YUPPIE::WILSON | Tony, the HOSS TRUMPET | Sun Jan 21 1990 21:42 | 6 |
| Bad news! The 5 second delay doesn't help! It issues the error
roughly every other time the system is booted.
It still works fine when I click on the icon.
(Maybe I should start it first and let it wait on WB :^)
|