Re: SpecialFolderPath(26) on Vista

2007-07-10 Thread Signe . Sanne
Thank you, Ken

Signe Marie
> SpecialFolderPath(26) is perfectly fine to write to on Vista - This is 
> the user-specific "Application Data" folder, so since it's 
> user-specific, it is completely writeable. I've used this already on a 
> Vista project with both Admin and non-admin users, as well as those 
> that have UAC on and off and you're good to go.
> 
> Ken Ray
> Sons of Thunder Software, Inc.
> Email: [EMAIL PROTECTED]
> Web Site: http://www.sonsothunder.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: Duration of non supported applications

2007-03-15 Thread Signe . Sanne

> I agree with Ken. It would not hurt and would probably help to update  
> your materials to the newest version of rev. At a minimum, you should  
> re-build the "portal" standalone with the latest rev engine. In my  
> view that would help legacy stacks survive longer.
> 
> Devin
> 
> Devin Asay
> Humanities Technology and Research Support Center
> Brigham Young University

Good morning and thanks to both Ken Ray and you for your advice. When you say
the latest rev engine, do you mean 2.8? I have only 2.7, if I bought 2.8 would I
have to install Vista? What about testing on Window XP then? Can both systems be
present at the same time?

Signe Marie
___
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: Bullit Points

2007-03-03 Thread Signe . Sanne
Quoting Cal Horner <[EMAIL PROTECTED]>:

> has anyone in the list been successful in putting bullet points into text
> fields?

> 
> If so could you explain how you did this?

Maybe this will help:

put the numtochar of 165 into fld MyField

Signe Marie Sanne
___
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: Umlaut--Success!

2007-03-02 Thread Signe . Sanne
Good morning Devin
I have still got no success (on Mac10.4.8 and Rev 2.6)
The fld "result" is set to "verdana,unicode", but only n appears. Could it be
that I need Rev 2.8?

However, I have not tried your suggested settings with "Enable the Unicode Hex
Input method in the International system prefs under the input tab. This will
cause the Unicode Hex Input method to appear in the input menu (the one with the
little flags on the right side of the menubar.) First because my system is in
Norwegian and I did not find the input menu, and secondly because my potential
users cannot be bothered by doing this. (Or am I completely wrong? Is this
setting in Revolution somewhere?)

Signe Marie

Quoting Devin Asay <[EMAIL PROTECTED]>:

> 
> On Mar 1, 2007, at 10:02 AM, Mark Schonewille wrote:
> 
> > Hi Devin,
> >
> > This doesn't work for me (Mac OS X 10.4.8, Rev 2.7.8).
> >
> > The # is replaced by n instead of n-umlaut.
> 
> Right, after I sent this message, I discovered that the first # in  
> the field does not get replaced by the n-umlaut, only an n. It works  
> for every other # after the first one. (Go figure!) Here's a  
> workaround that worked for me:
> 
> on mouseUp
>get "#"&fld "poundfld"
>put numToChar(110) & numToChar(204) & numToChar(136) into tChars
>replace "#" with tChars in it
>set the unicodeText of fld "result" to uniencode(it,"UTF8")
>delete char 1 to 2 of fld "result"
> end mouseUp
> 
> Does this work for you?
> 
> Thanks for keeping me honest!
> 
> Devin
> 
> >
> >> Signe,
> >>
> >> You can still do it without one of these methods. Let's take your  
> >> case as an example. Say you have a field "poundfield" that  
> >> contains your text with # for each n-umlaut. Now create another  
> >> field, say field "result", and set its textFont to a unicode font  
> >> as in #1 of my first post, below. Now create a button with the  
> >> following script:
> >>
> >> on mouseUp
> >>   get fld "poundfld"
> >>   replace "#" with "nÃà" in it
> >>   set the unicodeText of fld "result" to uniencode(it,"UTF8")
> >> end mouseUp
> >>
> >> Barring any automatic Mac to PC character substitutions (by Rev or  
> >> by your mail client,) this should result in the #'s in your  
> >> poundfield being replaced by the character you want. If it doesn't  
> >> work as posted here, the three characters in the 'with' part of  
> >> the replace statement are ASCII-110 ASCII-204 ASCII-136. So you  
> >> could generate them reliably by doing this:
> >>
> >> on mouseUp
> >>   get fld "poundfld"
> >>   put numToChar(110) & numToChar(204) & numToChar(136) into tChars
> >>   replace "#" with tChars in it
> >>   set the unicodeText of fld "result" to uniencode(it,"UTF8")
> >> end mouseUp
> >>
> >> Hope this saves you from a kludge. ;-)
> >>
> >> Devin
> >>
> >> On Mar 1, 2007, at 1:38 AM, Signe Marie Sanne wrote:
> 
> Devin Asay
> Humanities Technology and Research Support Center
> Brigham Young University
> 
> ___
> 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: Umlaut--Success!

