Re: Printing Field contents in RunRev Enterprise 4.5.5

2010-08-16 Thread Mark Schonewille
Hi Brent,

Your scripts seem correct to me. What happenes if you execute

revPrintText Hello World

from the message box? I get a page with that text in both Rev 4.0 and Rev 4.5.

Are you using Rev 4.5? This is still in beta stage. You might want to use 4.0 
instead.

Which operating system are you using?

Are you sure the field that is being printed is on the current card?

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

From 15th August, we'll have time for new projects! Be the first in line and 
contact me now!

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce

On 16 aug 2010, at 04:38, Bsummerton wrote:

 
 
 Thank you for suggestions but I am still having trouble.
 
 I have a Stack that has thirty Cards containing multiple choice questions.  
 On Four of these thirty Cards I have a Field named Results  that contains 
 the users answers for each section.  On each of the four Cards that has the 
 field Results I have a Print Button.  I have tried the following scripts to 
 try and print on a Networked Printer the contents of the Field Results,  to 
 no avail.  What am I doing wrong?
 
 
 on Mouseup
 print card Output
 end Mouseup
 (Used this as a TEST - This prints the Card to the printer successfully)
 
 
 on Mouseup
 revPrintText Hello world
 End Mouseup
 (Used this as a TEST - This prints a Blank Page)
 
 
 on Mouseup
 revPrintField the name of field Results
 end mouseup
 (This continues to print a Blank Page)
 
 
 on Mouseup
 revPrintText (the htmlText of field Results),Results,the time  the date
 End Mouseup
 (This continues to print a Blank Page)
 
 I have checked that the Field Results contains text that is Black and not 
 White.  Can a Stack only have one Field Named Results within its Cards?  I 
 am using a Mac and exporting to Mac (which prints fine) but the Windows 
 Standalone continues to print a Blank Page.  Am using Enterprise 4.5.5
 
 If YOU were wanting to print the text from a Field named Results what 
 specifically would YOU script: 
 
 Kind regards, Brent.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Printing Field contents in RunRev Enterprise 4.5.5

2010-08-16 Thread Peter Alcibiades

If YOU were wanting to print the text from a Field named Results what
specifically would YOU script...

Well, you did ask!

Stop struggling with revPrintField etc.  Just export the content to a text
file, then call some other program to print it. 

Peter

-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Printing-Field-contents-in-RunRev-Enterprise-4-5-5-tp2326353p2326452.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Printing Field contents in RunRev Enterprise 4.5.5

2010-08-16 Thread AndyP

HI Bren,

I think you need to go back to some basic tests to tie this down.

1. As Mark suggested:
revPrintText Hello World 
Does this work? if Yes goto 2. if not you have a problem with Rev so a
reinstall may be in order.

2. Create a new stack with one card.
Place one text box named Results and populate with some text.
Add a button and add  
revPrintField the name of field Results
to mouseUp

Does this work?.. No then I'm stumped I've tested here and works ok Rev
4.5.2

Yes, elaborate the print function.

3. Replace 2. with this (from your code) 
revPrintText (the htmlText of field Results),Results,the time  the
date 

I've tested and this also works as expected


If 3 works then as Mark as suggested you probably are not specifying the
correct card with the Results field on.

revPrintText (the htmlText of field Results of card mycard
),Results,the time  the date

Have tested and this works.

Hope this helps 





-
Andy Piddock
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Printing-Field-contents-in-RunRev-Enterprise-4-5-5-tp2326353p2326583.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


New release of InfoWallet

2010-08-16 Thread Bill Vlahos
I just wanted to let folks know that InfoWallet 1.2.09 is out.

New look and logo.

New features include file attachments (compressed, encrypted, and password 
protected), pictures for contacts, RSS news, and more.

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Printing Field contents in RunRev Enterprise 4.5.5

2010-08-16 Thread Kevin Miller
On 16/08/2010 03:38, Bsummerton bsummer...@virginbroadband.com.au wrote:

 I have checked that the Field Results contains text that is Black and not
 White.  Can a Stack only have one Field Named Results within its Cards?  I
 am using a Mac and exporting to Mac (which prints fine) but the Windows
 Standalone continues to print a Blank Page.  Am using Enterprise 4.5.5

Are you sure that the printing libraries have been selected correctly in the
standalone builder?

