Re: Several Text issues

2005-04-23 Thread Richard Gaskin
Scott Rossi wrote:
Recently, Richard Gaskin  wrote:

If the subject ever does come up again, I vote for Message Board.
This is the 21st century -- isn't there listserver software that also
provides a Web interface?

This was already set up some time ago, thanks to Ben Rubinstein:
  http://dir.gmane.org/gmane.comp.ide.revolution.user
Multiple views of the same content.
Cool! Thank you for the link, and thanks to Ben for setting that up!
This should be linked to from the Rev site...
--
 Richard Gaskin
 Fourth World Media Corporation
 __
 Rev tools and more: http://www.fourthworld.com/rev
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-23 Thread Klaus Major
Hi Michael and Dan,
Am 23.04.2005 um 00:24 schrieb Dan Shafer:
On Apr 22, 2005, at 10:42 AM, michael parent wrote:
,,,
3. The revgourl seems to open the file, I don't want to open the 
file, I
want to open the Explorer Window to that file location so then the 
user
has access to the file to attach to email or burn to CD ect. This is
mainly going to be on Windows XP Pro
I don't see any documented way to do this.
And that's the secret word: no documented way :-)
Here is my variation of a handler that Ken Ray (i think) once posted,
or how i fondly call him The Man Ray of X-talk :-)
on revealinexplorer tFile
  ## tFile is a valid and full path to the file you want
  ## to show in its parent window...
  ## Does also work with a FOLDER!
  set the hideconsolewindows to true
  ## Hide ugly DOS box...
  replace / with \ in tFile
  ## shell command needs a Win path!
  get shell(explore.exe /select,  tFile)
end revealinexplorer
Hope that helps...
Thanks again
Michael Parent
Dan Shafer, Co-Chair
RevConWest '05
June 17-18, 2005, Monterey, California
http://www.altuit.com/webs/altuit/RevConWest
Best from sunny germany
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-23 Thread Scott Rossi
Recently, Richard Gaskin  wrote:

 If the subject ever does come up again, I vote for Message Board.
 
 This is the 21st century -- isn't there listserver software that also
 provides a Web interface?

This was already set up some time ago, thanks to Ben Rubinstein:

  http://dir.gmane.org/gmane.comp.ide.revolution.user

Multiple views of the same content.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design
-
E: [EMAIL PROTECTED]
W: http://www.tactilemedia.com

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Several Text issues

2005-04-22 Thread Michael Parent
 
Hello, I have been reading all the user list messages for awhile and
learning lots about Revolution, but I am still a newbie at it.
 
I am using Ken Ray's Directory Walking (thanks Ken) to put the path of
all files in a directory in a scroll text field: I have read the
documentation and searched the user list archives but still cannot find
how to do a couple of things.
 
1. I would like to format the text in the field for better reading, how
do I use the set htmltext property to format the text field, do I put
that in the text field script?
 
2. I want the user to enter a search string and be able to find that in
the text field, the string could be a file name or an extension type. Do
I use the find command? what is the format? I want to be able to find
anything that closeley matches the search as well as exact matches, and
have that open in a new stack. The documenation shows how to use Find
with a specific string but not how to do it with a variable.
 
3. I would like to be able to open to that file in an explorer window
(only needs to be windows, but a cross platform way would be great) by
clicking on the file name in the search result window.
 
Thanks for all your help
 
Michael Parent


___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Thomas McGrath III
Michael,
HTH
Tom
On Apr 22, 2005, at 10:01 AM, Michael Parent wrote:
1. I would like to format the text in the field for better reading, how
do I use the set htmltext property to format the text field, do I put
that in the text field script?
Do this when you put the text into the field. If you do it by script 
then do it from there otherwise make a temp button and put it in there 
then delete the button later.

