Re: Export img from a stack

2006-01-26 Thread Eric Chatonet

Bonjour Yves,

local tDefaultFolder, tResult
-
answer folder "Choose a destination folder:"
if it = empty then exit to top
put the defaultFolder into tDefaultFolder
set the defaultFolder to it
export image ID 2016 to file "RescuedImg.png" as PNG
put the result into tResult
set the defaultFolder to tDefaultFolder
if tResult = empty then put "Done" else put tResult

To be more efficient you could write a more generic handler :-)

Le 27 janv. 06 à 08:20, Yves COPPE a écrit :

I have made a btn from a png file. I've imported the png file as  
control and use it as icon for a button.

I'd like to make some cosmetic change to the img (in Photoshop).
But I have loose the original file

Now, I'd like to export this img from the stack  as a .png file to  
work further in Photoshop.

How can I proceed ?


Best Regards from Paris,
Eric Chatonet
 
--

http://www.sosmartsoftware.com/[EMAIL PROTECTED]/


___
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


[semi-OT] Vista Visual Guidelines

2006-01-26 Thread Richard Gaskin
I've just updated my Resources page to add Microsoft's Vista Visual 
Guidelines to the other OS HIGs there:



It can be downloaded directly from:


Interesting reading...let's hope RunRev puts as much into Rev for Vista 
as it did for OS X


--
 Richard Gaskin
 Fourth World Media Corporation
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.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


Export img from a stack

2006-01-26 Thread Yves COPPE

Hi list,


I have made a btn from a png file. I've imported the png file as  
control and use it as icon for a button.

I'd like to make some cosmetic change to the img (in Photoshop).
But I have loose the original file

Now, I'd like to export this img from the stack  as a .png file to  
work further in Photoshop.

How can I proceed ?

the img in the stack is ID 2016

Thanks

Greetings.

Yves COPPE
[EMAIL PROTECTED]

___
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: Delete Main Stack

2006-01-26 Thread Sarah Reichelt
On 1/27/06, Dan Shafer <[EMAIL PROTECTED]> wrote:
> Jeff
>
> I don't think you want to *delete* your stack, just close it, right?
>
> close stack "Main"
>
> should do that job.
>
> Deleting the main stack should never work, actually.

Well, yes it does work, except that in this context, "delete" just
deletes the stack from memory, not from the hard disk.

You must be extremely careful to use this only on a mainStack. If you
delete a substack, it is really gone - deleted from the stack file -
but deleting a mainStack just removes it from memory.

However in answer to the original question, either "close this stack"
or "quit" should do fine. I often have a quit routine that checks
whether I am in the IDE or running as an app and either saves & closes
the stack if in the IDE, or quits if in an app.

Cheers,
Sarah
___
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: Total Number of Cards

2006-01-26 Thread Ken Ray
On 1/26/06 11:35 PM, "Judy Perry" <[EMAIL PROTECTED]> wrote:

>>> This has go to be easy, but I can't find anything
>>> in the doc's or the mail archive.  How does one
>>> determine in code the total number of cards in a
>>> stack (apart from looping from the start to the
>>> last card)?

You got the right response from Phil and Judy, but I'd also like to make you
aware of "the cardnames of ", which will give you a
return-delimited list of the short names of each card, in order that they
appear in the stack. This can be really useful, and of course you can also
get "the number of lines" of the cardnames as an alternative to "the number
of cards" if you want.

  put the cardNames of this stack

  put the number of lines of (the cardNames of this stack)

(of course, I'd use "number of cards" or even "num of cds" because it's
shorter, but just giving you other options...)

HTH,


Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]

___
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: draw/paint tools in standalone ?

2006-01-26 Thread Richard Gaskin

Erik Hansen wrote:


--- Dan Shafer <[EMAIL PROTECTED]>
wrote:


Actually, I suspect that for your app to
contain drawing tools, it's
going to have to create a palette of its own
and manage the process
inside your application. The Rev IDE tools only
operate within the IDE
as far as I know.


has this been done?
is there a plugin for sale?


Once upon a time I started down the road of making a universal drawing 
tool palette, but in the real world I've found that each app requires 
something a little different, so I'm not sure it can usefully be done as 
a one-size-fits-all.   And then there's the question of how to handle 
the other properties (line size, fill/back color/pattern, etc.) -- in 
the same palette a la FileMaker, or in a separate palette that eats up a 
ton of screen space a la Flash.  Decisions, decisions


Fortunately it's not too difficult to slap one together from scratch 
when you need it; mildly tedious if you do it more than once, but if you 
make enough of them it becomes second nature after a while.


There have been only three things that were tricky for me to get my head 
around first time out:


1. The various graphic primitives are governed by the style property, 
while everything else is governed by the tool global property (pointer 
tool, graphic tool, etc.).  So while you "set the tool to pointer" to 
engage the pointer tool, for graphics you first "set the style of the 
templateGraphic to 

Re: Calendar widget

2006-01-26 Thread Dan Shafer
I used ShaoSean's objCalendar in my To Do app in my book. Really nice.



On 1/25/06, Marty Knapp <[EMAIL PROTECTED]> wrote:
> Hey Devin,
>
> > ShaoSean also has an excellent one, objCalendar, that I've used. His
> > web site is http://www.shaosean.tk/ , but I couldn't find it there.
> > Anyone have a link to objCalendar?
> >
> I'm pretty sire it's the same one as you can find here:
>
> Dan Shaefer has a really nice one that goes with his
> book.  I belive you can download the source code here:
>
> http://www.altuit.com/webs/dshafer/RevolutionPros/MyStuff.htm
>
> Marty Knapp
> ___
> 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
>


--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: click at btn

2006-01-26 Thread Dan Shafer
Try

send "menuPick" && "long_day" to button foo



On 1/25/06, sims <[EMAIL PROTECTED]> wrote:
>   I'm making a tutorial for an application, using the move command
> to send a faux cursor through the different elements of the app.
>
>
> When I use the following with an option button
> click button 1 at the loc of card button "long_day"
>
> the button will display the menu.
>
> My problem is that I cannot get the script to continue on from there.
>
> IOW  the menu of the option btn stays open and no matter what
> I try, I cannot get the option btn to close so my tutorial can
> continue to other objects.
>
> Anyone have any suggestions?
>
> ciao,
> sims
>
> European Rev Conference  2006
> www.techietours.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
>


--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: Copyright issue with RevGoURL commands?

2006-01-26 Thread Dan Shafer
(Usual "I'm not a lawyer" disclaimer)