Kind regards,

Kevin

Kevin Miller ~ ke...@runrev.com ~ http://www.runrev.com/
RunRev - Software construction for everyone


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Printing Field contents in RunRev Enterprise 4.5.5

2010-08-16 Thread wayne durden
You might also double check that you didn't create two fields that have the
same name with one being blank  I quite often use button scripts to
flesh out handlers before I turn them into functions in a card or stack
script.   I occasionally copy and paste a button control, change the script
and wonder why a click at the loc of the btn which I have in another button
which is doing a series of operations by clicking at the location of several
such test buttons  hasn't included the actions to be performed in the new
button's script...  Whoops, it had the same name as the button it was
duplicated from

Good luck,

Wayne
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [solved][revServer] process timeout issue

2010-08-16 Thread Pierre Sahores
Hi There,

To avoid any problem of response latency against any mutualised server, we can 
force the server to wakeup (if needed) in sending it a simple HTTP GET 
request against the app base URL just before going  further with any HTTP POST 
requests.

HTH,

--
Pierre Sahores
mobile : (33) 6 03 95 77 70

www.wrds.com
www.sahores-conseil.com




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Effective line of a word

2010-08-16 Thread Jean-Pierre Soto

Hello,

how can i know the effective line of a word in field with the wrap  
text set to true ?



Thanks
Jean-Pierre
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Effective line of a word

2010-08-16 Thread Mark Schonewille
Hi Jean-Pierre,

Let's assume that you know the position of the word in the text as a whole. For 
example, because the user clicked on it.

put word 2 of the clickCharChunk into myPos
put the formattedText of fld Your Field into myText
put number of lines of (char 1 to myPos of myText) into myLineNr

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

From 15th August, we'll have time for new projects! Be the first in line and 
contact me now!

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce

On 16 aug 2010, at 16:54, Jean-Pierre Soto wrote:

 Hello,
 
 how can i know the effective line of a word in field with the wrap text set 
 to true ?
 
 
 Thanks
 Jean-Pierre

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: teaser

2010-08-16 Thread Shao Sean

There are tears in my eyes!

yeah, they were pretty bad..



Low standards! Ha!
i will try to have a another video within the next couple of days and  
you can see what i mean by the low standards...

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Trouble Setting Cookies

2010-08-16 Thread Gregory Lypny
Hi Andre and Jeff,

Thank you for testing my site.  I think the location of PUT NEW HEADER or PUT 
HEADER in relation ? or other PUT statements is, as you have mentioned, be the 
issue, although I can't say that I understand it yet.  It may be why I have not 
been able to get Andre or John Craig's cookie functions to work when I load 
them from separate script files using ?rev INCLUDE [...] ?.

The following stripped down handler works.  I just got it a few minutes ago.

?rev

put Set-Cookie:  myCookie  =  urlEncode(the seconds)  ;path=/ into 
theCookie
put new header theCookie
put url (file:cookieResult.html) into thePage
replace {message} with (Done. br  the long date  the long time) in 
thePage
put thePage

?

If you like, you can test it by going to

http://pareto.on-rev.com/setcookie.irev

and clicking the Set Cookie button.  Click through the pages and you should 
come to one that displays a cookie named myCookie and whose value is the 
seconds.

Man, what a headache!  It would be nice if some of our Rev web pros could 
document the use of cookies using the most basic example possible along with 
all of the important qualifiers.

Regards,

Gregory
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revNavigator

2010-08-16 Thread Mark Talluto
Super tool!  I have been using it for years and I did make my very affordable 
payment back then.  I too could not survive without it. 

Best regards,

Mark Talluto
http://www.canelasoftware.com

 On Aug 13, 2010, at 10:32 PM, Geoff Canyon Rev wrote:
 
 revNavigator hasn't been updated for several versions, so it's
 entirely possible that the dev environment has changed since I wrote
 it. Or I might just have done a bad job with it ;-) That said it still
 works -- I don't do much work with Rev anymore, but when I do I
 couldn't live without it.
 
 While I'm thinking about it, I hereby declare revNavigator to be free
 for anyone to use.
 
 gc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Multiple revCursors stacks

