login

2006-04-01 Thread liamlambert
The login that I need is just to keep a log of who was useing the software the date time , and only to let the registered people use the software Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list

login

2006-03-31 Thread liamlambert
I was wondering what is the best way to go about building a login for an app or is there an example out there I could have a look at. thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com

objCalendar_v1.1.2.rev

2006-03-28 Thread liamlambert
Thanks Karen got it working Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

objCalendar_v1.1.2.rev

2006-03-27 Thread liamlambert
I am getting a error when clicking next month with Shao Sean's calendar object any ides what I'am doing wrong? Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

clipboard

2006-03-26 Thread liamlambert
Is there a way to use the clipboardData property to paste into a fld automatically when the clipboard is up dated Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to

UpDate Db

2006-03-24 Thread liamlambert
Ruslan Thank You. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

UpDate Db

2006-03-24 Thread liamlambert
global gConID put fld bookingid into tbooking put UPDATE Booking SET ticket = 'no' WHERE BookingId = 8 into tSQLbooking -- EXECUTE SQL put revdb_execute(gConID,tSQLbooking) This works fine but if I want to use a variable in stead of 8 what is the syntaxes Liam Lambert [EMAIL

upDate data

2006-03-24 Thread liamlambert
This works code works fine but if I want to use a variable in stead of 8 can I do this I could not find any reference to it any where or is there an other way of up dating a column global gConID put fld bookingid into tbooking put UPDATE Booking SET ticket = 'no' WHERE BookingId = 8

upDate data

2006-03-24 Thread liamlambert
What I want to do is to change Column ticket to where BookingId = tbookingID and change Column ticket to NO what I am getting is changing column ticket to where column ticket = NO Liam Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution

numberFormat

2006-03-22 Thread liamlambert
I have this bit of code the numberFormat is not giving me two zeros after the decimal point Why ??? thanks in advance global gConID get fld showid put it into tshowid set the numberFormat to #0.00 put SELECT sum (child) FROM Booking where showid = ' tshowid ' into tChild put

numberFormat

2006-03-22 Thread liamlambert
Thanks Chipp Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

switch

2006-03-18 Thread liamlambert
what am I doing wrong here put fld total into ttotal put fld paymenttype into tpayment switch tpayment case credit if tpayment contains credit then put ttotal into fld CreditDb exit switch case cash if tpayment contains cash then put ttotal into fld cash2 exit switch end switch Liam

switch

2006-03-18 Thread liamlambert
Thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Report Builder

2006-03-17 Thread liamlambert
How do I add Report Builder to the tool menu in 2.7 It is there in a file ToolSet but does not show up in the tool menu thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

add main stack

2006-03-15 Thread liamlambert
I have a stack Booking which is the main stack, I want to add a stack Welcome which will be the main stack and the stack Booking be a sub stack of welcome How do I do this Thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list

add main stack

2006-03-15 Thread liamlambert
That is what I thought but when I try this it does not work the stacks revert to what they were I had done this before when I had dreamcard but now I am using studio Is this a bug Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list

add main stack

2006-03-15 Thread liamlambert
Just tried it in dreamcard worked fine not in studio Liam On 3/16/06, liamlambert liamlambert at mac.com wrote: That is what I thought but when I try this it does not work the stacks revert to what they were I had done this before when I had dreamcard but now I am using studio Is this a bug

random

2006-03-12 Thread liamlambert
I have this code for a random number in 6 fld's how do I stop the same number form appearing in more then one fld put 1a,2a,3a,4a,5a,6a into tFieldNames repeat for each item tfield in tFieldNames put the random of 45 into trandom put trandom into fld tfield end repeat Liam Lambert [EMAIL

importing list

2006-03-09 Thread liamlambert
Just a note to say thank you all I got it all working I was downloading database info from a web site 5000 files and filtering out a lot of info I did not need just leaving the address and some other info with help from this list I got it done in 6 hours and then printing them out on labels

importing list

2006-03-08 Thread liamlambert
I have a large amount of plane text files that are laid out like this Below Name: Roll Number: Address: Principal/Director: Phone: Fax: Email: Website: Female Enrolment: Male Enrolment: Type: Primary I want to import the info that is after the colon into fields of the same name

filter list

2006-03-08 Thread liamlambert
I find my self answering my own question here I thought I would remove what I did not need and replace with a tab so I could use it in a dataBase this works but how do I put a return after the last entry on mouseUp FilterText end mouseUp on FilterText put the htmlText of field Text

filter list

2006-03-08 Thread liamlambert
That puts one cr after all the entries there are many entries I have a large amount of plane text files that are laid out like this Below If the list below is one entry there are 100's of entries Name: Roll Number: Address: Principal/Director: Phone: Fax: Email: Website: Female

importing list

2006-03-08 Thread liamlambert
Devin Thanks This is part of what I Wanted to do The rest was filtering out data which I have working Thank You. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

repeat repeat

2006-03-01 Thread liamlambert
My fld seatNo has more than one line or item I want to repeat the code below for each line or item on mouseUp put fld seatNo into tseatNo repeat with x = 1 to the number of buttons if tseatNo = the label of button x then set the backgroundcolor of button x to red end if end

clickLine

2006-01-25 Thread liamlambert
I have a pice of code set itemdel to tab select the clickLine put the item 1 of the clickLine into tuserID put tuserID into fld field which returns say line 6 of field 1 I want to find line 6 of field 2 how thanks Liam Lambert [EMAIL PROTECTED] IRELAND

clickLine

2006-01-25 Thread liamlambert
I got this to work is this the best Way set itemdel to tab select the clickLine put the item 1 of the clickLine into tuserID set itemdel to space get item 2 of tuserID put it into tlineNO select line tlineNo of field bookinglist Liam Lambert [EMAIL PROTECTED] IRELAND

case Sensitive

2006-01-22 Thread liamlambert
In order to solve the problem of case sensitive I would like to do something like this but there is something not right here put a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z into tLowerCase put A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z into tUpperCase get char 1 of

case Sensitive

2006-01-22 Thread liamlambert
yes toUpper is the way to do if I had not come across that one. Thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

yet another repeat

2006-01-21 Thread liamlambert
Thank you Sarah That was just what I needed. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

case Sensitive

2006-01-21 Thread liamlambert
I have a search stack that searches an SQLlite database the database is case sensitive does anyone know of a way around this setting the set the caseSensitive to false does not work Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution

yet another repeat

2006-01-20 Thread liamlambert
I would like to put the costumer detales into the fields userID,name,Phone.ect with a repeat command but am stuck here get fld showID put it into tshowID put SELECT userID,name,phone,address,address1,address,email,showID FROM costumer WHERE SHOWID = ' tshowID ' into tSQLCostm

Refer to button in group

2006-01-19 Thread liamlambert
IF the referred buttons are radiobuttons! :-) liamlambert wrote: I want to check the state of a button from outside the group How do I refer to a button in the group best, Chipp Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use

