Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[ALLY] "new" experimental version of /View for Amiga ?

 [1/6] from: peoyli:algonet:se at: 11-Aug-2000 17:05


Hi, I have noticed that just about every other platform except the Amiga have had updates to View on the experimental releases page.. When will there be _any_ newer version than 0.10.18 available for the Amiga platform ? I need the text scrolling in fields and areas promised by version 0.10.19.. /PeO -- /* P-O Yliniemi, Bizlink Systems & Development AB *\ \* [peo--bizlink--se] | Solaris (SunOS 5.6-5.8), Perl, REBOL | [peoyli--algonet--se] */ /* +46-70-4663336 | CGI, (S)HTML, PHP, sql | +46-70-5685919 *\ \* | Apache, qmail, squid, BIND, IPFilter | +46-911-205474 */

 [2/6] from: holger:rebol at: 11-Aug-2000 17:47


On Fri, Aug 11, 2000 at 05:05:04PM -0800, [peoyli--algonet--se] wrote:
> Hi, > > I have noticed that just about every other platform except the Amiga > have had updates to View on the experimental releases page.. > > When will there be _any_ newer version than 0.10.18 available for the > Amiga platform ?
We can build experimental releases on most Unix versions (and now on Windows as well) fully automatically and in parallel on all machines. Just a few mouse clicks, followed by some waiting... On all other platforms building experimental releases takes quite a bit of manual work. Until we have those remaining tasks automatized experimental releases on AmigaOS, BeOS, MacOS, QNX, Elate etc. will have to occur less frequently (usually once every few weeks or so). Sorry for that, but we cannot afford to spend all that much time on experimental releases when there is so much other important stuff to do :). -- Holger Kruse [holger--rebol--com]

 [3/6] from: peoyli:algonet:se at: 12-Aug-2000 2:45


This is a MIME encoded multipart message. The fact that you are reading this means you don't have a MIME capable mail program. You might still be able to read part of the mail's content, but some of it may require a MIME capable mail reader to decode. Following are some URLs where you can find MIME-capable mail programs for common platforms: Amiga............: MicroDot-II http://www.vapor.com/ Unix.............: Metamail ftp://ftp.bellcore.com/nsb/ Windows/Macintosh: Eudora http://www.qualcomm.com/ General info about MIME can be found at: http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mime-faq/top.html --=_=8<==MD2399536B1-55F574AB==8<=_Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi, I would appreciate if you would like to write that work around. It's the horizontal scrolling I need, so I can see what I'm typing in the fields, I have a solution for the vertical one (and also a better working slider knob than those that are used everywhere). I also need (in preferred order): · some way to reactivate the input field · to have the slider knob moving downwards as the text box fills · (really not important, but nice) - change the scroller knob's size to be relative to the visible/total lines Wouldn't it be possible to use the code from a newer version of View instead of writing new code ? /PeO
> Hi, > If you can't wait for the text scrolling, let me know I will write a work
<<quoted lines omitted: 35>>
> > > >
-- /* P-O Yliniemi, Bizlink Systems & Development AB *\ \* [peo--bizlink--se] | Solaris (SunOS 5.6-5.8), Perl, REBOL | [peoyli--algonet--se] */ /* +46-70-4663336 | CGI, (S)HTML, PHP, sql | +46-70-5685919 *\ \* | Apache, qmail, squid, BIND, IPFilter | +46-911-205474 */ --=_=8<==MD2399536B1-55F574AB==8<=_Content-Type: text/plain; charset=us-ascii; name="viewtest.r" Content-Transfer-Encoding: plain (7/8 bit) Content-Disposition: attachment; filename="viewtest.r" X-MD2-FilePath: Work:Programming/REBOL/viewtest.r REBOL [] appname: "ViewTest 0.0.1" fsize: 11 tboxlines: 10 tboxwidth: 250 tboxsize: to-pair rejoin [tboxwidth "x" tboxlines * fsize] iboxsize: to-pair rejoin [tboxsize/x "x" fsize + 9] fontspec: [ color: 0.255.0 shadow: none name:"helvetica" size: fsize ] main: layout [ backdrop 200.0.200 with [effect: [gradient 1x1]] origin 10x15 at 10x10 title appname across ;space 2 at 10x50 text-face: text tboxsize with [para/origin/y: 0 text: rejoin ["Welcome to " appname] color: 0.0.0 font: fontspec] text-scroller: slider with [size/y: tboxsize/y size/x: 14] [ tsize: size-text text-face if tsize/y > text-face/size/y [ newy: negate ( (text-scroller/data - 1) / (text-scroller/size/y - 5) * (tsize/y - text-face/size/y) ) text-face/para/origin/y: newy ] ; print rejoin [ ; " text face height: " text-face/size/y ; " textsize: " tsize/y ; " scroller data: " text-scroller/data ; " newy: " newy ; ] show text-face ] below ;space 1 input-field: field iboxsize [handle-input input-field text-face] ] handle-input: func [ "Get text from input-face, append it to dest-face and clear the text in the input-face." input-face [object!] dest-face [object!] ][ dest-face/text: rejoin [dest-face/text #"^/" input-face/text] input-face/text: none tsize: size-text dest-face if tsize/y > dest-face/size/y [ dest-face/para/origin/y: text-face/size/y - tsize/y text-scroller/data: text-scroller/size/y - 4 ] show dest-face system/view/vid/vid-feel/focus input-face show input-face ] view/title/offset main appname 500x500 --=_=8<==MD2399536B1-55F574AB==8<=_=-- (end of MIME multipart message)

 [4/6] from: peoyli:algonet:se at: 12-Aug-2000 10:35


> Hello [peoyli--algonet--se]! > On 12-Ago-00, you wrote:
<<quoted lines omitted: 6>>
> You can change the knob size and position at any time with the > provided functions.
ok, I will try that (again), hopefully with more satisfaction this time (last version I tried was 1.3.0).. /PeO

 [5/6] from: allenk::powerup::com::au at: 12-Aug-2000 14:04


Hi, If you can't wait for the text scrolling, let me know I will write a work around for you (or tell you how to do it), but it won't be pretty (depends whether or not arrow key events are intercepted or not on the Amiga) It will be a waste of time really, if you can wait. Cheers, Allen K

 [6/6] from: g:santilli:tiscalinet:it at: 12-Aug-2000 14:30


Hello [peoyli--algonet--se]! On 12-Ago-00, you wrote: p> · some way to reactivate the input field · to have the slider p> knob moving downwards as the text box fills · (really not p> important, but nice) - change the scroller knob's size p> to be relative to the visible/total lines About the slider, you may want to check out http://web.tiscalinet.it/scroller-styles.r You can change the knob size and position at any time with the provided functions. Still lacking documentation (coming soon, I hope). Regards, Gabriele. -- Gabriele Santilli <[giesse--writeme--com]> - Amigan - REBOL programmer Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/

Notes
  • Quoted lines have been omitted from some messages.
    View the message alone to see the lines that have been omitted