2010-08-16 Thread Hershel Fisch
Hi and thanks, as of now there are no subStacks in my stack starting with
rev
And the error is as follows 
A stack revHelpPopup in file /Application/Revolution
Enterprise/4.0.0-dp-4/Toolset/revdocumentationlibrary.rev
is already in memory. The Revolution UI does not
distinguish stacks which have identical names, so editing
these stack files while both are in memory could result in
data loss.
 
Thanks in advanced, Hershel


On 8/13/10 1:40 PM, J. Landman Gay jac...@hyperactivesw.com wrote:

 On 8/12/10 2:59 PM, Hershel Fisch wrote:
 I also realize that I have two revHelpPopup substacks, under the
 revDocumentation stack and under the revMenuBar stack, which one has to be
 deleted and which one is the correct one. I see it since version 3.504 dp-4.
 Prior to the above version its only urder the revMenuBar?
 It effects when you press the restore development tool btn.
 
 I also see both of those, so I assume they are both necessary. If you're
 getting an error about it, the problem is likely in your stack. Better
 check it for copies of that popup stack. In fact, check your stack for
 any substacks that start with rev, since none of them should be there.



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


[OT] Dead video card

2010-08-16 Thread Richmond

Wow!

I returned from 4 days in the mountains to find the video-card on my G4 
MDD had 'died';
this is a nuisance as I will be unable to release my Devawriter Pro 
before I can see into

my computer.

Has anybody any links to Mac compatible video-cards??

I find that Amazon is full of video-cards but they give no indication if 
they are

Mac compatible.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Jeff Massung
No such thing as a Mac Compatible video card... or a PC Compatible one
for that matter. That's just a matter of branding.

The only important question is whether or not there are good video drivers
for your particular OS for that piece of hardware.

If you go look at the ATI or nVidia websites, look over their drivers and
see if there's a driver set for the OS you have and the card you are
considering buying.

Jeff M.

On Mon, Aug 16, 2010 at 3:00 PM, Richmond richmondmathew...@gmail.comwrote:

 Wow!

 I returned from 4 days in the mountains to find the video-card on my G4 MDD
 had 'died';
 this is a nuisance as I will be unable to release my Devawriter Pro before
 I can see into
 my computer.

 Has anybody any links to Mac compatible video-cards??

 I find that Amazon is full of video-cards but they give no indication if
 they are
 Mac compatible.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Richmond

Thanks for the helpful advice.

On 08/16/2010 11:08 PM, Jeff Massung wrote:

No such thing as a Mac Compatible video card... or a PC Compatible one
for that matter. That's just a matter of branding.

The only important question is whether or not there are good video drivers
for your particular OS for that piece of hardware.

If you go look at the ATI or nVidia websites, look over their drivers and
see if there's a driver set for the OS you have and the card you are
considering buying.

Jeff M.

On Mon, Aug 16, 2010 at 3:00 PM, Richmondrichmondmathew...@gmail.comwrote:

   

Wow!

I returned from 4 days in the mountains to find the video-card on my G4 MDD
had 'died';
this is a nuisance as I will be unable to release my Devawriter Pro before
I can see into
my computer.

Has anybody any links to Mac compatible video-cards??

I find that Amazon is full of video-cards but they give no indication if
they are
Mac compatible.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
   


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Bob Sneidar
Sorry, but this is patently untrue. We have had cards that have a Mac model and 
a PC model, and neither work in the other, even though the slots are the same 
and they both have drivers. It may be that many (maybe most) cards are designed 
to work in both PC's and Macs, but it is not true to say there is no such thing 
as a card that will only work in one and not the other. 

Bob


On Aug 16, 2010, at 1:08 PM, Jeff Massung wrote:

 No such thing as a Mac Compatible video card... or a PC Compatible one
 for that matter. That's just a matter of branding.
 
 The only important question is whether or not there are good video drivers
 for your particular OS for that piece of hardware.
 
 If you go look at the ATI or nVidia websites, look over their drivers and
 see if there's a driver set for the OS you have and the card you are
 considering buying.
 
 Jeff M.
 
 On Mon, Aug 16, 2010 at 3:00 PM, Richmond richmondmathew...@gmail.comwrote:
 
 Wow!
 
 I returned from 4 days in the mountains to find the video-card on my G4 MDD
 had 'died';
 this is a nuisance as I will be unable to release my Devawriter Pro before
 I can see into
 my computer.
 
 Has anybody any links to Mac compatible video-cards??
 
 I find that Amazon is full of video-cards but they give no indication if
 they are
 Mac compatible.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Bob Sneidar
