Re: Newbie Question

2007-03-28 Thread Simon HARPER
Thanks for that - It seems strange to me too. Cheers Si. Simon Harper 2.44 Kilburn Building University of Manchester (UK) Pri: [EMAIL PROTECTED] Alt: [EMAIL PROTECTED] On 28 Mar 2007, at 18:14, Björnke von Gierke wrote: On 28 Mar 2007, at 17:22, Simon HARPER wrote: Thanks for that,

Re: exportscripts.rev

2007-03-28 Thread Richard Gaskin
Viktoras Didziulis wrote: > What about exporting to an xml along with properties of stacks, > cards and objects? And then its just one step towards importing > back into Revolution ide ;-) What does one do with scripts outside of the IDE that can't be done directly in the IDE? -- Richard Gask

Re: exportscripts.rev

2007-03-28 Thread Viktoras Didziulis
Cool! But one may end with hundreds of files this way... What about exporting to an xml along with properties of stacks, cards and objects? And then its just one step towards importing back into Revolution ide ;-) Then everyone could use "my favorite script editor" to edit Revolution scripts withou

Re: Can't write in field ...

2007-03-28 Thread Ken Ray
On Thu, 29 Mar 2007 07:10:31 +0200, Jean-Pierre wrote: > I 'm sure that it was a stupid things but ... > > I have made a programm for my son. Programm making fractal ... > All work fine but ... > > I can't write in field. I can focus on it. I have the prompt but I > can't input text Do

Re: Can't write in field ...

2007-03-28 Thread Jim Ault
On 3/28/07 10:10 PM, "Jean-Pierre" <[EMAIL PROTECTED]> wrote: > I 'm sure that it was a stupid things but ... > > I have made a programm for my son. Programm making fractal ... > All work fine but ... > > I can't write in field. I can focus on it. I have the prompt but I > can't input text

Can't write in field ...

2007-03-28 Thread Jean-Pierre
I 'm sure that it was a stupid things but ... I have made a programm for my son. Programm making fractal ... All work fine but ... I can't write in field. I can focus on it. I have the prompt but I can't input text Thank You .. ___ use-revol

Re: exportscripts.rev

2007-03-28 Thread Bill at iGame3D
Josh Mellicker wrote: > > On Mar 26, 2007, at 7:05 PM, Kay C Lan wrote: > This stack has been super helpful to me over the last couple days, > anyone try it out? > http://leapingbrain.com/stacks/exportscripts.rev.zip > Sure did. I've been exporting scripts from stacks for ages. I prefered a

Re: unicodeText or raw text

2007-03-28 Thread Kenji Kojima
Ron, Did you put a BOM before the text. set the useUnicode to true put numToChar(baseConvert("FEFF",16,10)) into tBom ask file "" with "jpn_bomUtf16.txt" put tBom & the unicodeText of fld 1 into URL ("binfile:" & it) -- Kenji Kojima http://www.kenjikojima.com/ On Mar 28, 2007, at 8:32 PM, ro

Re: Vista offer :-)))

2007-03-28 Thread Mark Talluto
On Mar 28, 2007, at 6:50 PM, Marian Petrides wrote: If any of you are sitting on the fence about the Vista Business upgrade that you can get free if you either buy a full version or an early update version of Rev Enterprise, let me be the first to say that my upgrade just arrived (I did t

Vista offer :-)))

2007-03-28 Thread Marian Petrides
If any of you are sitting on the fence about the Vista Business upgrade that you can get free if you either buy a full version or an early update version of Rev Enterprise, let me be the first to say that my upgrade just arrived (I did the early update about 10 days ago) from Amazon (US).

unicodeText or raw text

2007-03-28 Thread ron
Greetings, I am saving Japanese text as unicodetext to a file on a Mac but it seems to be saved as raw text. That is, when the file is doubleclicked and opens Textedit, it shows raw unicode, not Japanese. If Textedit's preferences are set to open text files as UTF16, then it opens the file an

Re: Hiding a nonRev file in a Windows Standalone

2007-03-28 Thread Chipp Walters
Check out: http://www.altuit.com/webs/revCentral/Number6/default.htm and the tip there for how to embed a file into a stack. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your s

Re: Problem with Fields

2007-03-28 Thread Jim Ault
On 3/28/07 5:04 PM, "Dave" <[EMAIL PROTECTED]> wrote: > > I have a number of fields that the user can change. When they select > a field I want its old contents selected so that if they start to > type it overwrites the current contents. If they want to edit the > contents then they click again to

Re: Problem with Fields

2007-03-28 Thread Dave
Hi, I have a number of fields that the user can change. When they select a field I want its old contents selected so that if they start to type it overwrites the current contents. If they want to edit the contents then they click again to de-select the text. I tried your suggestion and it

Re: Disable menu item

2007-03-28 Thread Mark Smith
Sorry, that should have been: put false into resultsExist repeat for each item i in "vmiFld,nvmiFld,cmiFld,vdriFld,aciFld,sriFld,friFld,ariFld,liFld" if fld i of card "index" is not empty then put true into resultsExist end repeat if resultsExist AND the short name of this cd is "index" then

Re: Disable menu item

2007-03-28 Thread Mark Smith
Charles, you might find it a bit more manageable to check the fields in a repeat loop: put false into resultsExist repeat for each item i in "vmiFld,nvmiFld,cmiFld,vdriFld,aciFld,sriFld,friFld,ariFld,liFld" if fld i of card "index" is not empty then put true into resultsExist end repeat if

Re: Disable menu item

2007-03-28 Thread Devin Asay
On Mar 28, 2007, at 5:04 PM, Charles Szasz wrote: Jim, I forgot to include my latest script: case "Export..." if field "vmiFld" of card index > "" or field "nvmiFld" of card index > "" \ or field "cmiFld" of card index > "" or field "vdriFld" of card index > "" \ or fie

Disable menu item

2007-03-28 Thread Charles Szasz
Jim, I forgot to include my latest script: case "Export..." if field "vmiFld" of card index > "" or field "nvmiFld" of card index > "" \ or field "cmiFld" of card index > "" or field "vdriFld" of card index > "" \ or field "aciFld" of card index > "" or field "sriFld" of

Disable menu item

2007-03-28 Thread Charles Szasz
Jim, I want to make a menu item only available when the user is on a specific card ("index") of stack x. I have tried various scripts to identify which card the user is on to so that the menu would only be accessible from that card. I thought the only way to do this is to the identify the

Re: Disable menu item

2007-03-28 Thread Jim Ault
> if card of group "menubar 1 of stack "x" = the name of card "index" I am not sure what this is testing. What are you trying to do here, because ... ---> card of group "menubar 1 of stack "x" <-- does not make any sense --wrong number of quote characters --bad card reference --is there a stack

Disable menu item

2007-03-28 Thread Charles Szasz
I want to enable a menu item "Export" except when the user is on a specific card. I have tried this and other scripts: if card of group "menubar 1 of stack "x" = the name of card "index" then send mouseUp to button "export" of card "index" end if But I keep getting bad expression

Re: Newbie Question

2007-03-28 Thread Björnke von Gierke
On 28 Mar 2007, at 17:22, Simon HARPER wrote: Thanks for that, I'll keep on doing it this way but I think that better documentation would really help user uptake. Due to reasons unknown to me, RunRev doesn't think that this is an urgent thing to change. I and other users disagree with their

Re: Problem with Fields

2007-03-28 Thread Eric Chatonet
Hi Dave, Probably you could use: on openField send "SelectText" to me in 0 milliseconds end openField -- on SelectText select the text of the target end SelectText But I really don't understand the concept ;-) From an ergonomic point of view, I mean. Nevertheless, ke

Problem with Fields

2007-03-28 Thread Dave
Hi, I have the following Script on a number of fields: on openField select the text of me end openField on closeField end closeField I want the whole of the field to be Selected when the user clicks into the field. When I run this, the field gets selected (the focus border comes on), t

Re: Newbie Question

2007-03-28 Thread Simon HARPER
Thanks for that, I'll keep on doing it this way but I think that better documentation would really help user uptake. Cheers Si. Simon Harper 2.44 Kilburn Building University of Manchester (UK) Pri: [EMAIL PROTECTED] Alt: [EMAIL PROTECTED] On 28 Mar 2007, at 15:57, Devin Asay wrote:

Re: How to tell if a stack has been edited

2007-03-28 Thread Richard Gaskin
Devin Asay wrote: On Mar 27, 2007, at 10:23 PM, Sarah Reichelt wrote: Is there any way to tell if the data in a stack has been edited? I don't want to have to keep track of every field and record any changes so I am hoping there is a hidden property somewhere that can tell me this. It has to wo

Re: Newbie Question

2007-03-28 Thread Devin Asay
Welcome, Simon. On Mar 28, 2007, at 2:54 AM, Simon HARPER wrote: Thanks for this, and it's much appreciated. Regarding the online dictionary, it seems to be different on the mac - the tutorials suggest you can use a drill down approach looking for say messages or commands and then locating

Re: How to tell if a stack has been edited

2007-03-28 Thread Devin Asay
On Mar 27, 2007, at 10:23 PM, Sarah Reichelt wrote: Is there any way to tell if the data in a stack has been edited? I don't want to have to keep track of every field and record any changes so I am hoping there is a hidden property somewhere that can tell me this. It has to work in a standalone

Re: Newbie Question

2007-03-28 Thread Simon HARPER
Thanks for this, and it's much appreciated. Regarding the online dictionary, it seems to be different on the mac - the tutorials suggest you can use a drill down approach looking for say messages or commands and then locating the one you want (serendipitous browse) however on my mac I seem

Re: Newbie Question

2007-03-28 Thread Dick Kriesel
On 3/28/07 12:49 AM, "Simon HARPER" <[EMAIL PROTECTED]> wrote: > on mouseUp >put the hilitedlines of field "listCats" into tLineList >split tLineList by comma >sort items of tLineList descending of each >repeat for each element tLineNumber in tLineList > delete line tLineNumbe