I do not think it is possible for Google or anyone else to complain
about you accessing their site from a platform other than a Web
browser if you're not repackaging or otherwise taking unfair advantage
of their service. My opinion would be that this is perfectly valid
use.

I use NoteTaker (soon to be NoteShare) for such Web search and
research all the time.


On 1/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> It doesn't download anything, just using Google's search engine from within
> Rev.   Does anyone have any information as to whether or not there are any
> copyright issues?   --
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: online Revolution collaborative resources

2006-01-26 Thread Dan Shafer
There have been many attempts to set up off-list online resources. I
think the community is too small to support more than one location.
Like you, I prefer discussion boards and WordPress/Drupal kinds of
places by far. But it's a non-starter here. Trust me. Spend your time
and effor learning Rev, not trying to shift this group to an alternate
approach to online discussion and support.


~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: Delete Main Stack

2006-01-26 Thread Dan Shafer
Jeff

I don't think you want to *delete* your stack, just close it, right?

close stack "Main"

should do that job.

Deleting the main stack should never work, actually.


On 1/23/06, Jeff Honken <[EMAIL PROTECTED]> wrote:
>
> Can anyone tell me why the following code works fine for Closing my Main
> Stack when it's in the IDE Development environment but won't work on a
> standalone?  I'm closing the database and deleting the stack but it
> won't close the app as a standalone.
>
> revCloseDatabase gConID
> delete stack Main
>
>
>
>
> ___
> 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
>


--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: Total Number of Cards

2006-01-26 Thread Judy Perry
Or, using the message box, type in

answer the number of cards

My personal favorite...

Judy

On Thu, 26 Jan 2006, Phil Davis wrote:

> Just get "the number of cards".
>
> Phil Davis
>
>
> Scott Kane wrote:
> > Hi,
> >
> > This has go to be easy, but I can't find anything
> > in the doc's or the mail archive.  How does one
> > determine in code the total number of cards in a
> > stack (apart from looping from the start to the
> > last card)?
> >
> > Scott
> >
> >
> > ___
> > 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
>

___
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: Send Menupick?

2006-01-26 Thread Dan Shafer
Sivakatirswami

try

send "menuPick" && pItem to button "Help". Quick testing here seems to
work. You're trying to execute a function with a parameter but
menuPick isn't a function and you can't "send" a function.

HTH

On 1/23/06, Sivakatirswami <[EMAIL PROTECTED]> wrote:
> I would  like to have a script in one menu button  on one card (A),
> take the user to another card  (b) and trigger a menu choice on a
> button on Card B
>
> This seemed to be obvious enough:
>
> --> pull down menu on Card A
> on menuPick pitem
>switch pItem
>case "User Guide"
>  go to card "User Guide"  # Card B
>  send menupick ("Working Guide") to btn "Help" # a tabbed menu on
> card B
>  break
>end switch
> end menuPick
>
>
> but I get an error for this line:
>
>   send menupick ("Working Guide") to btn "Help"
>
> and the script error is saying it thinks this is a function call and
> not an attempt to send a msg?
>
> Send MouseUp  works, but  send Menupick doesn't? (of course it
> probably does, I'm just doing something wrong...

--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.html
___
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: draw/paint tools in standalone ?

2006-01-26 Thread Erik Hansen


--- Dan Shafer <[EMAIL PROTECTED]>
wrote:

> Actually, I suspect that for your app to
> contain drawing tools, it's
> going to have to create a palette of its own
> and manage the process
> inside your application. The Rev IDE tools only
> operate within the IDE
> as far as I know.

has this been done?
is there a plugin for sale?

Erik Hansen

[EMAIL PROTECTED]http://www.erikhansen.org

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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


Re: Total Number of Cards

2006-01-26 Thread Phil Davis

Just get "the number of cards".

Phil Davis


Scott Kane wrote:

Hi,

This has go to be easy, but I can't find anything
in the doc's or the mail archive.  How does one
determine in code the total number of cards in a
stack (apart from looping from the start to the
last card)?

Scott


___
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


Total Number of Cards

2006-01-26 Thread Scott Kane
Hi,

This has go to be easy, but I can't find anything
in the doc's or the mail archive.  How does one
determine in code the total number of cards in a
stack (apart from looping from the start to the
last card)?

Scott


___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Chipp Walters



Terry Judd wrote:

Chipp, does altFont work even if the end user doesn't have administrator 
rights?


TIA Terry...


Well, Terry that's a loaded question with a lot of variables. The Demo 
stack downloads and installs the altFont.dll (Windows) or altFont.bundle 
(Mac) in the same folder as Revolution. If you don't have administrator 
rights, then I suppose that might fail on the PC as typcially the Rev 
folder is in the Program Files area. Of course, someone would have had 
to already had administrator rights to install Rev in the first place, 
so I doubt that's much of a problem.


If you build a standalone application, you'll need to ship the altFont 
external with it. Where it is stored is up to the user, but once saved 
to a folder, there should be no other admin issues.


Regarding the actual loading of fonts, I don't think there are any 
problems at all on either platform. The fonts are not copied to any 
folder like the Windows/Font folder or the font folder on the Mac, they 
are just instantiated via an API call on the computer. I would be very 
surprised if there are any admin conflicts for this API call. I couldn't 
find any documentation about them.


HTH,

Chipp

___
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: nested ifs -- indentation

2006-01-26 Thread Erik Hansen


--- Stephen Barncard
<[EMAIL PROTECTED]> wrote:

> Chipp, I use that form all the time ("if it is
> empty then exit to
> top") - I just had a problem regarding dangling
> THENs..

IF  THEN
command -- indented
END IF


IF  
THEN command -- not indented

some like it indented.

Erik Hansen

[EMAIL PROTECTED]http://www.erikhansen.org

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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


Re: Synching Calendar Events Between Rev and Outlook

2006-01-26 Thread Ken Ray
On 1/26/06 6:05 PM, "Jim Carwardine" <[EMAIL PROTECTED]>
wrote:

> That's really great.  Thanks, Ken.  Can I imply from your post that this is
> a good way to communication with any MS Office app.  Would that include MS
> Project?... Jim

Yup - anything that responds to VB Scripting from the "outside" will work
with this approach.

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]

___
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: Addition-Elementary Style

2006-01-26 Thread kee nethery


On Jan 26, 2006, at 9:08 AM, Michael Mandaville wrote:

I just want thank everybody for their kind and considerate help.   
Don't

worry. I'm not going to ask about Long Division.  Whew!


