|
|
| About site: Programming/Languages/REBOL/REBOL-View - REBOL/View FAQ |
Return to Computers also Computers |
| About site: http://www.rebolforces.com/view-faq.html |
Title: Programming/Languages/REBOL/REBOL-View - REBOL/View FAQ Frequently asked questions from the listserv at ally@rebol.com . |
|
|
|
|
Lattice,_Inc_ Provides applications software for users of mobile computers in a variety of industries, including healthcare and gas and electric, automating many tasks for mobile workers.
| M/UX Offers the complete Spectrum of IBM Certified Training, across the entire US.
| The_Analytical_Engine Includes reprints of historical documents, Java applet emulator and source code, glossary and other resources.
| MyAddress_co_uk Several addresses available, pay site.
| ReCrystallize_Software Helps you publish your Crystal Reports on the web quickly and easily.
| n-Track_Studio Audio and MIDI multitrack recorder for Windows XP, ME, 98, 95, NT, 2000. Record and playback an unlimited number of audio and MIDI tracks. Support for VST instruments and DirectX instruments synth plu
|
|
| Alexa statistic for http://www.rebolforces.com/view-faq.html |
Please visit: http://www.rebolforces.com/view-faq.html
|
| Related sites for http://www.rebolforces.com/view-faq.html |
| CodeBetter_com__Agile Titles, summaries, links, to many articles. | | Status_Graphics_-_Availability_of_USGS_Geospatial_Data Image viewer. | | Cybernetgenie Mississauga, Canada based company specializing in web sites, digital imaging, programming and system administration. | | Perl_HowTo Perl collection of tips, howto's, FAQs and tutorials. | | Reducing_Field_Table_Size_in_the_Icon_Translator Technical report by Richard Hatch and Clinton L. Jeffery. (December 15, 1995) | | aterr An open-source, web-based, threaded forum system written in PHP, supporting nested posts and forums. | | Are_Scripting_Languages_the_Wave_of_the_Future? Programming guru, Robert Martin, on languages of the coming decade. [ITworld.com] (March 1, 2001) | | RFC_1975 PPP Magnalink Variable Resource Compression. D. Schremp, J. Black, J. Weiss. August 1996. | | SenseGraphics Provider of display systems integrating haptics and graphics. Also provides development tools for applications with haptics(H3D API). | | Glc Python generator for Glade. | | Advanced_Web_Interface_Construction Extracts of code showing fundementals required for building and understanding complex human interations with web interfaces. Javascript and HTML. Javascript and SVG. | | Gotgreetings Small selection of general animated cards, with music and sound effects. | | CUSI_Utility_Billing_Software Offers billing, accounting, and operational software to utility companies. | | MobileDemand The xTablet is a rugged Tablet PC with integrated numeric keypad, bar-code scanning, credit card reading, fan cooled vehicle mounts, and accessories. | | Online_IT_Pro Contains articles for Windows Vista and XP, Firefox and PC Maintenance. | | Advanced_Programming_Language_Design Book compares over 70 languages, and main classes: imperative, functional, object-oriented, dataflow, concurrent, declarative, aggregate. By Raphael Finkel, Addison-Wesley. | | Spiderplant_net Provides design, development, hosting assistance, and e-commerce solutions. Located in Surrey, United Kingdom. | | PlanetLink Website design, consultations, and hosting. Located in Novato, California. | | nSiteful_Web_Builders,_Inc_ Design, Flash, PHP, MySQL database development, and hosting. Located in Alpharetta, Georgia, United States. | | Jump_-_Java_User_Module_for_PalmPilot A Java IDE for the PalmPilot. Reads Java Class files, generates 68000 .asm files and creates .prc files using Pila (Darrin Massena's PalmPilot Assembler) |
|
This is websites2007.org cache of m/ as retrieved on 2008.09.05 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
|
REBOL Forces - View FAQ
May 2002 : REBOL FORCES
Main Menu
Articles
Building a Server Engine
Metaphors
Recursion, Iteration, and Algebra
A nice juicy Pair!
Writing your own Protocol Handler
REBOL & the Shell
Series from the Ground Up
Compression
Dialecting and the Console
Resources
REBOL/Zine
Archives
Shoebox
View FAQ
Links
Forums
Forum Index
General Discussion
Beginners
REBOL/Core
REBOL/View
REBOL/Command
Bug Reports
LDC DEV
View FAQ
Author: Allen Kamp
Date: June, 2001
Purpose: A collection of hints, tips and wisdom from
the Rebol Ally list
Contents
1. General
1.1. Q. How do I access the clipboard ?
1.2. Q. How do I launch my web browser in Kiosk mode?
2. VID
2.1. Q. How do I set the check value?
2.2. Q. How can I find out the value of a checkbox?
2.3. Q. How do I change the title bar text?
2.4. Q. How can I highlight text in a face?
2.5. Q. Where can I find the source for VID?
2.6. Q. How can I modify LIST faces dynamically?
3. Face
3.1. Q. Where can I find the screen size?
3.2. Q. Where can I find my main window face?
3.3. Q. How can I trap the 'close window event?
3.4. Q. How can I see what key events are generated?
4. Tips
4.1. Be specific with show
4.2. Take Care with shortcut keys
1. General
1.1. Q. How do I access the clipboard ?
A. The Field and Area elements of VID respond to the keyboard shortcuts of
Ctrl X - CutCtrl C - CopyCtrl V - Paste
But you can also manually read or write from/to the clipboard.
To paste text to the clipboard
write clipboard:// "Hello World"
To copy from the clipboard
read clipboard://== "Hello World"
1.2. Q. How do I launch my web browser in Kiosk mode?
A. Use -k. This is known to work for IE, other browers may have similar flags
browse "-k http://www.rebol.com"
use Alt-F4 to close.
2. VID
2.1. Q. How do I set the check value?
A. VID is extremely flexible, here are some different ways.
Using 'with
view layout [chk1: check with [data: true]
Using a boolean value to set it during creation
view layout [ check on check off check true check false check yes check no]
Using a style
checkers: stylize [ true-check: check with [data: true]] view layout [styles checkers chk1: true-check chk2: check]]
Using 'do inside a layout to set the value
view layout [chk1: check do [chk1/data: true]]
Create the layout and set the value of the checkbox before showing it
checks: layout [chk1: check chk2: check]chk1/data: trueview checks
Change from a button action
view layout [chk1: check on button "Change" [chk1/data: not chk1/data show chk1]]
2.2. Q. How can I find out the value of a checkbox?
A. The current value of the checkbox is stored in face/data
view layout [ txt: text "" 60x26 chk1: check button "State?" [txt/text: form chk1/data show txt] do [txt/text: form chk1/data show txt] ; set txt to chk1 starting state]
2.3. Q. How do I change the title bar text?
A. Currently the window face has to be unviewed and reviewed to make a change.
view/title me: layout [size 300x100 button "change title" [unview/all view/title me "after" ]] "before"
or
view/title me: layout [size 300x100 button "change title" [unview/all me/text: "after" view me]] "before"
2.4. Q. How can I highlight text in a face?
A. The field can now does this automatically. But if you want to do it manually, this function sets focus to the face and highlights the text, so it will be cleared with users first keystroke.
highlight-text: func [face][ focus face system/view/highlight-start: head face/text system/view/highlight-end: tail face/text system/view/caret: head face/text] view layout [name: field "<enter your name>" do [highlight-text name]]
2.5. Q. Where can I find the source for VID?
A. You can probe system/view/vid to see the VID source code to get a good idea for how it works. This is helpful if you are thinking about creating your own interface dialect for specific purposes, or have found some problem with VID that you need to patch. For a current print out, type the following in the console
>> save %view.txt system/view
(For VID history buffs only: a very old version can be found here |
|
| |
Frequently | asked | questions | from | the | listserv | at | ally@rebol.com | . |
|
http://www.rebolforces.com/view-faq.html
REBOL/View FAQ 2008 September
dvd rental
dvd
Frequently asked questions from the listserv at ally@rebol.com .
Rules
|
© 2008 Internet Explorer 5+ or Netscape 6+
|
|
Recommended Sites: 1.
Arts -
Business -
Computers -
Games -
Health -
Home -
Kids and Teens -
News -
Recreation -
Reference -
Regional -
Science -
Shopping -
Society -
Sports -
World
Miss Gallery
- Top Anime Hentai
- DVD rental by mail
- Mobile Phones - Loan - Tax - Loans - Credit Cards
|