Richmond, it is my experience that only certain video cards would work in those 
G4 towers, and different G4 towers may only support certain video cards. In 
other words, I have had video cards that worked in one model G4 tower that 
would NOT work in another, same bus design. 

I would definitely do some research before popping for one on eBay. 

Bob


On Aug 16, 2010, at 1:00 PM, Richmond wrote:

 Wow!
 
 I returned from 4 days in the mountains to find the video-card on my G4 MDD 
 had 'died';
 this is a nuisance as I will be unable to release my Devawriter Pro before I 
 can see into
 my computer.
 
 Has anybody any links to Mac compatible video-cards??
 
 I find that Amazon is full of video-cards but they give no indication if they 
 are
 Mac compatible.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Andre Garzia
lowendmac.com is your friend in those cases

On Mon, Aug 16, 2010 at 5:16 PM, Bob Sneidar b...@twft.com wrote:

 Richmond, it is my experience that only certain video cards would work in
 those G4 towers, and different G4 towers may only support certain video
 cards. In other words, I have had video cards that worked in one model G4
 tower that would NOT work in another, same bus design.

 I would definitely do some research before popping for one on eBay.

 Bob


 On Aug 16, 2010, at 1:00 PM, Richmond wrote:

  Wow!
 
  I returned from 4 days in the mountains to find the video-card on my G4
 MDD had 'died';
  this is a nuisance as I will be unable to release my Devawriter Pro
 before I can see into
  my computer.
 
  Has anybody any links to Mac compatible video-cards??
 
  I find that Amazon is full of video-cards but they give no indication if
 they are
  Mac compatible.
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Richmond

On 08/16/2010 11:26 PM, Andre Garzia wrote:

lowendmac.com is your friend in those cases

   


Ha, Ha, Ha: right now it is a case of lowendmathewson . . .  :)

I have been poking round that website, but a lot of their links are dead.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread Jonathan Lynch
I am trying to figure out how to copy text that contains a link into a Rev
field, such that the link information is preserved. It seems that some
formatting, such as bolding, text size, and text font are preserved, but
that link information is entirely stripped out.

Is there a way to do this? Am I missing something obvious?

Many thanks,

Jonathan

-- 
Do all things with love
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread Richard Gaskin

Jonathan Lynch wrote:


I am trying to figure out how to copy text that contains a link into a Rev
field, such that the link information is preserved. It seems that some
formatting, such as bolding, text size, and text font are preserved, but
that link information is entirely stripped out.


Many apps don't copy link data to the public clipboard.

Can you paste from one of those programs into another and have the links 
preserved?


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Mike Bonner
Would this http://eshop.macsales.com/item/ATI%20Technologies/1028342302B/
or this http://eshop.macsales.com/item/ATI%20Technologies/1028342302/
be the right card for your machine?  I don't know enough about the
earlier mac models to know for sure.

On Mon, Aug 16, 2010 at 2:36 PM, Richmond richmondmathew...@gmail.com wrote:
 On 08/16/2010 11:26 PM, Andre Garzia wrote:

 lowendmac.com is your friend in those cases



 Ha, Ha, Ha: right now it is a case of lowendmathewson . . .  :)

 I have been poking round that website, but a lot of their links are dead.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread Jonathan Lynch
Hmmm...

All of the applications we use at work (except the ones I create) are
microsoft applications. I will have to find something that is not from
microsoft to test this.



On Mon, Aug 16, 2010 at 4:59 PM, Richard Gaskin
ambassa...@fourthworld.comwrote:

 Jonathan Lynch wrote:

 I am trying to figure out how to copy text that contains a link into a Rev
 field, such that the link information is preserved. It seems that some
 formatting, such as bolding, text size, and text font are preserved, but
 that link information is entirely stripped out.


 Many apps don't copy link data to the public clipboard.

 Can you paste from one of those programs into another and have the links
 preserved?

 --
  Richard Gaskin
  Fourth World
  Rev training and consulting: http://www.fourthworld.com
  Webzine for Rev developers: http://www.revjournal.com
  revJournal blog: http://revjournal.com/blog.irv

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
Do all things with love
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread Jonathan Lynch
OK, I verified that I can copy from MS Word into AbiWord - so the link
information must be made available in some form.