Actually, I do have code that takes an arbitrarily long string of  
digits and divides it into another long string of digits for  
encryption. So when you need that code, just ask. And yes, it does  
long division exactly the way you do it with pencil and paper. It may  
be slow but it is extremely accurate which is kinda critical for  
encryption.


Kee Nethery
___
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: Synching Calendar Events Between Rev and Outlook

2006-01-26 Thread Jim Carwardine
That's really great.  Thanks, Ken.  Can I imply from your post that this is
a good way to communication with any MS Office app.  Would that include MS
Project?... Jim

on 1/25/06 10:29 PM, Ken Ray wrote:

> On 1/25/06 7:54 PM, "Jim Carwardine" <[EMAIL PROTECTED]>
> wrote:
> 
>> I'm building an app that has it's own calendar in it.  Is there a way to
>> access the Outlook database and synchronize events between my calendar and
>> Outlook?  Jim
> 
> Yes, you can use VB Script to communicate to Outlook; I have an example that
> works with Excel that you can adapt:
> 
> http://www.sonsothunder.com/devres/revolution/tips/iac001.htm
> 
> HTH,
> 
> Ken Ray
> Sons of Thunder Software
> Web site: http://www.sonsothunder.com/
> Email: [EMAIL PROTECTED]
> 
> ___
> 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

-- 

OYF is... Highly resourceful people working together.


Own Your Future Consulting Services Limited,
1959 Lower Water Street, Suite 1700, Halifax, Nova Scotia. B3J 3N2
Phone: 902-823-2339. Fax: 902-823-2139

What¹s New...

* Have you ever hired an employee who didn¹t work out?

* Did you do that on purpose?

Probably not...

If you want to greatly improve your hiring process,
 check out our new hiring process... www.HiringSmart.ca/ns

  and...
www.KeepingTheBest.ca/ns 





___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Terry Judd

From: Chipp Walters <[EMAIL PROTECTED]>
Date: 26 January 2006 8:54:44 PM GMT+11:00
To: Use-Revolution 
Subject: [ANN] New External Released from Altuit
Reply-To: [EMAIL PROTECTED], How to use Revolution 



Chipp, does altFont work even if the end user doesn't have 
administrator rights?


TIA Terry...

Hey folks, we're finally starting to get caught up and releasing some 
of our 2006 tools. The first is altFont external. There's a real nice 
website at:


http://www.altuit.com/webs/altuit2/altFontCover/default.htm

which explains it all. We've got special introductory pricing on this 
one, so if you want it, grab it now.


Partial Quote from the website:
"Embed your own custom fonts inside your application! Altuit's altFont 
externals work seamlessly to allow you to load and unload TrueType 
fonts at will from within Revolution. When loaded, these fonts are 
available to your Revolution standalone to use in any manner you like.


Now, for the first time, both Mac OSX and WinXP users can ship 
applications with custom TrueType fonts already installed!"


Full Quote from Scott Rossi:
"I just started using altFont and so far it is the answer to a long 
held
wish: to use my own fonts in projects without worrying about what's 
already loaded on the system."


Anyway, if you can stand all the huckstering, please check it out!

best,

Chipp

___
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: Addition-Elementary Style

2006-01-26 Thread Kay C Lan
On 1/27/06, Sarah Reichelt <[EMAIL PROTECTED]> wrote:
>
>
> Gmail has been putting some list emails in my Spam folder, but after
> marking them as "Not spam", I seemed to get them all.


Oh thank you, you're spot on. Mid Jan, 3 emails in my gmail spam folder.
Today, over a hundred and all of them valid List posts!!

Is this an indication that emails about Rev are becoming so prolific that
it's considered Spam;-)
___
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: Text in imageSource

2006-01-26 Thread Sarah Reichelt
> I am up for another half hour or so (until 8 pm thur your time)  Let me know
> if this technique is workable.
> Did you make any progress on your challenge?
> My guess is that the regEx is a bit slow for your use, now that I know you
> are doing 700 lines with 700 hits or more.
>
> Seems like you are sorting into categories (1-5) and that doing something
> like the following my work:
>
> My elapsed time is 3 ticks and the result is a midpoint  of having six
> variables each containing the same 'star.png' html string.  Should be easy
> to sort and combine these how you need it.
>  
>

Thanks to everybody for your suggestions. I've tested them all now,
Jacque's customSort and Jim's filter method take very similar times
but the quickest is Trevor's suggestion of making an extra hidden
column with the rating as a number so it can be sorted directly.

Thanks again for all your creative & generous ideas,
Sarah
___
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: differencing tools - slightly OT

2006-01-26 Thread Klaus Major

Hi Chris,


Thanks, Sarah.  That's a start anyway.  I'll check it out.
Chris


On Jan 26, 2006, at 1:36 PM, Sarah Reichelt wrote:


Does anyone have a good diff tool you use while working with Rev
stack files?  I'm looking for something that'll let me compare two
stacks and see the differences, and if possible, merge the two files
together.  It has to work with binary files, since the stacks will
have more than just the scripts changed.
An inexpensive solution would be preferable, of course, but all
suggestions are welcome.
I had to do this recently and I used Klaus Major's "Analyze it.."  
tool

to make text files listing all the components & scripts for each
stack, then used TextWrangler (a Mac text editor) to find the
differences.

The tool is available as part of Klaus's 2lz2 package on his web site



you can still download my "Analyze it..." tool as a separate file if  
you like.

Same URL.


You will have to make changes manually though.

Cheers,
Sarah


Thanks for the reference, Sarah :-)


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.com


Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
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: differencing tools - slightly OT

2006-01-26 Thread Chris Sheffield

Thanks, Sarah.  That's a start anyway.  I'll check it out.

Chris


On Jan 26, 2006, at 1:36 PM, Sarah Reichelt wrote:


Does anyone have a good diff tool you use while working with Rev
stack files?  I'm looking for something that'll let me compare two
stacks and see the differences, and if possible, merge the two files
together.  It has to work with binary files, since the stacks will
have more than just the scripts changed.

An inexpensive solution would be preferable, of course, but all
suggestions are welcome.



I had to do this recently and I used Klaus Major's "Analyze it.." tool
to make text files listing all the components & scripts for each
stack, then used TextWrangler (a Mac text editor) to find the
differences.

The tool is available as part of Klaus's 2lz2 package on his web site


You will have to make changes manually though.

Cheers,
Sarah
___
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




--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


Re: Your message to use-revolution awaits moderator approval