Refer to button in group

2006-01-19 Thread liamlambert
:-) Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Refer to button in group

2006-01-18 Thread liamlambert
I want to check the state of a button from outside the group How do I refer to a button in the group the (group id 1053 ) is on mouseUp if button cash is true then put fld total into fld cashTotal end if end mouseUP Thanks ee Liam Lambert [EMAIL PROTECTED] IRELAND

Refer to button in group

2006-01-18 Thread liamlambert
Thanks I won't say anything about the JOKE Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Refer to button in group

2006-01-18 Thread liamlambert
:-) Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

NumberFormat

2006-01-17 Thread liamlambert
Hi all I am calling a col total from a data Base and not getting the right format Say the Total is 100.50 I am getting 100.5 this is the code set the numberFormat to 00.00 get fld showid put it into tshowid put SELECT sum (total) FROM showDb where showid = ' tshowid ' into tTotal

NumberFormat

2006-01-17 Thread liamlambert
Thank's * 2 Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

repeat with

2006-01-13 Thread liamlambert
There is still a problem with this I tried the text of field tField but no luck put name1,phone,child,adult,total,credit,paymenttype,address,address1,addre ss2,email,seatNo,ticket,showID into tFieldNames repeat for each item tField in tFieldNames put ' cleanSQL(field tField) ' , after