2007-03-01 Thread Signe . Sanne

Hello Devin,
Nor did it work on Mac 10.4 and Revolution 2.6. I've spent half a day making
images with n+umlaut for textsize 14 and 16 in ordinary colour and in my
selection colour. Thanks all the same.
Signe Marie

> Signe,
> 
> You can still do it without one of these methods. Let's take your  
> case as an example. Say you have a field "poundfield" that contains  
> your text with # for each n-umlaut. Now create another field, say  
> field "result", and set its textFont to a unicode font as in #1 of my  
> first post, below. Now create a button with the following script:
> 
> on mouseUp
>get fld "poundfld"
>replace "#" with "nÃà" in it
>set the unicodeText of fld "result" to uniencode(it,"UTF8")
> end mouseUp
> 
> Barring any automatic Mac to PC character substitutions (by Rev or by  
> your mail client,) this should result in the #'s in your poundfield  
> being replaced by the character you want. If it doesn't work as  
> posted here, the three characters in the 'with' part of the replace  
> statement are ASCII-110 ASCII-204 ASCII-136. So you could generate  
> them reliably by doing this:
> 
> on mouseUp
>get fld "poundfld"
>put numToChar(110) & numToChar(204) & numToChar(136) into tChars
>replace "#" with tChars in it
>set the unicodeText of fld "result" to uniencode(it,"UTF8")
> end mouseUp
> 
> Hope this saves you from a kludge. ;-)
> 
> Devin
> 
> On Mar 1, 2007, at 1:38 AM, Signe Marie Sanne wrote:
> 
> > Hello Devin,
> >
> > I'm afraid none of the methods can be used. I have lots of texts in  
> > which I use "#" for the n with umlaut. These will be fed into  
> > fields on the fly appearing with the correct letter instead of the  
> > "#". So far I have used images for various text sizes which work  
> > reasonably well. My problem arose when I wanted to select a line in  
> > the text, then having to change the colour of the image as well. So  
> > I think I'll stick to the images, just double the sets of images  
> > with selection colours as well.  Thanks for all the help from you  
> > and Mark.
> >
> > Signe Marie Sanne
> >
> > Den 28. feb. 2007 kl. 18:57 skrev Devin Asay:
> >>  You *can* do this in Rev. Here's how I did it in OS X (I'm using  
> >> rev 2.8 in OSX 10.4.8):
> >>
> >> 1. Create a field and set its textfont to a unicode font:
> >>   set the textFont of fld "unistuff" to "Verdana,unicode"
> >>
> >> 2. Enable the Unicode Hex Input method in the International system  
> >> prefs under the input tab. This will cause the Unicode Hex Input  
> >> method to appear in the input menu (the one with the little flags  
> >> on the right side of the menubar.)
> >>
> >> 3. Position the insert cursor in the field, choose Unicode Hex  
> >> Input from the input menu, then type :
> >>   n (then, holding alt/option key down) 0308
> >>
> >>   the n with umlaut should appear.
> >>
> >> Sorry, don't know how to do this via direct input in Windows.  
> >> However, the following should work on either OS:
> >>
> >> 1. Create a UTF-8 encoded text file that includes the desired  
> >> character. I used BBedit, making sure I chose a font that  
> >> supported unicode (Tahoma or Lucida Grande should work) and that  
> >> the document encoding was set to UTF-8, then created the n-umlaut  
> >> character just as I described in #3 above.
> >>
> >> 2. Save the file to disk.
> >>
> >> 3. Read it in to your rev fld using the uniencode() function.
> >>
> >> I've created a stack that shows how to do this.
> >>
> >> go stack url "http://revolution.byu.edu/unicode/testUnicode.rev";
> >>
> >> You may also want to download the utf-8 file from http:// 
> >> revolution.byu.edu/unicode/textUni.ut8. This is the file that the  
> >> sample stack reads from.
> 
> 
> Devin Asay
> Humanities Technology and Research Support Center
> Brigham Young University
> 
> ___
> 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: FOREIGN ACCENTS

2006-02-06 Thread Signe . Sanne
Quoting David Mendriski <[EMAIL PROTECTED]>:

>  HI ALL,
> 
> Can anyone tell me how to get a PC to accommodate the input of a  
> grave accent?  (Or any accent for that matter) The Mac only required  
> hitting the option key followed by the grave accent (above the tab  
> key) then the vowel.  As in the Italian "parlò" .  This sequence  
> doesn't work on PC's.  there must be a way to put accent marks over  
> vowels on PCs. What do our European friends do?   My PC version of my  

Ciao David,
Just hold down the Shift key and press once the accent key (the one to the left
of the backspace key), nothing appears on the screen. Then write the vowel and
both accent and the vowel appear at the same time. (For the accent aigu you have
to hold down the AltGr key.)

I assume you wanted to type it, if you want to make the program do it for you 
you may find the chartonum of "ò" (= 152) and use

put the numtochar of "152" after fld MyFld

In order to find the various numtochar, use the msg box

put the chartonum of "ò" 
put the chartonum of "é" etc

(You write the accented letters as indicated above.)

Because of Windows I sometimes use a palette (one for each platform) with the
relevant accented letters for my students, this is even more relevant for the
students in French because of "ç, œ", cedille, trema etc. The student just
clicks on the letter on the palette and the program inserts it in the field.

Just ask me if there are further problems. If someone is interested I may make a
small example and upload it to Rev Online.

Signe Marie Sanne
> ___
> 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: sound recording stack available?

2006-01-13 Thread Signe . Sanne
Quoting Kurt Kaufman <[EMAIL PROTECTED]>:

> Does anyone have an example of a simple stack used to make audio  
> recordings?  It would have to work on Windows with a minimum of  
> fuss.  Simple interface; just "Record" (with an indication of elapsed  
> recording time) and "Save".  I'd be interested both in what might be  
> possible on Windows with and without Quicktime.

In Rev Online - User spaces under "sms" I have a stack called RecPlayWawMCI
which may be of help.

Signe Marie Sanne

___
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: hiliting a word

2005-03-02 Thread Signe . Sanne
Quoting Nicolas Cueto <[EMAIL PROTECTED]>:

> Hello All,
> 
> I'm after a hilited text effect. Namely, when a user clicks on a word
> displayed in locked text field, that one word:
> 
> 1) becomes hilited, i.e., it changes color
> 
> 2) becomes placed into a variable
> 
> My scription "solution" is this:
> 
> on mouseUp
>  put the clickChunk into tPos
>  set the textColor of char (word 2 of tPos) to (word 4 of tPos) of field
> "fText" to red
>  put char (word 2 of tPos) to (word 4 of tPos) of field "fText" into
> gSomeVariable
> end mouseUp

Try:
on mouseUp
  put the clickChunk into tPos
  put the textColor of char (word 2 of tPos) to (word 4 of tPos) of me into
tOriginalColor
  set the textColor of char (word 2 of tPos) to (word 4 of tPos) of me to red
  put char (word 2 of tPos) to (word 4 of tPos) of field 1 into gSomeVariable
  wait 30 ticks
  set the textColor of char 1 to -1 of me to tOriginalColor
end mouseUp

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


RE: pasting text from clipboard

2005-02-24 Thread Signe . Sanne
Quoting Dwayne Rothe <[EMAIL PROTECTED]>:

> Thanx Frank,
> Your suggestion worked perfectly, I used a slight variation so I could also
> retain the original textFont...
> 
> lock screen
> if the clipboard is text then paste
> set textFont of char 1 to (the number of chars in fld "Field") of fld "Field"
> to Tahoma
> set textSize of char 1 to (the number of chars in fld "Field") of fld "Field"

Just a small thing to save typing:

char 1 to (the number of chars in fld "Field") of fld "Field" = char to -1 of
fld "field"

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


Re: CD-ROM as directory?

2005-02-24 Thread Signe . Sanne
Quoting Nicolas Cueto <[EMAIL PROTECTED]>:

> Hello All,
> 
> I'm having a problem running a standalone off of a CD-ROM. Namely, the
> standalone itself opens up but not its sound and image files.
> 
> Now, the problem disappears if I copy the standalone and all its associated
> files/directories to the hard drive of one of my Win machines (Win98,
> Japanese). So I guess something is up with the directory path.
> 
> Here's an example of my scripting method for calling up images and sounds
> via "the directory":
> 
>  put the directory into tDir
>  put tDir & "/snd/" & tSoundFileID into tSndFilePath
>  play tSndFilePath

Instead of using the directory I would try:

set itemDel to "/"
put item 1 to -2 of the effective filename of this stack into tFolder
put tFolder & "/snd/" & tSoundFileID into tSndFilePath

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