2006-01-26 Thread Jim Carwardine
Hi Moderator... I sent the email from an account that wasn't registered with
RevList.  It's really me... Jim

on 1/26/06 12:04 PM, [EMAIL PROTECTED] wrote:

> Your mail to 'use-revolution' with the subject
> 
>   Re: Synching Calendar Events Between Rev and Outlook
> 
> Is being held until the list moderator can review it for approval.
> 
> The reason it is being held:
> 
>   Post by non-member to a members-only list
> 
> Either the message will get posted to the list, or you will receive
> notification of the moderator's decision.  If you would like to cancel
> this posting, please visit the following URL:
> 
>   
> http://lists.runrev.com/mailman/confirm/use-revolution/26fcc3f171eec6636aecaee
> 3d72adfd6e891ee80

-- 

OYF is... Highly resourceful people working together.


Own Your Future Consulting Services Limited,
1959 Lower Water Street, Suite 1700, Halifax, Nova Scotia. B3J 3N2
Phone: 902-823-2339. Fax: 902-823-2139

What¹s New...

* Have you ever hired an employee who didn¹t work out?

* Did you do that on purpose?

Probably not...

If you want to greatly improve your hiring process,
 check out our new hiring process... www.HiringSmart.ca/ns

  and...
www.KeepingTheBest.ca/ns 





___
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: differencing tools - slightly OT

2006-01-26 Thread Sarah Reichelt
> Does anyone have a good diff tool you use while working with Rev
> stack files?  I'm looking for something that'll let me compare two
> stacks and see the differences, and if possible, merge the two files
> together.  It has to work with binary files, since the stacks will
> have more than just the scripts changed.
>
> An inexpensive solution would be preferable, of course, but all
> suggestions are welcome.
>

I had to do this recently and I used Klaus Major's "Analyze it.." tool
to make text files listing all the components & scripts for each
stack, then used TextWrangler (a Mac text editor) to find the
differences.

The tool is available as part of Klaus's 2lz2 package on his web site


You will have to make changes manually though.

Cheers,
Sarah
___
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: get setRegistry ?

2006-01-26 Thread Mark Wieder
Mark-

Wednesday, January 25, 2006, 1:31:07 PM, you wrote:

> Not trying to install vnc, it was the exact example of a setup I
> want to test for. Thanks for showing me the technique. 

Glad to be of help, but I'm still a bit confusified over here. If
you're just testing for a registry setting, shouldn't you be using
queryRegistry() instead?

-- 
-Mark Wieder
 [EMAIL PROTECTED]

___
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: Stack to Flash

2006-01-26 Thread David Bovill

On 26 Jan 2006, at 20:34, Pierre Sahores wrote:

Just tested the OpenLaszlo/Flash + Tomcat solution. Would be a fine  
alternative to ajax+rev was+postgresql solutions if the flash front- 
ends was'nt so slow to load inside the browser, if tomcat was'nt a  
java stuff...


Yes :)

___
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: Addition-Elementary Style

2006-01-26 Thread Sarah Reichelt
> P.S. sorry if someone has already stated this but for some reason I seem to
> missing a bunch of List post in the last couple of days. I know they've
> occured because people have quoted them, but I can't find them anywhere.
>
> Is it the List or gmail?

Gmail has been putting some list emails in my Spam folder, but after
marking them as "Not spam", I seemed to get them all.

Sarah
___
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: Stack to Flash

2006-01-26 Thread Pierre Sahores

Hi,

Just tested the OpenLaszlo/Flash + Tomcat solution. Would be a fine  
alternative to ajax+rev was+postgresql solutions if the flash front- 
ends was'nt so slow to load inside the browser, if tomcat was'nt a  
java stuff...


Regards,

Le 26 janv. 06 à 19:11, Pierre Sahores a écrit :


Thanks for the link, David ! Seems to be a first class framework...

Best,

Le 26 janv. 06 à 17:55, David Bovill a écrit :

There are some good open source libraries that dynamically build  
flash content, and then there is a whole open source web framework  
- http://www.openlaszlo.org/. I think you would be better using  
Rev to interface with these frameworks to generate flash movies  
than just scripting a parser. With openLazlo you should be able to  
do this real time.


--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

[EMAIL PROTECTED]
[EMAIL PROTECTED]

Mobile  :   +33 6 03 95 77 70
Tel/Fax :   +33 1 64 45 05 33



WEB/VoD/ACID-DB services over IP
"Mutualiser les deltas de productivité"




--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

[EMAIL PROTECTED]
[EMAIL PROTECTED]

Mobile  :   +33 6 03 95 77 70
Tel/Fax :   +33 1 64 45 05 33



WEB/VoD/ACID-DB services over IP
"Mutualiser les deltas de productivité"


___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Jerry Muelver

From: "Chipp Walters"


That being said, we currently do have a couple of externals for Linux

compiled and in testing. Just not altFont.

Like maybe (pant-pant...) altBrowser?

Or maybe I should go the other way, and push for a Revolution or DreamCard 
Player or StackRunner plug-in for FireFox


 Jerry Muelver


___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Chipp Walters

Thanks Malte,

While we are interested in supporting Linux, and have a few Linux 
projects in the works, it doesn't appear there's much demand for Linux 
externals. Up to now, we've only sold 2 copies of altSQLite for Linux. 
So, we'll add support Linux as we need it for our own projects, then 
gladly release products as we generate them.


That being said, we currently do have a couple of externals for Linux 
compiled and in testing. Just not altFont.


best,

Chipp

Malte Brill wrote:

Congrats Chip,

can´t wait to play with it after finishing the current job. Will it also 
work on Linux some day in the future?


___
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: Stack to Flash

2006-01-26 Thread Pierre Sahores

Thanks for the link, David ! Seems to be a first class framework...

Best,

Le 26 janv. 06 à 17:55, David Bovill a écrit :

There are some good open source libraries that dynamically build  
flash content, and then there is a whole open source web framework  
- http://www.openlaszlo.org/. I think you would be better using Rev  
to interface with these frameworks to generate flash movies than  
just scripting a parser. With openLazlo you should be able to do  
this real time.


On 26 Jan 2006, at 10:09, Pierre Sahores wrote:


Hi Takaaki,

Perhaps could you try to bind Rev and the ActionScript2 compiler  
 together to build a framework dedicated to  
this task. I had this in mind for months but no time to gohead  
with the work to do ;-!


Best,

Le 26 janv. 06 à 01:40, Takaaki Furukawa a écrit :