repeat with

2006-01-13 Thread liamlambert
There is nothing going into the Db The rest of the script is fine when I put the items into the Db one at time they go in. I am not getting any errors back. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list

repeat with

2006-01-13 Thread liamlambert
I have not set the itemDel on fSave global gConID if fld total is empty then answer error THERE IS NO TOTAL as sheet exit to top end if put name1,phone,child,adult,total,credit,paymenttype,address,address1,addre ss2,email,seatNo,ticket,showID into tFieldNames repeat for each

repeat with

2006-01-13 Thread liamlambert
That's not it Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

repeat with

2006-01-13 Thread liamlambert
That sorted it out and thought me a lot as well. Thank you very much Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

repeat with

2006-01-13 Thread liamlambert
These are the sort of challenges I enjoy. Thank Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

stopping Handlers

2006-01-12 Thread liamlambert
Hi all I have this script in a button which calls three handlers the if statement checks the fld for the card number was filled in if it was not I want to stop calling the fsave and the fTotalSeats Handlers on mouseUp if fld paymenttype = credit card then fcredit fSave TotalSeats end

stopping Handlers

2006-01-12 Thread liamlambert
Hi all on mouseUp if fld paymenttype = credit card then fcredit --fcredit the card number was filled in fSave TotalSeats end mouseUp on fCredit if fld credit = then answer NO CREDIT CARD NUMBER if it answers then I want it to stop end fCredit Thank's Liam

[ANN] Audio Waveform display

2006-01-12 Thread liamlambert
Well done Mark This will get a lot of us thinking. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

stopping Handlers

2006-01-12 Thread liamlambert
Thank you all Have it working coming back to screen Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

repeat with

2006-01-12 Thread liamlambert
I am trying to tidy up this code with repeat but haveing trubble This works fine get field name1 put ' cleanSQL(it) ' , after tRowData get field phone put ' cleanSQL(it) ' , after tRowData get field child put ' cleanSQL(it) ' , after tRowData get field adult put '

repeat with

2006-01-12 Thread liamlambert
Thank you Ken that worked Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

[ANN] Audio Waveform display

2006-01-12 Thread liamlambert
Nice one Mark 20 out of 10 Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

audio wave form

2006-01-11 Thread liamlambert
I found this site with different standers http:// preserve.harvard.edu/standards/ Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

audio wave form

2006-01-10 Thread liamlambert
Is it possible display the audio wave form in rev Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Serial communication

2006-01-09 Thread liamlambert
Try this stack from http://www.troz.net/Rev/tutorials.html from sarah's page. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Is it posable to do this as a card script

2005-12-16 Thread liamlambert
I am building stack for cueing quicktime movies to a projector I want a number of thumbnail players showing that you drag and drop the .mov into and when you click the thumbnail player it lodes the movie into the main player stack . I have this working with the script below in each

Is it posable to do this as a card script

2005-12-16 Thread liamlambert
yes I know I must that is why I asked but how do I refer to each player Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Is it posable to do this as a card script

2005-12-16 Thread liamlambert
Thank you Eric yes I get it, on mouseUp if peg is in short name of the target then snip put last char of tPeg into N etc. That Large Dinner I just had slowed my brain down. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing

Full Screen for presentations

2005-12-14 Thread liamlambert
I am looking for a way to have a stack go to full screen for a presentation thanks Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

(no subject)

2005-12-13 Thread liamlambert
Is there any way to control video out from rev i.e. write to a projector. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

video out put

2005-12-13 Thread liamlambert
sorry I forgot subject in pre message. Is there any way to control video out from rev i.e. write to a projector. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to

video output

2005-12-13 Thread liamlambert
Yes I am on a mac. thanks for that. Liam On Dec 13, 2005, at 7:44 AM, liamlambert wrote: sorry I forgot subject in pre message. Is there any way to control video out from rev i.e. write to a projector. Not sure what platform but on a Mac, this has nothing to do with Runrev. But if you had

(no subject)

2005-12-12 Thread liamlambert
I wonder if anyone has used rev with DMX for stage Lighting. I am interested in using it of this product if posable any advice would greatly be appreciated. Liam Lambert [EMAIL PROTECTED] IRELAND ___ use-revolution mailing list

DMX Stage lighting

2005-12-12 Thread liamlambert
I posted this again I forgot the subject I wonder if anyone has used rev with DMX for stage Lighting. I am interested in using it of this product if posable any advice would greatly be appreciated. Liam Lambert [EMAIL PROTECTED] IRELAND ___

[ANN] SERVICE USB Plus Drives Real World Device Control with Runtime Revolution

2005-12-09 Thread liamlambert
Carbon (via Framework) MaxMSP (via driver) LabView (via virtual instrument) DirectorMX (via Xtra) 4th Dimension (external) It is an external This is really great move forward for rev in my book. Liam liamlambert [EMAIL PROTECTED] ___ use-revolution mailing

[ANN] SERVICE USB Plus Drives Real World Device Control with Runtime Revolution

2005-12-09 Thread liamlambert
http://www.bkohg.com/ liamlambert [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

[ANN] SERVICE USB Plus Drives Real World Device Control with Runtime Revolution

2005-12-09 Thread liamlambert
://www.bkohg.com/ liamlambert liamlambert at mac.com -- stephen barncard s a n f r a n c i s c o - - - - - - - - - - - - liamlambert [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

VU meter

2005-12-08 Thread liamlambert
That is great Thank you Scott. Any time I have posted on this list people have come up trumps. Liam. liamlambert [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

VU meter

2005-12-07 Thread liamlambert
Thanks Scott it would be great if you could I always take the opportunity to learn something new with rev. liam lambert [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

VU meter

2005-12-07 Thread liamlambert
I am having the same problem as bill witch is a pity as it looks just what I need can you help scott Thanks scott Liam. liamlambert [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

VU meter

2005-12-07 Thread liamlambert
Scott I am on mac LIam liamlambert [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

VU meter

2005-12-06 Thread liamlambert
I have been working on a project for sound cuing and it is up and running with some help from from this list thanks again every body. Now I would like to add a VU METER to the project. Meters which monitor audio levels are typically one of two varieties: VU (Volume Unit) or PPM (Peak

seems to meny If

2005-11-25 Thread liamlambert
all this feed back and some very elegant solutions . Thanks to you all liamlambert [EMAIL PROTECTED] ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

seems to meny If

2005-11-24 Thread liamlambert
how do I write this in a switch statement or is there a better way to write it if it contains JK then send mouseUp to button NextTrack if it contains AB then send mouseUp to button NextTrack if it contains JL then send mouseUp to button playpause if it contains JM then send

Teleo from makingthings.com

2005-10-03 Thread liamlambert
Sarah Just a note to say thank you I got the weeder device and your stack and got my project up and running I am very happy with it Thank you for all your help Liam L. Sarah thanks for your reply Does weeder devices work with mac's (osx) Liam Hi Liam, I thought I had already answered this,

Teleo from makingthings.com

2005-09-30 Thread liamlambert
Sarah thanks for your reply Does weeder devices work with mac's (osx) Liam ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Teleo from makingthings.com

2005-09-22 Thread liamlambert
Sarah thanks for your reply Does weeder devices work with mac's (osx) Liam On 9/15/05, liamlambert liamlambert at mac.com wrote: Has anyone use rev with teleo from makingthings.com I am looking for a stack that will connect to there starter kit and read a single Digital in put Liam . L

Teleo from makingthings.com

2005-09-14 Thread liamlambert
Has anyone use rev with teleo from makingthings.com I am looking for a stack that will connect to there starter kit and read a single Digital in put Liam . L ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to