2. I want the user to enter a search string and be able to find that in
the text field, the string could be a file name or an extension type. 
Do
I use the find command? what is the format? I want to be able to find
anything that closeley matches the search as well as exact matches, and
have that open in a new stack. The documenation shows how to use Find
with a specific string but not how to do it with a variable.
Find works: find string beat must go on in field Quotes
as well as 'is among' is 'not among'
as well as the offsets - lineoffset, itemoffset, wordoffset
3. I would like to be able to open to that file in an explorer window
(only needs to be windows, but a cross platform way would be great) by
clicking on the file name in the search result window.
use the revgourl -
revGoURL http://www.example.org/info.html;
revGoURL http://me:[EMAIL PROTECTED]/secret-plan/
revGoURL it
revGoURL mailto:[EMAIL PROTECTED]
revGoURL file:///Folder/file.html
Thanks for all your help
Michael Parent
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Dan Shafer
On Apr 22, 2005, at 10:42 AM, michael parent wrote:
I looked at these suggestions still need help
1 Cannot see how I set the Htmltext when I am putting the text into the
field
Put the text that you want in the field into a variable, then set the 
htmlText of the field to the variable. Assume that the list of files 
you want to display is in a variable called tFilesToShow:

set the htmlText of field File List to tFilesToShow
2. I need to search by a user entered search string so it has to be by
variable, how Do I use the Find command with a variable, or is there a
different way to do this?
Just put the variable into the search command. Assume the variable is 
called tTextToFind:

find string tTextToFind in field File List
You may want to use some other form than string; the find docs are 
pretty clear on these options.

3. The revgourl seems to open the file, I don't want to open the file, 
I
want to open the Explorer Window to that file location so then the user
has access to the file to attach to email or burn to CD ect. This is
mainly going to be on Windows XP Pro

I don't see any documented way to do this.
Thanks again
Michael Parent
~~
Dan Shafer, Co-Chair
RevConWest '05
June 17-18, 2005, Monterey, California
http://www.altuit.com/webs/altuit/RevConWest
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread NnykkieeK24
PLEASE REMOVE ME FROM YOUR EMAIL LIST.  THE MAIL IS A NUISANCE.

  NNEKA KENDRICK
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Derek Bump
 PLEASE REMOVE ME FROM YOUR EMAIL LIST.  THE MAIL IS A NUISANCE.
No need to scream, but I agree.
If the subject ever does come up again, I vote for Message Board.
Derek Bump
Dreamscape Software
http://www.dreamscapesoftware.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Several Text issues

2005-04-22 Thread michael parent
I looked at these suggestions still need help

1 Cannot see how I set the Htmltext when I am putting the text into the
field

2. I need to search by a user entered search string so it has to be by
variable, how Do I use the Find command with a variable, or is there a
different way to do this?

3. The revgourl seems to open the file, I don't want to open the file, I
want to open the Explorer Window to that file location so then the user
has access to the file to attach to email or burn to CD ect. This is
mainly going to be on Windows XP Pro

Thanks again

Michael Parent




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Thomas
McGrath III
Sent: Friday, April 22, 2005 10:16 AM
To: How to use Revolution
Subject: Re: Several Text issues


Michael,
HTH
Tom
On Apr 22, 2005, at 10:01 AM, Michael Parent wrote:
 1. I would like to format the text in the field for better reading, 
 how do I use the set htmltext property to format the text field, do I 
 put that in the text field script?
Do this when you put the text into the field. If you do it by script 
then do it from there otherwise make a temp button and put it in there 
then delete the button later.

 2. I want the user to enter a search string and be able to find that 
 in the text field, the string could be a file name or an extension 
 type. Do I use the find command? what is the format? I want to be able

 to find anything that closeley matches the search as well as exact 
 matches, and have that open in a new stack. The documenation shows how

 to use Find with a specific string but not how to do it with a 
 variable.
Find works: find string beat must go on in field Quotes
as well as 'is among' is 'not among'
as well as the offsets - lineoffset, itemoffset, wordoffset

 3. I would like to be able to open to that file in an explorer window 
 (only needs to be windows, but a cross platform way would be great) by

 clicking on the file name in the search result window.
use the revgourl -
revGoURL http://www.example.org/info.html;
revGoURL http://me:[EMAIL PROTECTED]/secret-plan/
revGoURL it
revGoURL mailto:[EMAIL PROTECTED]
revGoURL file:///Folder/file.html

 Thanks for all your help

 Michael Parent


 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com 
 http://lists.runrev.com/mailman/listinfo/use-revolution



