Re: [Amforth] Compiling Label

2013-11-15 Thread Matthias Trute
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Craig, > >> I tried your suggesting but sliteral cannot be compiled into >> another definition for some reason. > > sliteral is an immediate word. That means that you will have to use > postpone to compile it. Sorry, I forgot it.. A even better s

Re: [Amforth] Compiling Label

2013-11-15 Thread Matthias Trute
Hi Craig, > I tried your suggesting but sliteral cannot be compiled into another > definition for some reason. sliteral is an immediate word. That means that you will have to use postpone to compile it. Sorry, I forgot it.. Is the following at least somehow in the direction of what you want to

[Amforth] Compiling Label

2013-11-14 Thread craig and heather
Matthias I tried your suggesting but sliteral cannot be compiled into another definition for some reason. It is not found even though I can see it in my words list and I can ' sliteral . and it is found. Is it on some non-default wordlist ? Maybe a better question to ask is "Is there another wor

Re: [Amforth] Compiling Label

2013-11-14 Thread Matthias Trute
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Craig, > I'm trying to create a label defining word which I would like to > work as follows: > > xPos yPos s" this is the labels text" label: labelName > > I tried this code: > > \ Define a label that places itself : label:( x y

[Amforth] Compiling Label

2013-11-14 Thread craig and heather
I'm trying to create a label defining word which I would like to work as follows: xPos yPos s" this is the labels text" label: labelName I tried this code: \ Define a label that places itself : label:( x y addr count --- ) create , , , , does> dup over over