Wouldn't it be great if we could convert stacks (RR projects)
into Flash movies? Flash supports buttons and fields,
and the file format of Flash is open I believe. So I guess
it's not an infinitely difficult task. What do you say?

___
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



--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

[EMAIL PROTECTED]
[EMAIL PROTECTED]

Mobile  :   +33 6 03 95 77 70
Tel/Fax :   +33 1 64 45 05 33



WEB/VoD/ACID-DB services over IP
"Mutualiser les deltas de productivité"


___
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


differencing tools - slightly OT

2006-01-26 Thread Chris Sheffield
Does anyone have a good diff tool you use while working with Rev  
stack files?  I'm looking for something that'll let me compare two  
stacks and see the differences, and if possible, merge the two files  
together.  It has to work with binary files, since the stacks will  
have more than just the scripts changed.


An inexpensive solution would be preferable, of course, but all  
suggestions are welcome.


Thanks,
Chris


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


Re: Can the same stack be modified on both Mac and Windows computers?

2006-01-26 Thread Klaus Major

Hi Steve,

I'm creating a Revolution stack on the Macintosh and would like to  
transfer
the same stack and substack (not built as a standalone) to my  
Windows computer.
  Can I continue to modify the stack on Windows using the Windows  
version of
Revolution?   I presume that I will have to purchase the Windows  
version of
Revolution, but before doing so, would like to be sure if the same  
stack can be
modified on either computer.   Thanks very much to all for great  
advice.


you can edit ANY stack on ANY platform you have a license for.


Steve Goldberg


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
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


Can the same stack be modified on both Mac and Windows computers?

2006-01-26 Thread Stgoldberg
I'm creating a Revolution stack on the Macintosh and would like to transfer 
the same stack and substack (not built as a standalone) to my Windows computer. 
  Can I continue to modify the stack on Windows using the Windows version of 
Revolution?   I presume that I will have to purchase the Windows version of 
Revolution, but before doing so, would like to be sure if the same stack can be 
modified on either computer.   Thanks very much to all for great advice.
Steve Goldberg
___
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


Addition-Elementary Style

2006-01-26 Thread Michael Mandaville
I just want thank everybody for their kind and considerate help.  Don't
worry. I'm not going to ask about Long Division.  Whew!

Michael  



___
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: Rev CGIs and Secure Forms

2006-01-26 Thread Jerry Muelver

From: <[EMAIL PROTECTED]>
Mails seem to be going higglty pigglty (hope that is a world wide phrase) 
as

well.



No, it's not a universal cliche, but neither is catty-whumpus, dicey, or 
bass-ackwards, so we'll just have to make a huge leap of imagination and 
fantasize mail and email systems that could be somewhat suboptimal.


 Jerry Muelver 


___
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: Stack to Flash

2006-01-26 Thread David Bovill
There are some good open source libraries that dynamically build  
flash content, and then there is a whole open source web framework -  
http://www.openlaszlo.org/. I think you would be better using Rev to  
interface with these frameworks to generate flash movies than just  
scripting a parser. With openLazlo you should be able to do this real  
time.


On 26 Jan 2006, at 10:09, Pierre Sahores wrote:


Hi Takaaki,

Perhaps could you try to bind Rev and the ActionScript2 compiler  
 together to build a framework dedicated to  
this task. I had this in mind for months but no time to gohead with  
the work to do ;-!


Best,

Le 26 janv. 06 à 01:40, Takaaki Furukawa a écrit :



Wouldn't it be great if we could convert stacks (RR projects)
into Flash movies? Flash supports buttons and fields,
and the file format of Flash is open I believe. So I guess
it's not an infinitely difficult task. What do you say?

___
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: nested ifs

2006-01-26 Thread Rob Cozens

Hi Chipp,


I like to do the following:

if tResult is "Error" then
  answer "Go Ahead anyway" with "Cancel" or "OK"
  if it is "Cancel" then exit to top
end if

Most of the time it compiles, but sometimes the single line if 
statement in the middle throws and error and won't compile


I, like others, have encountered such errors; however in my case it 
is _always_ caused by an imbalance of "ifs" & "end ifs" in my 
handler, not the compiler having an off day.


A one-line if ("if" a = b then doSomething2") placed _immediately_ 
before an "else" that applies to a different "if" (in this example, 
"if x> y then") will cause the compiler to choke.


Drawing on Brian's example, but scripted as I might

If x > y then
doSomething1
if a = b then doSomething2
else doSomething3

fails; but

If x > y then
doSomething1
if a = b then
   doSomething2
 end if
else doSomething3

and

If x > y then
doSomething1
if a = b then doSomething2
doSomethingElse -- whether or not a = b
else doSomething3

both will compile.

Rob Cozens CCW
Serendipity Software Company

"And I, which was two fooles, do so grow three;
 Who are a little wise, the best fooles bee."

 from "The Triple Foole" by John Donne (1572-1631)

___
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: get setRegistry ?

2006-01-26 Thread Mark Brownell
>Mark-
>
>Tuesday, January 24, 2006, 9:32:25 AM, you wrote:
>
>> Anyone know how to write the (get setRegistry) registration below in 
>> Transcript?
>
>> [HKEY_CLASSES_ROOT\vnc]
>> @="URL:VNC Protocol"
>> "URL Protocol"="http://www.realvnc.com/";
>
>> [HKEY_CLASSES_ROOT\vnc\DefaultIcon]
>> @="C:\\Program Files\\RealVNC\\WinVNC\\winvnc.exe,0"
>
>> [HKEY_CLASSES_ROOT\vnc\shell]
>
>> [HKEY_CLASSES_ROOT\vnc\shell\open]
>
>> [HKEY_CLASSES_ROOT\vnc\shell\open\command]
>> @="C:\\Program Files\\RealVNC\\WinVNC\\winvnc.exe -connect %1"
>
>Not really sure what you're trying to accomplish here (installing vnc
>server on the fly, perhaps? otherwise, shouldn't installing vnc server
>do this for you?), but I think what you're looking for is...
>
>get setRegistry("HKEY_CLASSES_ROOT\vnc\", \
>"URL:VNC Protocol")
>
>get setRegistry("HKEY_CLASSES_ROOT\vnc\URL Protocol", \
>"http://www.realvnc.com/";)
>
>get setRegistry("HKEY_CLASSES_ROOT\vnc\DefaultIcon\" \
>"C:\\Program Files\\RealVNC\\WinVNC\\winvnc.exe,0"
>
>get setRegistry("HKEY_CLASSES_ROOT\vnc\shell\open\command\", \
>"C:\Program Files\RealVNC\WinVNC\winvnc.exe -connect %1")
>
>BTW: I find tightvnc to be superior to realvnc in both speed and
>flexibility of options...
>
>-- 
>-Mark Wieder
> [EMAIL PROTECTED]


Not trying to install vnc, it was the exact example of a setup I want to test 
for. Thanks for showing me the technique. 

Mark
___
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


File/Picture Chooser Widgets for Windows XP/2000 - Stable or still Beta?

2006-01-26 Thread Bob Warren

Dear Windows XP/2000 Users,

When I offered Test Pack #2 of these Widgets to the community a little 
while back, I soon discovered that although the widgets worked perfectly 
on my own machines, some users had trouble during program 
initialization, and certain alterable parameters (such as the size and 
position of the widgets) were not actioned correctly.


In an attempt to diagnose the cause of the problem, I passed a copy of 
the file chooser widget stack to a member of the community having this 
trouble, but unfortunately I have so far not received any kind of 
further feedback.


However, I think I know what the cause of this problem might have been, 
but of course I need to be absolutely sure, so I am counting on your 
help once again to do a quick test for me on your machines. If no 
further trouble is reported, then I can pass the widgets from "beta" to 
"stable" status, and you can safely use the widgets in your applications 
if you wish.


Test Pack #4 is available at http://www.howsoft.com/runrev/stacks.htm .
IF YOU ARE ONE OF THOSE WHO HAD TROUBLE ON THE FIRST OCCASION, please 
try this new version. If there are any problems, either send me a bug 
report using the PHP form on this very page (see "Report a BUG" on the 
left hand side), or if you prefer please communicate with me directly at 
[EMAIL PROTECTED] .


Thanks very much.

Regards,
Bob

___
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: Rev CGIs and Secure Forms

2006-01-26 Thread rev

Quoting Kay C Lan <[EMAIL PROTECTED]>:


On Jan 25, 2006, at 9:43 AM, Gregory Lypny wrote:

> Hi Everyone,
>
>   I posted this a few days ago but didn't see any replies or perhaps
> missed them.  I'm taking another kick at the cat just in case.




If it makes you feel any better I seem to be missing a whole bunch of post
to the List over the last 3 days. I couldn't find the above post at all. I'm
not sure if it is the List, or in my case, gmail. :-(


Just to let you all know that there have been some problems in 2 sites in the
states for the last two weeks. I cant remember what the problem is but someoen
more knowledgeable than me mentioned what it was. Various places have had
problems getting to sites that I could reach from Sunny Scotland and vice
versa.

Mails seem to be going higglty pigglty (hope that is a world wide phrase) as
well.

All the best
Bob

___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Klaus Major

Hi Chipp,

Hey folks, we're finally starting to get caught up and releasing  
some of our 2006 tools. The first is altFont external. There's a  
real nice website at:


http://www.altuit.com/webs/altuit2/altFontCover/default.htm

which explains it all. We've got special introductory pricing on  
this one, so if you want it, grab it now.


Partial Quote from the website:
"Embed your own custom fonts inside your application! Altuit's  
altFont externals work seamlessly to allow you to load and unload  
TrueType fonts at will from within Revolution. When loaded, these  
fonts are available to your Revolution standalone to use in any  
manner you like.


Now, for the first time, both Mac OSX and WinXP users can ship  
applications with custom TrueType fonts already installed!"


Full Quote from Scott Rossi:
"I just started using altFont and so far it is the answer to a long  
held
wish: to use my own fonts in projects without worrying about what's  
already loaded on the system."


Anyway, if you can stand all the huckstering, please check it out!


way cool!

Although i do not need (and actually can't afford) it in the moment,  
i'm sure gonna buy it :-)



best,

Chipp


Keep on the very good work!


Best from germany

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


P.S.
And (thanks to LEO) i learned a new word: huckster :-D

___
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: Rev CGIs and Secure Forms

2006-01-26 Thread Kay C Lan
> On Jan 25, 2006, at 9:43 AM, Gregory Lypny wrote:
>
> > Hi Everyone,
> >
> >   I posted this a few days ago but didn't see any replies or perhaps
> > missed them.  I'm taking another kick at the cat just in case.



If it makes you feel any better I seem to be missing a whole bunch of post
to the List over the last 3 days. I couldn't find the above post at all. I'm
not sure if it is the List, or in my case, gmail. :-(
___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Ken Ray
On 1/26/06 3:54 AM, "Chipp Walters" <[EMAIL PROTECTED]> wrote:

> Hey folks, we're finally starting to get caught up and releasing some of
> our 2006 tools. The first is altFont external. There's a real nice
> website at:
> 
> http://www.altuit.com/webs/altuit2/altFontCover/default.htm

Congratulations, Chipp! Looks great!

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]

___
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: Addition-Elementary Style

2006-01-26 Thread Kay C Lan
> Michael Mandaville wrote:
>
> > Add field Timeneed + Effort + People [etc.,] and put into field Total
> >
> >
> > I have searched the documentation and tried a dozen syntaxes but
> > can't seem to get something as fundamental to work.



Eric's solution is the way to go, but just so you know the syntax you were
looking for:

put field "Timeneed" + field "Effort" + field [etc..] into field "Total"

HTH
P.S. sorry if someone has already stated this but for some reason I seem to
missing a bunch of List post in the last couple of days. I know they've
occured because people have quoted them, but I can't find them anywhere.

Is it the List or gmail?
___
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: nested ifs

2006-01-26 Thread Dennis Brown
I have resolved to make all my If statements to only 3 forms for  
consistency:


IF condition THEN statement ELSE statement

IF condition
THEN statement
ELSE statement

IF condition
THEN
statements
ELSE
statements
END IF

Now if I could just get the complier to resolve only from these  
choices, my nested ifs would always work.


The problem is that the compiler allows too many forms, and mixing of  
forms.
The compiler does not prioritize by form type which can lead to not  
always accepting a valid form.


Example 1 below is a valid form.
Example 2 would be mixing two forms in the same if statement.
It is not a valid interpretation in any case without adding another  
end if.

Therefore, the compiler should pick example 1

If the compiler treated lines like parens for ifs, then it could also  
do a better job resolving these correctly.


Dennis

On Jan 25, 2006, at 11:02 PM, Brian Yennie wrote:


Dave, Chipp, et al.

Consider that the following snippet is actually ambiguous. Notice  
two different formatting passes at exactly the same code. Now, of  
course, the first formatting actually resolves to valid code, while  
the second one is one "end if" short -- but who is the compiler to  
say which one you intended?


Well, that's my theory anyway - you can't actually determine which  
"if" matches matches which "else" and  "end if".


1)
If x > y then
doSomething1
if a = be then doSomething2 ##problem here
else
doSomethng3
end if

2)
If x > y then
doSomething1
if a = be then doSomething2 ##problem here
else
doSomethng3
end if

___
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: [ANN] New External Released from Altuit

2006-01-26 Thread Malte Brill

Congrats Chip,

can´t wait to play with it after finishing the current job. Will it 
also work on Linux some day in the future?


All the best,

Malte
___
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


[ANN] New External Released from Altuit

2006-01-26 Thread Chipp Walters
Hey folks, we're finally starting to get caught up and releasing some of 
our 2006 tools. The first is altFont external. There's a real nice 
website at:


http://www.altuit.com/webs/altuit2/altFontCover/default.htm

which explains it all. We've got special introductory pricing on this 
one, so if you want it, grab it now.


Partial Quote from the website:
"Embed your own custom fonts inside your application! Altuit's altFont 
externals work seamlessly to allow you to load and unload TrueType fonts 
at will from within Revolution. When loaded, these fonts are available 
to your Revolution standalone to use in any manner you like.


Now, for the first time, both Mac OSX and WinXP users can ship 
applications with custom TrueType fonts already installed!"


Full Quote from Scott Rossi:
"I just started using altFont and so far it is the answer to a long held
wish: to use my own fonts in projects without worrying about what's 
already loaded on the system."


Anyway, if you can stand all the huckstering, please check it out!

best,

Chipp

___
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: Text in imageSource

2006-01-26 Thread Jim Ault
On 1/26/06 1:23 AM, "Jim Ault" <[EMAIL PROTECTED]> wrote:

> My elapsed time is 3 ticks and the result is a midpoint  of having six
> variables each containing the same 'star.png' html string.  Should be easy
> to sort and combine these how you need it.
Update:
Actually, if I don't include the time it takes my example script to build
the 700+ lines, the filtering only takes 

one tick!  ... that's right, Rev can do all that filtering and variable
assignment in less than 2 ticks.

Sorta makes you want to build some useful software that relies heavily on
the filter command, eh?

Jim Ault
Las Vegas
Mac OSX 10.4.2  Rev 2.6.1  G5 dual 2.0

original script below   
> 
> 
> on testt
>   put the ticks into startt
>   --building the 700+ lines to work with below
>   repeat until the number of lines in wholeThang > 700
> put cr&" ">" after of
> wholeThang
> put cr&" ">" after of
> wholeThang
> put cr&" ">" after of
> wholeThang
> put cr&" ">" after of
> wholeThang
>   end repeat
>   
>   --parsing to get 6 groups then doing a count
>   put wholeThang into grp5
>   filter grp5 with "*star*star*star*star*star*"  -- 5
>   filter wholeThang without "*star*star*star*star*star*"
>   put wholeThang into grp4
>   filter grp4 with "*star*star*star*star*"  -- 4
>   filter wholeThang without "*star*star*star*star*"
>   put wholeThang into grp3
>   filter grp3 with "*star*star*star*"  -- 3
>   filter wholeThang without "*star*star*star*"
>   put wholeThang into grp2
>   filter grp2 with "*star*star*"  -- 2
>   filter wholeThang without "*star*star*"
>   put wholeThang into grp1
>   filter grp1 with "*star*"  -- 1
>   filter wholeThang without "*star*"
>   put wholeThang into grp0
>   
>   repeat with x = 0 to 5
> do "get the number of lines in grp"&x
> put ( it & " ["&x&"]" & cr) after output
>   end repeat
>   answer output &cr & (the ticks - startt) & " ticks elapsed"
>   breakpoint
> end testt



___
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: Text in imageSource

2006-01-26 Thread Jim Ault
Hi Sarah,

I am up for another half hour or so (until 8 pm thur your time)  Let me know
if this technique is workable.
Did you make any progress on your challenge?
My guess is that the regEx is a bit slow for your use, now that I know you
are doing 700 lines with 700 hits or more.

Seems like you are sorting into categories (1-5) and that doing something
like the following my work:

My elapsed time is 3 ticks and the result is a midpoint  of having six
variables each containing the same 'star.png' html string.  Should be easy
to sort and combine these how you need it.
 

on testt
  put the ticks into startt
  --building the 700+ lines to work with below
  repeat until the number of lines in wholeThang > 700
put cr&"" after of
wholeThang
put cr&"" after of
wholeThang
put cr&"" after of
wholeThang
put cr&"" after of
wholeThang
  end repeat
  
  --parsing to get 6 groups then doing a count
  put wholeThang into grp5
  filter grp5 with "*star*star*star*star*star*"  -- 5
  filter wholeThang without "*star*star*star*star*star*"
  put wholeThang into grp4
  filter grp4 with "*star*star*star*star*"  -- 4
  filter wholeThang without "*star*star*star*star*"
  put wholeThang into grp3
  filter grp3 with "*star*star*star*"  -- 3
  filter wholeThang without "*star*star*star*"
  put wholeThang into grp2
  filter grp2 with "*star*star*"  -- 2
  filter wholeThang without "*star*star*"
  put wholeThang into grp1
  filter grp1 with "*star*"  -- 1
  filter wholeThang without "*star*"
  put wholeThang into grp0
  
  repeat with x = 0 to 5
do "get the number of lines in grp"&x
put ( it & " ["&x&"]" & cr) after output
  end repeat
  answer output &cr & (the ticks - startt) & " ticks elapsed"
  breakpoint
end testt

Jim Ault
Las Vegas


On 1/25/06 10:58 PM, "Sarah Reichelt" <[EMAIL PROTECTED]> wrote:

>> I had a field that would allow users to record their voices when they pressed
>> on a "0" and play their recording when the pressed on a ">" [I did this
>> because there were varying numbers of lines...long story]
>> 
>> Later I wanted to put an image there to make it more understandable to the
>> user--I set the imagesource of that character.
>> 
>> Here's the part that's interesting for you. When I moved my cursor over the
>> image, the script reacted as though the characters were still there.
>> 
>> So... for your ranking field, put numbers for rank and then run a script that
>> sets the imagedata of those characters. You should still be able to sort the
>> field because the numbers still exist.
>> 
> 
> If I do it that way, the sort works perfectly, but it is too slow for
> the initial display. It takes about 20 seconds to do 700 lines this
> way, where using the htmlText method on a variable and then putting it
> all in the field takes less than 1 second.
> 
> I am currently using the hidden column method, but I'll try Jacque's
> custom sort. I always forget about those but they can be really
> powerful.
> 
> Thanks,
> Sarah
> ___
> 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


Table Modification

2006-01-26 Thread Geoff Canyon
Bill Vlahos and I were having dinner when the subject of tables came  
up. We agreed that it would be nice to have a way to limit the number  
of columns in the Rev table object. Between finishing the food and  
paying the check we hacked this together. It's not the most elegant  
solution, but it seems to work.


First, note that this involves hacking the Revolution frontscript  
that controls tables, so take that as a caution. I take no  
responsibility if this causes damage. Make a backup of the  
development environment before trying this. Don't work on any of your  
critical projects until you're confident this is working correctly.  
Wear a grounding strap while performing this procedure. Remember to  
wear something warm, and pack a lunch.


1. Open the message box.
2. Click on the frontscripts button
3. If it isn't already, check "Show Revolution UI Frontscripts"
4. Click revTable.
5. Click the Edit Script button.
6. In the script, locate the revMoveCellRight handler.
7. Insert the following code at the beginning of the handler:

  if the cREVTable["maxColumnCount"] of lObject is a number \
  and the cREVTable["currentxcell"] of lObject \
  >= the cREVTable["maxColumnCount"] of lObject then
lock screen
repeat the cREVTable["currentxcell"] of lObject - 1
  revMoveCellLeft
end repeat
revMoveCellDown
unlock screen
exit revMoveCellRight
  end if

It should look like this when you're done:

on revMoveCellRight
  if the cREVTable["maxColumnCount"] of lObject is a number \
  and the cREVTable["currentxcell"] of lObject \
  >= the cREVTable["maxColumnCount"] of lObject then
lock screen
repeat the cREVTable["currentxcell"] of lObject - 1
  revMoveCellLeft
end repeat
revMoveCellDown
unlock screen
exit revMoveCellRight
  end if
  lock screen

etc.

8. Locate the revCalculateCellLoc handler.
9. Insert the following code before the last two lines of the handler:

  if the cREVTable["maxColumnCount"] of pObject is a number then
put min(the cREVTable["maxColumnCount"] of pObject,txcount) into  
txcount

  end if

It should look like this when you're done:

end repeat
  end if

   if the cREVTable["maxColumnCount"] of pObject is a number then
put min(the cREVTable["maxColumnCount"] of pObject,txcount) into  
txcount

  end if
  set the cREVTable["currentxcell"] of pObject to txcount
  set the cREVTable["currentycell"] of pObject to tycount
end revCalculateCellLoc

10. Save and close the script and you're ready to try it out.
11. Drag a table object onto a card. It should behave  
indistinguishably from other tables.
12. If you haven't already, check the Revolution UI Elements in Lists  
menu item.

13. Open the custom properties panel for the table.
14. Select cREVTable on the menu set dropdown.
15. Click the New Custom Property button.
16. Name the custom property "maxColumnCount"
17. Set the new custom property to whatever number of columns you like.
18. Close the properties dialog, and you're set.

You should notice two difference in the table. First, if you tab or  
arrow key to the right, when you reach the specified number of  
columns, the entry field will wrap back to the left, one row lower.  
Second, if you click anywhere on the table to the right of its  
maximum column, you should see the entry field appear over the  
rightmost valid entry.


Note that these effects only take place if you set the maxColumnCount  
property in the cRevTable property set. If it is empty, nothing happens.


To make your changes permanent, save the revLibrary stack. This in  
the message box will do the trick:


  save stack "revLibrary"

That's it! You'll have to make the changes again after upgrading to a  
new version of the environment.


regards,

Geoff
___
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: Stack to Flash

2006-01-26 Thread Pierre Sahores

Hi Takaaki,

Perhaps could you try to bind Rev and the ActionScript2 compiler  
 together to build a framework dedicated to  
this task. I had this in mind for months but no time to gohead with  
the work to do ;-!


Best,

Le 26 janv. 06 à 01:40, Takaaki Furukawa a écrit :


Wouldn't it be great if we could convert stacks (RR projects)
into Flash movies? Flash supports buttons and fields,
and the file format of Flash is open I believe. So I guess
it's not an infinitely difficult task. What do you say?

--
GANBARE! NIPPON!
Yahoo! JAPAN JOC OFFICIAL INTERNET PORTAL SITE PARTNER
http://pr.mail.yahoo.co.jp/ganbare-nippon/
___
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



--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

[EMAIL PROTECTED]
[EMAIL PROTECTED]

Mobile  :   +33 6 03 95 77 70
Tel/Fax :   +33 1 64 45 05 33



WEB/VoD/ACID-DB services over IP
"Mutualiser les deltas de productivité"


___
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: Phomenes

2006-01-26 Thread Richard Gaskin

Thomas McCarthy wrote:
> I remember that SuperCard had a text to speech phomene editor.
> Does Rev have that capability he asks hopefully

I wrote SuperCard's Phoneme Editor under contract with Allegiant -- glad 
you found it useful.


As a Mac-only tool, SuperCard can rely on Mac-specific features to a 
degree that is difficult to do in Rev without annoying someone.  If they 
put too much into something for one platform, folks using another wonder 
why their pet feature isn't there.


With TTS, Rev currently implements that as an external, one which 
attempts to provide a useful common interface for the TTS engines on Mac 
and Windows.  But under the hood the two APIs are quite different, so 
it's a bit of a "lowest common denominator" implementation.  While Mac 
OS provides a relatively straightforward way to output textual phoneme 
descriptions rather than audio, I'm not sure the Win API does that at 
all, and if they do I'm somewhat confident it's different enough to be 
some work to add that.


Short form:  Phoneme support isn't in there yet, but I agree it can be 
very helpful for those who use Rev's TTS external, certainly worth 
submitting an enhancement request to Bugzilla for it:



On balance, however, I'll warn you in advance:  the number of people who 
use TTS in Rev-based apps is relatively small, so I wouldn't hold your 
breath for expansion of its capabilities just yet.


Maybe someone on this list with a good head for writing Mac externals 
and some time on his hands could whip up a solution in the meantime?


--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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


Phomenes

2006-01-26 Thread Thomas McCarthy

I remember that SuperCard had a text to speech phomene editor. Does Rev have 
that capability he asks hopefully

tm

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


___
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