Re: Feb 14th

2010-02-13 Thread Scott Rossi
Nice Malte. Here's a solution that is nowhere near as elegant as Malte's code, but the result is perhaps a bit more "tactile" :-) on mouseUp buildV buildO -1 buildO 1 runAnim end mouseUp command buildO M put "style,opaque,linesize,backcolor," & \ "width,height,antialias

Re: Behavior Nightmare

2010-02-13 Thread Sivakatirswami
Scott Rossi wrote: I assume that card-level behaviors should "fall through" to stack-level behaviors, but weirdly, I got script errors saying the handler/function couldn't be found. I tried a simple test stack and stack-level behaviors appear to work there, so I can't figure out what's going on

Re: Feb 14th

2010-02-13 Thread J. Landman Gay
Malte Pfaff-Brill wrote: on mouseUp local tX,tY,tOutput if there is no grc "output" then create grc "output" set the style of it to "curve" end if repeat with i=-2*pi to 2*pi step 0.01 put round(item 1 of the loc of this cd+sin(PI+i/2)*200*(1-sin(abs(i)/2.0))*sin(

making a thumbnail from a snapshot

2010-02-13 Thread Peter Brigham MD
I'm trying to make a thumbnail from a snapshot of an image from another substack. First I clone a group that contains a thumbnail image and a text field, then I reposition the new group, then I try to get a new thumbnail into the new group. Here's what I've tried (partial script): clon

Re: Feb 14th

2010-02-13 Thread -= JB =-
That is nice Malte, thanks. -=>JB<=- On Feb 13, 2010, at 2:23 PM, Malte Pfaff-Brill wrote: on mouseUp local tX,tY,tOutput if there is no grc "output" then create grc "output" set the style of it to "curve" end if repeat with i=-2*pi to 2*pi step 0.01 put round(i

Feb 14th

2010-02-13 Thread Malte Pfaff-Brill
on mouseUp local tX,tY,tOutput if there is no grc "output" then create grc "output" set the style of it to "curve" end if repeat with i=-2*pi to 2*pi step 0.01 put round(item 1 of the loc of this cd+sin(PI+i/2)*200*(1-sin(abs(i)/2.0))*sin(abs(i))) into tX put r

Re: File Associations?

2010-02-13 Thread Mark Schonewille
Scott, That's right. You double-click a file in Windows and Windows starts another instance of the executable for that file. In that executable, you catch the relaunch message. If file $1 exists, don't return any value from the relaunch handler. The new instance will be terminated and the

Re: Behavior Nightmare

2010-02-13 Thread Scott Rossi
Thanks for all the responses regarding behaviors. I wound up moving several scripts around and I think I have most things working. There's still an odd behavior I've run into where functions/handlers that resided in the behavior of the stack refuse to get called. I assume that card-level behavio

Re: File Associations?

2010-02-13 Thread Scott Rossi
Recently, Mark Schonewille wrote: > There are several intresting posts about this subject in the archives > of this list. On of them can be found here http://qurl.tk/4x You > probably have that info already, since it is Ken's. Thanks Mark. The one (?) item I'm unclear on is the script example:

Re: File Associations?

2010-02-13 Thread Mark Schonewille
Hi Scott, It looks like you found all the information you need. I'm using the same for an installer, which I use for quite a few different projects. There are several intresting posts about this subject in the archives of this list. On of them can be found here http://qurl.tk/4x You proba

File Associations?

2010-02-13 Thread Scott Rossi
Hi List: Are there any pages/docs out there that deal with setting up file associations on Win/Mac? It's been years since I've built an app that reads/writes files and I've forgotten how to manage this stuff (my knowledge was probably out of date anyway). I found Ken Ray's dev page that talks ab

Re: [OT] Google Buzz - Beware

2010-02-13 Thread Mikey
Personally I like Buzz and hope that I can deploy it shortly for my Apps users, but that's just me. On Sat, Feb 13, 2010 at 00:57, Kay C Lan wrote: > I realise the horse has already bolted, but for those who haven't > turned Buzz off, another link: > > http://techcrunch.com/2010/02/12/google-buz

Re: Spell check

2010-02-13 Thread Jim Beckmann
Thanks for the quick responses. ___ 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: Spell check

2010-02-13 Thread Sivakatirswami
Jim: I'll give a shameless endorsement for Scott's product http://www.runrevplanet.com/downloads/rrpSpellCheck-Guide-Reference.pdf if you can afford it... price is very reasonable. he supports it too! I needed to trap the messages for when users add words, so I this neat app where the custom dic

Re: Words Indexing strategies

2010-02-13 Thread Alejandro Tejada
Hi Bernard, Bernard Devlin-2 wrote: > > [snip] > Am I right that given these search terms: baboon OR monkey AND fruit > and > index file b.tgz contains a line like this: baboon: 1,5,9 > index file m.tgz contains a line like this: monkey: 2,7,17 > index file f.tgz contains a line like this: frui

Re: Drag and drop from browser bug?

2010-02-13 Thread David Bovill
OK - thanks for testing - filed as bug report - http://quality.runrev.com/qacenter/show_bug.cgi?id=8616 On 13 February 2010 14:58, Bernard Devlin wrote: > On Sat, Feb 13, 2010 at 2:05 PM, David Bovill > wrote: > > Try this url (http://david.on-rev.com/tests/drag_image.html) - it is an > > examp

Re: Drag and drop from browser bug?

2010-02-13 Thread Bernard Devlin
On Sat, Feb 13, 2010 at 2:05 PM, David Bovill wrote: > Try this url (http://david.on-rev.com/tests/drag_image.html) - it is an > example of a file that the browser and finder handels fine David, Other images where the href of the surrounding anchor tag points to a URL for the image file still wo

Re: Drag and drop from browser bug?

2010-02-13 Thread David Bovill
Try this url (http://david.on-rev.com/tests/drag_image.html) - it is an example of a file that the browser and finder handels fine - drag the image onto the desktop and it is downloaded - but there is no way to do it in rev as there is no useful data in the dragdata. Shall I file it as a bug? On

Re: getting "maxscroll" of a group?

2010-02-13 Thread zryip theSlug
2010/2/13 Klaus on-rev : > Hi all, > > restarting my MacMini finally solved my strange problem!? > Voodoo did not work, nor did holy water or holy sh** :-D > > And now I found the correct math for my problem: > maxscroll = the formattedheight of grp x - the height of grp x + the > scrollbarwidth o

Re: Spell check

2010-02-13 Thread Peter Brigham MD
I already had the osax installed from some time ago. However, it was installed in the ScriptingAdditions folder in my OS user library. I then installed it in the root library ScriptingAdditions folder and now things work. Don't know why I had to do that -- I thought osaxen would work if in

Re: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Hi all, restarting my MacMini finally solved my strange problem!? Voodoo did not work, nor did holy water or holy sh** :-D And now I found the correct math for my problem: maxscroll = the formattedheight of grp x - the height of grp x + the scrollbarwidth of grp x I was always weak in math, so

Re: getting "maxscroll" of a group?

2010-02-13 Thread zryip theSlug
2010/2/13 Klaus on-rev : > Hi zryip, > >> 2010/2/13 Klaus on-rev : Hi Klaus, Why not like this? constant kBigValue = 9 ... >>> Very good question! >>> Surely works, but not for me, since I cannot set or get the VSCROLL of my >>> &##*** group :-D >> >> Works pretty

Re: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Hi zryip, > 2010/2/13 Klaus on-rev : >>> >>> Hi Klaus, >>> Why not like this? >>> constant kBigValue = 9 >>> ... >> Very good question! >> Surely works, but not for me, since I cannot set or get the VSCROLL of my >> &##*** group :-D > > Works pretty well for me... > RunRev 4.5.0 - dp 2

Re: getting "maxscroll" of a group?

2010-02-13 Thread zryip theSlug
2010/2/13 Klaus on-rev : >> >> Hi Klaus, >> >> Why not like this? >> constant kBigValue = 9 >> ... > > Very good question! > > Surely works, but not for me, since I cannot set or get the VSCROLL of my > &##*** group :-D Works pretty well for me... RunRev 4.5.0 - dp 2 Mac OS X 10.6.2 Rega

Re: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Hi zryip, > 2010/2/13 Klaus on-rev : >> Hi all, >> >> as the subject says I am looking for a way to calculate the "maxscroll" >> (maximum h/v-scroll value) of a LocLocked group with content larger >> than the group. Know what I mean? >> >> Thanks in advance! >> >> Best >> Klaus > > Hi Klaus, >

Re: Mixt 'normal' and unicodeText in a field ???

2010-02-13 Thread Richmond Mathewson
On 13/02/2010 13:35, Björnke von Gierke wrote: put uniencode("and") into theText set the useUnicode to true set the unicodeText of fld "fKRAP" to numToChar(353)&& theText&& numToChar(353) Thanks; that's lovely. ___ use-revolution mailing list

Re: getting "maxscroll" of a group?

2010-02-13 Thread zryip theSlug
2010/2/13 Klaus on-rev : > Hi all, > > as the subject says I am looking for a way to calculate the "maxscroll" > (maximum h/v-scroll value) of a LocLocked group with content larger > than the group. Know what I mean? > > Thanks in advance! > > > Best > > Klaus > Hi Klaus, Why not like this? cons

Re: VSCROLL of groups don't work? WAS: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Am 13.02.2010 um 13:21 schrieb Björnke von Gierke: > Oh right forgot your original question: > > put the formattedHeight of group 1, the formattedWidth of group 1 ??? The "max v/h scroll" = the formattedwidth/-height of the group? Never :-D Best Klaus -- Klaus Major http://www.major-k.de k

Re: VSCROLL of groups don't work? WAS: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Am 13.02.2010 um 13:17 schrieb Björnke von Gierke: > this code works as expected for me: > > on scrollbardrag > put the hscroll of me, the vscroll of me, the scroll of me > end scrollbardrag > > lockloc = true > hscrollbar = true > vscrolbar = true Hm, really does NOT work here, just tes

Re: [ANN] RunRev Community Linux 0.0.2

2010-02-13 Thread Alejandro Tejada
These are great news! Many thanks for your dedication, to create these distributions for the whole community. :-D By the way, i noticed that if you compress the file: VMWare Image RunRev_Community_Linux.i686-0.0.1.vmx.tar.gz (567 MB) using 7Zip, the file gets reduced to aprox. 350 MB This is an

Re: VSCROLL of groups don't work? WAS: getting "maxscroll" of a group?

2010-02-13 Thread Björnke von Gierke
Oh right forgot your original question: put the formattedHeight of group 1, the formattedWidth of group 1 On 13 Feb 2010, at 13:17, Björnke von Gierke wrote: > this code works as expected for me: > > on scrollbardrag > put the hscroll of me, the vscroll of me, the scroll of me > end scrollbar

Re: VSCROLL of groups don't work? WAS: getting "maxscroll" of a group?

2010-02-13 Thread Björnke von Gierke
this code works as expected for me: on scrollbardrag put the hscroll of me, the vscroll of me, the scroll of me end scrollbardrag lockloc = true hscrollbar = true vscrolbar = true On 13 Feb 2010, at 13:06, Klaus on-rev wrote: > Hi all, > > when trying to fibure this out I found that the VSC

VSCROLL of groups don't work? WAS: getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Hi all, when trying to fibure this out I found that the VSCROLL of locLocked grougs doens not work somehow?! Rev 4.0 OS X 106.2. I have an image in a group, larger thatn the group and the set the groups width and heigt to 100. Then I enabled v and h scrollbar for this group and added this script

getting "maxscroll" of a group?

2010-02-13 Thread Klaus on-rev
Hi all, as the subject says I am looking for a way to calculate the "maxscroll" (maximum h/v-scroll value) of a LocLocked group with content larger than the group. Know what I mean? Thanks in advance! Best Klaus -- Klaus Major http://www.major-k.de kl...@major.on-rev.com

Re: Mixt 'normal' and unicodeText in a field ???

2010-02-13 Thread Björnke von Gierke
put uniencode("and") into theText set the useUnicode to true set the unicodeText of fld "fKRAP" to numToChar(353) && theText && numToChar(353) On 13 Feb 2010, at 12:07, Richmond Mathewson wrote: > Cripes, I must be bonkers . . . :) > > Not really, just a bit cheesed off when I want to put s

Mixt 'normal' and unicodeText in a field ???

2010-02-13 Thread Richmond Mathewson
Cripes, I must be bonkers . . . :) Not really, just a bit cheesed off when I want to put something 'sophisticated' such as 'and' in between 2 unicode chars in a field where useUnicode is set to true I have to define it by numToChar(XXX) for each constituent character. For example: I wish

Re: Spell check

2010-02-13 Thread Hugh Senior
There is also a free solution (along with a dictionary builder) at www.flexibleLearning.com/xtalk. Probably not as feature rich, but it might serve your purposes. /H On Fri, Feb 12, 2010 at 12:39 PM, Jim Beckmann wrote: > How is the easiest way to incorporate spell checking into a standalone on