Would RunRev have a means of accessing this?

If not, is there something I could do with Cscript or Windows Command Line
to access components of the clipboard that are not accessible to RunRev?

Thanks,

Jonathan

On Mon, Aug 16, 2010 at 5:18 PM, Jonathan Lynch jonathandly...@gmail.comwrote:

 Hmmm...

 All of the applications we use at work (except the ones I create) are
 microsoft applications. I will have to find something that is not from
 microsoft to test this.



 On Mon, Aug 16, 2010 at 4:59 PM, Richard Gaskin 
 ambassa...@fourthworld.com wrote:

 Jonathan Lynch wrote:

 I am trying to figure out how to copy text that contains a link into a Rev
 field, such that the link information is preserved. It seems that some
 formatting, such as bolding, text size, and text font are preserved, but
 that link information is entirely stripped out.


 Many apps don't copy link data to the public clipboard.

 Can you paste from one of those programs into another and have the links
 preserved?

 --
  Richard Gaskin
  Fourth World
  Rev training and consulting: http://www.fourthworld.com
  Webzine for Rev developers: http://www.revjournal.com
  revJournal blog: http://revjournal.com/blog.irv

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




  --
 Do all things with love




-- 
Do all things with love
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Ian Wood
On 16 Aug 2010, at 21:08, Jeff Massung wrote:

 No such thing as a Mac Compatible video card... or a PC Compatible one
 for that matter. That's just a matter of branding.

Like Bob says, this is not true. Mac and Windows versions of the same graphics 
card models have different firmware. Apparently it's possible to flash 
Windows-compatible cards with the correct firmware to run in a Mac, but I've no 
idea how complex the process is.

Ian___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread J. Landman Gay

On 8/16/10 3:49 PM, Jonathan Lynch wrote:

I am trying to figure out how to copy text that contains a link into a Rev
field, such that the link information is preserved. It seems that some
formatting, such as bolding, text size, and text font are preserved, but
that link information is entirely stripped out.

Is there a way to do this? Am I missing something obvious?


If the links are really in there, they should be in the htmltext of the 
clipboard, i.e.:

 set the htmltext of fld x to the clipboardData[html]

That will put the underlines and links into the field, but you'll have 
to handle the actual navigation after a click by examining the parameter 
passed in the linkClicked message and figuring out what to do.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread Jonathan Lynch
Hi Jacqueline,

I tested this.

It is not retaining the link information, either from MS Word or from IE 8.

This is true both with RunRev 4.0 and RunRev 2.6.1 - those are the only
versions I have to test with.

Take care,

Jonathan

On Mon, Aug 16, 2010 at 5:54 PM, J. Landman Gay jac...@hyperactivesw.comwrote:

 On 8/16/10 3:49 PM, Jonathan Lynch wrote:

 I am trying to figure out how to copy text that contains a link into a Rev
 field, such that the link information is preserved. It seems that some
 formatting, such as bolding, text size, and text font are preserved, but
 that link information is entirely stripped out.

 Is there a way to do this? Am I missing something obvious?


 If the links are really in there, they should be in the htmltext of the
 clipboard, i.e.:
  set the htmltext of fld x to the clipboardData[html]

 That will put the underlines and links into the field, but you'll have to
 handle the actual navigation after a click by examining the parameter passed
 in the linkClicked message and figuring out what to do.

 --
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
Do all things with love
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Jeff Massung
On Mon, Aug 16, 2010 at 4:34 PM, Ian Wood revl...@azurevision.co.uk wrote:

 On 16 Aug 2010, at 21:08, Jeff Massung wrote:

  No such thing as a Mac Compatible video card... or a PC Compatible
 one
  for that matter. That's just a matter of branding.

 Like Bob says, this is not true. Mac and Windows versions of the same
 graphics card models have different firmware. Apparently it's possible to
 flash Windows-compatible cards with the correct firmware to run in a Mac,
 but I've no idea how complex the process is.


Guys, it's just hardware. If there's no code to run it on the hardware, then
yes, it won't work. But, there's no such thing as a a piece of hardware that
cannot possibly interface with another piece of hardware. One could make an
ATI video card be run from a Z80 micro processor if one felt so inclined.
It's just bytes and cycles, and maybe a little soldering. ;-)

Jeff M.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Code signing certificate

2010-08-16 Thread Bill Vlahos
I understand that I need to purchase and continually renew a Code Signing 
Certificate for both the installer .exe and the application .exe. This way 
Windows won't complain that the application is from an unknown publisher.

Does anyone have any experience and recommendations for getting and 
implementing these?

Thanks,
Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, or MS Word, into a Rev app?

2010-08-16 Thread J. Landman Gay

On 8/16/10 5:33 PM, Jonathan Lynch wrote:

Hi Jacqueline,

I tested this.

It is not retaining the link information, either from MS Word or from IE 8.

This is true both with RunRev 4.0 and RunRev 2.6.1 - those are the only
versions I have to test with.


Okay, this time I actually tried it. :) I have an extension in Firefox 
that allows me to copy either plain text or html text. I copied a 
selection as html.


In Rev: set the htmltext of fld 1 to the clipboardData[text]

That works here.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Mark Wieder
Jeff-

Monday, August 16, 2010, 3:39:01 PM, you wrote:

 Guys, it's just hardware. If there's no code to run it on the hardware, then
 yes, it won't work. But, there's no such thing as a a piece of hardware that
 cannot possibly interface with another piece of hardware. One could make an
 ATI video card be run from a Z80 micro processor if one felt so inclined.
 It's just bytes and cycles, and maybe a little soldering. ;-)

Sorry, Jeff, but these days (the last 20 years or so) cards have some
bootup code in the firmware. PCI cards in particular run a variant of
Forth known as Open Firmware that's initialized and run from the
motherboard. It's supposed to be manufacturer-neutral, but not
required to be so. Some cards are supported on macs, some are
supported with firmware upgrades, some manufacturers have trouble
spelling macintosh.

Point taken about the soldering g.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, orMS Word, into a Rev app?

2010-08-16 Thread jonathandlynch
Hm

Would you mind trying copying from ms word? I have a hunch that microsoft is at 
the heart of my plight.

Thanks Jacqueline
Sent from my Verizon Wireless BlackBerry

-Original Message-
From: J. Landman Gay jac...@hyperactivesw.com
Sender: use-revolution-boun...@lists.runrev.com
Date: Mon, 16 Aug 2010 18:09:37 
To: How to use Revolutionuse-revolution@lists.runrev.com
Reply-To: How to use Revolution use-revolution@lists.runrev.com
Subject: Re: Is it possible to copy and paste html links from a browser, or
 MS Word, into a Rev app?

On 8/16/10 5:33 PM, Jonathan Lynch wrote:
 Hi Jacqueline,

 I tested this.

 It is not retaining the link information, either from MS Word or from IE 8.

 This is true both with RunRev 4.0 and RunRev 2.6.1 - those are the only
 versions I have to test with.

Okay, this time I actually tried it. :) I have an extension in Firefox 
that allows me to copy either plain text or html text. I copied a 
selection as html.

In Rev: set the htmltext of fld 1 to the clipboardData[text]

That works here.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Is it possible to copy and paste html links from a browser, orMS Word, into a Rev app?

2010-08-16 Thread Mark Wieder
Jonathan-

Monday, August 16, 2010, 5:27:10 PM, you wrote:

 Hm

 Would you mind trying copying from ms word? I have a hunch that
 microsoft is at the heart of my plight.

Verified here. Good old Microsoft. The links are underlined and blue
but not linked. Neither the html nor the rtf data contain the links.
Normally I'd advise dropping Word and going with something more
reasonable, but I don't suppose that's an option for you. FWIW you
can't paste them into WordPad either.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, orMS Word, into a Rev app?

2010-08-16 Thread J. Landman Gay

On 8/16/10 7:36 PM, Mark Wieder wrote:

Jonathan-

Monday, August 16, 2010, 5:27:10 PM, you wrote:


Hm



Would you mind trying copying from ms word? I have a hunch that
microsoft is at the heart of my plight.


Verified here. Good old Microsoft. The links are underlined and blue
but not linked. Neither the html nor the rtf data contain the links.
Normally I'd advise dropping Word and going with something more
reasonable, but I don't suppose that's an option for you. FWIW you
can't paste them into WordPad either.



Thanks for testing, Mark. I don't have Word. I have Open Office but I'm 
not sure that would have been the same.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Dead video card

2010-08-16 Thread Andre Garzia
On Mon, Aug 16, 2010 at 8:30 PM, Mark Wieder mwie...@ahsoftware.net wrote:

 Jeff-

 Monday, August 16, 2010, 3:39:01 PM, you wrote:

  Guys, it's just hardware. If there's no code to run it on the hardware,
 then
  yes, it won't work. But, there's no such thing as a a piece of hardware
 that
  cannot possibly interface with another piece of hardware. One could make
 an
  ATI video card be run from a Z80 micro processor if one felt so inclined.
  It's just bytes and cycles, and maybe a little soldering. ;-)

 Sorry, Jeff, but these days (the last 20 years or so) cards have some
 bootup code in the firmware. PCI cards in particular run a variant of
 Forth known as Open Firmware that's initialized and run from the
 motherboard. It's supposed to be manufacturer-neutral, but not
 required to be so. Some cards are supported on macs, some are
 supported with firmware upgrades, some manufacturers have trouble
 spelling macintosh.


I am reflashing my open firmware on my OLPC right now... I crashed my forth
doing some stunts :-(

I LOVE OPEN FIRMWARE and forth... way ahead of BIOS stuff...




 Point taken about the soldering g.

 --
 -Mark Wieder
  mwie...@ahsoftware.net

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 
http://www.andregarzia.com All We Do Is Code.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Multiple revCursors stacks

2010-08-16 Thread J. Landman Gay

On 8/16/10 2:01 PM, Hershel Fisch wrote:

Hi and thanks, as of now there are no subStacks in my stack starting with
rev
And the error is as follows 
A stack revHelpPopup in file /Application/Revolution
Enterprise/4.0.0-dp-4/Toolset/revdocumentationlibrary.rev
is already in memory. The Revolution UI does not
distinguish stacks which have identical names, so editing
these stack files while both are in memory could result in
data loss.

Thanks in advanced, Hershel


I can repeat the error when I suspend development tools and then return 
to the IDE. I think it's a minor bug. Clicking Okay to get out won't 
hurt anything, the error is spurious. If you feel like it, you could 
report it in the QCC (quality.runrev.com) and mark it as minor. If I 
knew whether that stack was required in the docs I'd say delete it, but 
I'm not sure.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Is it possible to copy and paste html links from a browser, orMS Word, into a Rev app?

2010-08-16 Thread mike
Sorry I have not been following this thread closely and I am very new to
Rev... but this seems to work


on mouseUp
   -- launch URL http://google.com/;
   get text of field x   -- paste or dragdrop your URL into this field
   launch URL it   -- this launches the default browser using your URL
end mouseUp

Seems as though this would serve as the basis for what you are trying to do
or maybe I misunderstand.

HTHs

Mike Behar



On Mon, Aug 16, 2010 at 8:44 PM, J. Landman Gay jac...@hyperactivesw.comwrote:

 On 8/16/10 7:36 PM, Mark Wieder wrote:

 Jonathan-

 Monday, August 16, 2010, 5:27:10 PM, you wrote:

  Hm


  Would you mind trying copying from ms word? I have a hunch that
 microsoft is at the heart of my plight.


 Verified here. Good old Microsoft. The links are underlined and blue
 but not linked. Neither the html nor the rtf data contain the links.
 Normally I'd advise dropping Word and going with something more
 reasonable, but I don't suppose that's an option for you. FWIW you
 can't paste them into WordPad either.


 Thanks for testing, Mark. I don't have Word. I have Open Office but I'm not
 sure that would have been the same.

 --
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Code signing certificate

2010-08-16 Thread Neal Campbell
Hi Bill

I got mine thru Godaddy.com for a decent price.
Neal Campbell
Abroham Neal Software
www.abrohamnealsoftware.com
(540) 645 5394 NEW PHONE NUMBER

Amateur Radio: K3NC
Blog: http://www.abrohamnealsoftware.com/blog/
DXBase bug reports: email to ca...@dxbase.fogbugz.com
Abroham Neal forums: http:/www.abrohamnealsoftware.com/community/





On Mon, Aug 16, 2010 at 6:54 PM, Bill Vlahos bvla...@mac.com wrote:

 I understand that I need to purchase and continually renew a Code Signing
 Certificate for both the installer .exe and the application .exe. This way
 Windows won't complain that the application is from an unknown publisher.

 Does anyone have any experience and recommendations for getting and
 implementing these?

 Thanks,
 Bill Vlahos
 _
 InfoWallet (http://www.infowallet.com) is about keeping your important
 life information with you, accessible, and secure.

 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


cross platform drawers

2010-08-16 Thread Monte Goulding
Hi

I'm working on InstallGadget 2 and an InstallGadget plugin for rev. The plugin 
is well suited to using drawers on OS X to integrate IG settings with the 
standalone builder interface. I'm just wondering what people think I should do 
on Windows? Has anyone done drawer emulation and is it worthwhile and 
appreciated my users?

Check out InstallGadget 2  the plugin on Facebook and you will see what I mean 
about the drawers ;-)

Cheers

Monte___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: cross platform drawers

2010-08-16 Thread Monte Goulding
Don't know why the facebook link didn't work but here it is if you are 
interested:

http://www.facebook.com/pages/InstallGadget/140038149354105

On 17/08/2010, at 1:40 PM, Monte Goulding wrote:

 Hi
 
 I'm working on InstallGadget 2 and an InstallGadget plugin for rev. The 
 plugin is well suited to using drawers on OS X to integrate IG settings with 
 the standalone builder interface. I'm just wondering what people think I 
 should do on Windows? Has anyone done drawer emulation and is it worthwhile 
 and appreciated my users?
 
 Check out InstallGadget 2  the plugin on Facebook and you will see what I 
 mean about the drawers ;-)
 
 Cheers
 
 Monte___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Pattern recognition of basic shapes in Rev

2010-08-16 Thread AcidJazz


Here's a link to a technical article that discusses the fuzzy logic involved
in pattern recognition of shapes.  It doesn't provide the exact algorithm,
but should get you a little further down the road in your search.  

Cheers,
  Mark

http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.37.5875rep=rep1type=pdf
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Pattern-recognition-of-basic-shapes-in-Rev-tp2325992p2327748.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: cross platform drawers

2010-08-16 Thread Paul D. DeRocco
 From: Monte Goulding
 
 Don't know why the facebook link didn't work but here it is 
 if you are interested:
 
 http://www.facebook.com/pages/InstallGadget/140038149354105

So drawers are sub-panes that stick out to the side of the main window,
the way Nvidia driver settings appear in Windows display properties?

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.com 

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: cross platform drawers

2010-08-16 Thread Monte Goulding

On 17/08/2010, at 2:54 PM, Paul D. DeRocco wrote:

 From: Monte Goulding
 
 Don't know why the facebook link didn't work but here it is 
 if you are interested:
 
 http://www.facebook.com/pages/InstallGadget/140038149354105
 
 So drawers are sub-panes that stick out to the side of the main window,
 the way Nvidia driver settings appear in Windows display properties?


Well, I'm not sure about the driver settings on windows but that sounds about 
right. There's a screenshot of my plugin in a drawer next to the rev standalone 
settings stack on the facebook page if you want to have a look. 

Cheers

Monte___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: cross platform drawers

2010-08-16 Thread Scott Rossi
Recently, Monte Goulding wrote:

 The plugin is well suited to using drawers on OS X to integrate IG settings
 with the standalone builder interface. I'm just wondering what people think I
 should do on Windows? Has anyone done drawer emulation and is it worthwhile
 and appreciated my users?

I think you'll find people who will argue both sides of what is or is not
appropriate for Windows.  From an implementation standpoint (not
philosophical), I've only been able to figure out 2 ways of doing a drawer
like window: a 2-stack approach, with the front stack being a palette so it
always stacks in front a topLevel drawer stack, or a stack with 2 custom
windowShapes -- a closed state and an opened state.

Neither of these options lends it self easily to Windows because Windows
only lists topStacks with default decorations in the Taskbar.  If you're
willing to jump through some hoops, you can workaround this limitation, but
it does take some work.

If you were open to modifying your design, you could build the drawer as a
group within your mainStack -- a pane that opens inward from the left edge,
instead of outside the mainStack.  True, this would temporarily obscure the
controls of the mainStack, but it would solve a multitude of challenges that
you'll probably face when trying to implement an actual drawer.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution