Hi,

you would need to use REBOL/View instead of REBOL/Core to be able to pop up
a window, REBOL/Core has no GFX support. Also one comment to your script.
You're probably trying to declare that N should be integer! and PANOFFSET
decimal! but that's not needed in REBOL. You can write your script as:


n: 0

comment {change these values}
panoffset: 0.0
tiltoffset: 0.0


In REBOL/core you can use ASK or INPUT

panoffset: to decimal! ask "Enter value for panoffset:"

(beacuse ASK returns string! you have to convert it to decimal!)

Bye,

REBolek


On 12/21/05, Akram <[EMAIL PROTECTED]> wrote:
>
>
> Dear Rebol Expert,
> I'm sorry, I'm a newbie and not proficiently good in programming. I'm
> doing
> my school project using Rebol/core software. The machine will pan and tilt
> by adjusting 'panoffset' and 'tiltoffset' values below. My problem is how
> can I possible run the rebol and then 'show pop up' and adjust the values
> at
> the 'field of text' and confirm with 'ok' button. Could someone please
> help
> me to fix the problem or show me the way to do it. Below is the script;
>
> make integer! n: 0
>
> comment {change these values}
> make decimal! panoffset: 0.0
> make decimal! tiltoffset: 0.0
>
>
> Thanks in advanced for the help and very much appreciated.
>
> Regards,
> Akram
> UniKL British Malaysian Institute,
> Malaysia
>
> --
> To unsubscribe from the list, just send an email to
> lists at rebol.com with unsubscribe as the subject.
>
>


--
/
Boleslav Brezovsky
http://krutek.info
\

-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to