Thomas J. McGrath III
SCS
1000 Killarney Dr.
Pittsburgh, PA 15234
412-885-8541
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution



___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Several Text issues

2005-04-22 Thread MisterX
Michael

 I looked at these suggestions still need help

you need to copy to look to find to search to make it work kinda thing it is
you know ;) Like every skill...

 1 Cannot see how I set the Htmltext when I am putting the 
 text into the field

local mylastsearch
on mouseup
put http://runrev.com; into thisurl
get url thisurl
# i'll skip the checking for brevity
put it into thisvariable
set the htmlfield of fld myhtmlfield to thisvariable

 2. I need to search by a user entered search string so it has 
 to be by variable, how Do I use the Find command with a 
 variable, or is there a different way to do this?

-- script continued...
answer search for what: with mylastsearch
if it is empty or the result is cancel then exit mouseup
put lineoffset(it, fld myhtmlfield) into x
if x is less than one than 
  answer sorry ' it  ' not found, at least you got an htmlfield!
  exit mouseup
end if
else 
put offset(it,fld myhtmlfield) into a
set the textcolor of char a to a+length(it) of fld myhtmlfield to red
put it into mylastsearch
end mouseup

something like that says my hat. I know it's incomplete but it should send
you on your way to great scripting. The Find command is better used for
stack card searching. In-field searching is done with offset searches and
text selection or hiliting (in this case) ;)

 3. The revgourl seems to open the file, I don't want to open 
 the file, I want to open the Explorer Window to that file 
 location so then the user has access to the file to attach to 
 email or burn to CD ect. This is mainly going to be on Windows XP Pro

if you want a fully featured example, find the DiscreteBrowser on
http://MonsieurX.com which I think does it all but now does even more ;)
Although CD burning... Let's get serious... 

There's also lots of examples in the RevDocs (find revgourl) that you can
find via the see also in each 'card' - an exploration of the links and
examples in revdocs usually solves most basic scripting questions...

Xav
http://monsieurx.com
Stacks of nitrous injections for your stacks

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Eric Chatonet
Hi Michael,
About your first point about HTML, you might check the html Property in 
the docs and dowload my Encoded Text Picker plugin (from my web site) 
which is a translator from/to HTML and/or UrlEncode.
It will show you *on the fly* the difference between tagged text ant 
*plain* text, then you will understand easily how to specify the right 
tags to build html :-)
And... set the htmlText of fld MyField to MyTaggedText
Best,

Le 22 avr. 05, à 19:42, michael parent a écrit :
1 Cannot see how I set the Htmltext when I am putting the text into the
field
Amicalement,
Eric Chatonet.

So Smart Software
For institutions, companies and associations
Built-to-order applications: management, multimedia, internet, etc.
Windows, Mac OS and Linux... With the French touch

Web sitehttp://www.sosmartsoftware.com/
Email   [EMAIL PROTECTED]/
Phone   33 (0)1 43 31 77 62
Mobile  33 (0)6 20 74 50 86

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Trevor DeVore
On Apr 22, 2005, at 7:01 AM, Michael Parent wrote:
3. I would like to be able to open to that file in an explorer window
(only needs to be windows, but a cross platform way would be great) by
clicking on the file name in the search result window.
On windows you can use this:
set the hideConsoleWindows to true
get shell(format(explorer.exe /root,\%s\ , pPath))
Where pPath is the path to your file.  You will need to escape 
characters in the path.  I *think* for windows you need to do the 
following.  Someone correct me if I'm wrong.

replace / with \ in pPath -- CHANGE REV PATH DELIMITERS TO WINDOWS
replace  with ^ in pPath
replace | with ^| in pPath
replace ( with ^( in pPath
replace ) with ^) in pPath
--
Trevor DeVore
Blue Mango Multimedia
[EMAIL PROTECTED]
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Several Text issues

2005-04-22 Thread Richard Gaskin
Derek Bump wrote:
If the subject ever does come up again, I vote for Message Board.
This is the 21st century -- isn't there listserver software that also 
provides a Web interface?

--
 Richard Gaskin
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution