Re: Opening a doc in a cd or fld

2010-01-13 Thread zryip theSlug
You're welcome, it's really nothing.
For the next time I will turn off my screen 8)

2010/1/13 Hershel Fisch :
> Thanks, to all looks like it wouldn't work.
> Hershel
___
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: Opening a doc in a cd or fld

2010-01-13 Thread Hershel Fisch
Thanks, to all looks like it wouldn't work.
Hershel


On 1/5/10 9:11 AM, "Bernard Devlin"  wrote:

> The only way I can think this might be possible is with a revBrowser
> instance where IE or Safari has been configured to open the document
> inside the browser.  On Linux I've seen Firefox open OOO docs inside
> the browser window; on Windows I've seen Acrobat do the same thing
> with PDFs opening in the browser window.  I rarely use Windows or OS X
> these days, so I cannot say if Firefox works with OOO in a similar way
> on Windows.
> 
> Of course, there is no revBrowser on Linux, so I can't test this.,
> 
> Bernard
> 
> On Wed, Dec 30, 2009 at 5:28 PM, Hershel Fisch  wrote:
>> Hi, is there a way to open a document,doc, pages, pdf, xls and so on in a
>> stack, card or fld?
>> Thanks, Hershel
> ___
> 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: Opening a doc in a cd or fld

2010-01-05 Thread Bernard Devlin
The only way I can think this might be possible is with a revBrowser
instance where IE or Safari has been configured to open the document
inside the browser.  On Linux I've seen Firefox open OOO docs inside
the browser window; on Windows I've seen Acrobat do the same thing
with PDFs opening in the browser window.  I rarely use Windows or OS X
these days, so I cannot say if Firefox works with OOO in a similar way
on Windows.

Of course, there is no revBrowser on Linux, so I can't test this.,

Bernard

On Wed, Dec 30, 2009 at 5:28 PM, Hershel Fisch  wrote:
> Hi, is there a way to open a document,doc, pages, pdf, xls and so on in a
> stack, card or fld?
> Thanks, Hershel
___
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: Opening a doc in a cd or fld

2010-01-03 Thread zryip theSlug
Hi folks,

Just in case it maybe useful for someone, have a look to The Lab
experiment 3 on www.aslugontheroad.co.cc.


-Zryip The Slug- wish you the best! 8)

2010/1/1 zryip theSlug :
> Hi Hershel,
>
> Not tried yet, but it could be possible to open a pdf directly on a
> Rev stack by using the revBrowser external.
> The revBrowser external allow you to open a browser on a stack. Since
> it is possible to open a pdf in a common browser, no reason that the
> revBrowser could not do same.
>
> For .doc and .xls it depends if you're on mac or windows. On windows
> it maybe possible to open those formats in a browser by using ActiveX
> controls.
>
>
> -Zryip TheSlug- wish you the best! 8)
>
> 2009/12/31 Hershel Fisch :
>> Thanks, this opens it up In it own window, my question if I could open in a
>> rev stack?
>> Hershel
>
___
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: Opening a doc in a cd or fld

2010-01-01 Thread zryip theSlug
Hi Hershel,

Not tried yet, but it could be possible to open a pdf directly on a
Rev stack by using the revBrowser external.
The revBrowser external allow you to open a browser on a stack. Since
it is possible to open a pdf in a common browser, no reason that the
revBrowser could not do same.

For .doc and .xls it depends if you're on mac or windows. On windows
it maybe possible to open those formats in a browser by using ActiveX
controls.


-Zryip TheSlug- wish you the best! 8)

2009/12/31 Hershel Fisch :
> Thanks, this opens it up In it own window, my question if I could open in a
> rev stack?
> Hershel
___
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: Opening a doc in a cd or fld

2009-12-31 Thread Andre.Bisseret


Le 31 déc. 09 à 18:53, Hershel Fisch a écrit :

Thanks, this opens it up In it own window, my question if I could  
open in a

rev stack?
Hershel



I think it is not possible to open a document.doc, pdf etc in a stack,  
strickly speaking.


What is possible is to import the text of the document in a field of  
the stack


See "read from file" in the dictionnary.

This command allow something like the following :

-- assume one stack "theStack" has a field "theField" and a document  
"theDocument.doc" in the same folder


  put the filename of stack "theStack" into tVar
set the itemdel to "/"
put "theDocument.doc" into last item of tVar
   open file tVar for read
 read from file tVar at 1 until EOF -- this pick up the whole text
 put it into fld "theField"
   close file tVar

André



On 12/31/09 3:45 AM, "Andre.Bisseret"  wrote:


Bonjour,
Not sure I understand well what you want to do, but have a look at
"launch" and "launch document" in the dictionnary

one example there :
launch document "/myProjects/myRevolutionProject/help.pdf"

hope that help

Best regards from Grenoble

André


Le 30 déc. 09 à 18:28, Hershel Fisch a écrit :


Hi, is there a way to open a document,doc, pages, pdf, xls and so on
in a
stack, card or fld?
Thanks, Hershel
___







___
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: Opening a doc in a cd or fld

2009-12-31 Thread Hershel Fisch
Thanks, this opens it up In it own window, my question if I could open in a
rev stack?
Hershel


On 12/31/09 3:45 AM, "Andre.Bisseret"  wrote:

> Bonjour,
> Not sure I understand well what you want to do, but have a look at
> "launch" and "launch document" in the dictionnary
> 
> one example there :
> launch document "/myProjects/myRevolutionProject/help.pdf"
> 
> hope that help
> 
> Best regards from Grenoble
> 
> André
> 
> 
> Le 30 déc. 09 à 18:28, Hershel Fisch a écrit :
> 
>> Hi, is there a way to open a document,doc, pages, pdf, xls and so on
>> in a
>> stack, card or fld?
>> Thanks, Hershel
>> ___
> 
> 
> 
> ___
> 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: Opening a doc in a cd or fld

2009-12-31 Thread Andre.Bisseret

Bonjour,
Not sure I understand well what you want to do, but have a look at  
"launch" and "launch document" in the dictionnary


one example there :
launch document "/myProjects/myRevolutionProject/help.pdf"

hope that help

Best regards from Grenoble

André


Le 30 déc. 09 à 18:28, Hershel Fisch a écrit :

Hi, is there a way to open a document,doc, pages, pdf, xls and so on  
in a

stack, card or fld?
Thanks, Hershel
___




___
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


Opening a doc in a cd or fld

2009-12-30 Thread Hershel Fisch
Hi, is there a way to open a document,doc, pages, pdf, xls and so on in a
stack, card or fld?
Thanks, Hershel
___
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