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,
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
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
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
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
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
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
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
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
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).
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
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
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
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
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
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
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
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
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
> 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
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
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
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
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
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:
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
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
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
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
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
30 matches
Mail list logo