Re: use-revolution Digest, Vol 16, Issue 91

2005-01-27 Thread D.Rothe
put tStrongCoffee & tSugar into tCup Thanx to all and Best Regards! > >Subject: Re: Random #'s > >To: How to use Revolution > >Message-ID: <[EMAIL PROTECTED]> > >Content-Type: text/plain; charset=US-ASCII; format=flowed > > > > > &

Random #'s

2005-01-27 Thread D.Rothe
Hi All, I am using the following code to generate a field of 6 random numbers. repeat 5 times --generate list of 5 random numbers between 1-10 put random(10) & "," after tRnum end repeat delete last char of tRnum --delete last comma put tRnum into fld "numbers" this works fine but some numbers

Re: default resolution

2005-01-23 Thread D.Rothe
Here is one example I use alot, this is suited for win xp. on preOpenStack -- get users screen size put the screenrect into tScreenSize set itemDel to "," put item 3 of tScreenSize into tWidth put item 4 of tScreenSize into tHeight set the rect of this stack to 2,28,tWidth,tHeight end preOpe

Re: Open from Context Menu

2005-01-22 Thread D.Rothe
Thanx for your help Derek the code worked perfectly! cheers.Dwayne -- The simplest way to accomplish this is the following... global fileToOpen on startup put $1 into fileToOpen end startup on openSt

Re: Open from Context Menu

2005-01-20 Thread D.Rothe
Ok, When I start the app (as standalone) I can import/open and display a .txt file in a field by selecting it from a pulldown menu! Just like all text editors.. The problem is getting the .txt file to display in the field by sending it to my app via the right click 'Open with' method. Us

Open from Context Menu

2005-01-20 Thread D.Rothe
Hi All, I created a simple textpad type application it's simple and works well for my purposes, however I am having trouble loading a txt file by using the right click 'Open with' method (win xp). Any ideas would be appreciated, it's certainly not a critical flaw but it would finish off the a

Re: Calendar Object

2005-01-18 Thread D.Rothe
ow how to call the windows system calendar or know of a calendar object to be used in a sub stack? > >Basically I am looking for a calendar you can select days, months, years obviously so when a certain date is clicked on it is > >written to a field in english or whatever. > > &

Calendar Object

2005-01-17 Thread D.Rothe
.D.Rothe ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Scrolling backgroundPattern

2005-01-04 Thread D.Rothe
Hi All, does anybody know if it is possible to have a background image (backgroundPattern) of a scrolling field to scroll in unison with the scrollbar? The same as a standard webpage would behave (unless you have fixed the bgproperties). I have tried setting the backgroundPattern to scroll with

Re: Line Numbers

2005-01-02 Thread D.Rothe
of fld 1 to the scroll of me end scrollBarDrag It's often the simplest code that gets the job done! Cheers and thanx again...Dwayne.R -- D.Rothe wrote: >G'Day and Happy New Year to all > >I am hoping someone could guide me with the following prob. >I have two

Resizing stack to any screen size!

2005-01-01 Thread D.Rothe
Hi all, Have seen a few posts about how to rezize a stack to suit your screen size, here's how I did it! Resizing the main stack to suit any screen size is quite simple really, the challenge comes when trying to keep all your fields in a relative size & position. To resize a stack to any scree

Line Numbers

2004-12-31 Thread D.Rothe
G'Day and Happy New Year to all I am hoping someone could guide me with the following prob. I have two fields (field 1 & field 2), field 2 is for loading and displaying a txt file and field 1 is for displaying each corresponding line number of field 2. The line numbers must be in a sepera

RE:Setting more than 1 textStyle

2004-12-31 Thread D.Rothe
On 12/26/04 9:16 PM, "D.Rothe" <[EMAIL PROTECTED]> wrote: > Setting more than 1 textStyle > With the following script it obviously sets the hilited word of a field to the > chosen style. Select another style and it resets the word to plain text before > applying the ne

Re: use-revolution Digest, Vol 15, Issue 76

2004-12-27 Thread D.Rothe
gt; Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="US-ASCII" > > On 12/26/04 9:57 PM, "D.Rothe" <[EMAIL PROTECTED]> wrote: > > > How to identify text attributes? > > Is it possible to identify the style attribut

Identifying text attributes

2004-12-26 Thread D.Rothe
How to identify text attributes? Is it possible to identify the style attributes of a selected word in a field, like in most word processors, when you hilite some text the font name, size & style is shown in a menu? This would be on the user side not edit. cheers. __

Setting more than 1 textStyle

2004-12-26 Thread D.Rothe
Setting more than 1 textStyle With the following script it obviously sets the hilited word of a field to the chosen style. Select another style and it resets the word to plain text before applying the new style! How can I set the hilited word to more than one textStyle e.g Bold, Italic & U

A little help needed please ;?(

2004-12-22 Thread D.Rothe
ia another stack. I can delete the selected line no probs but thats it. The best way to understand is to see an example. I have attached the stack(s) and data.txt file for you to see. Any help would be much appreciated, Thanx in advance... Best Regards D.Rothe Joe Bloggs|3456 7890|0400 123

revForum

2004-12-17 Thread D.Rothe
Hi all, New revForum bulletin board just launched, we need your feedback and suggestions to make it grow into a useful forum for all rev users to benefit from! go to http://www.predance.com.au/cgi-bin/revforum/YaBB.cgi to visit, don't mind the strange URL but we are borrowing server space at th

Re: Newbie: find, search command

2004-12-17 Thread D.Rothe
e tLine in pDataToSearch if pStringToFind is in tLine then put tLine & cr after tFoundData end repeat put tFoundData into fld "List" filter fld "List" without empty end FindData D.Rothe > Message: 1 > Date: Fri, 17 Dec 2004 10:12:17 -0500 > From: "Frank D. Engel

Newbie: find, search command

2004-12-16 Thread D.Rothe
list field. So far I can get it to display the first line only ( Father XmasIs Drunk) ! Any help would appreciated!!! I have checked the tutorials for help but couldn't find what I was looking for, is there an example stack or notes anyone may know of? Thanks D.