Re: Create button script won't work - why?

2010-11-16 Thread Monte Goulding
On 17/11/2010, at 3:41 AM, Bob Sneidar wrote: I wonder if maybe storing the loc of the group, centering it, creating the button, then restoring the loc of the group would do? Stupid LiveCode Tricks you know. Setting the loc of the templateButton is the easiest way to do it. Cheers

Re: Create button script won't work - why?

2010-11-15 Thread Monte Goulding
and copy it. Cheers Monte On 15/11/2010, at 5:27 PM, Bill Vlahos wrote: Monte, Am I able to create a group on the new card? I don't see a syntax for that. Gee, it isn't looking like I'm going to be able to do what I want. Discouraging. Bill Vlahos On Nov 14, 2010, at 9:33 PM, Monte

Re: Create button script won't work - why?

2010-11-14 Thread Monte Goulding
Is there a way to directly create a button on a particular card in a particular stack without going to it and doing all this? The stack I want to create the button into is data stack that never gets viewed directly. In this case it will be data in the custom property of that button. You

Re: Performance Mystery Solved - IT'S THE DATA STUPID!!

2010-11-11 Thread Monte Goulding
Unless you're explicitly purging the stacks, any access to a property of a stack file will load it into memory. The first access will take a hit only if the stack isn't already in memory, but subsequent accesses should be about as fast whether referring to just the stack name or the stack

Re: Performance Mystery Solved - IT'S THE DATA STUPID!!

2010-11-11 Thread Monte Goulding
Unless you're explicitly purging the stacks, any access to a property of a stack file will load it into memory. The first access will take a hit only if the stack isn't already in memory, but subsequent accesses should be about as fast whether referring to just the stack name or the

Re: Performance Mystery Solved - IT'S THE DATA STUPID!!

2010-11-11 Thread Monte Goulding
There's probably some nuance I'm missing - here's a quick test which first uses the fileName of a stack to access a property, then the next run it opens the stack and gets the property by referring to the stack's short name (FWIW, I had saved the stack previously with its destroyStack set

Re: iRev and theFacebook API. Anyone?

2010-11-10 Thread Monte Goulding
Hi Malte I've done an open graph protocol library for revIgniter: http://goulding.ws/2010/09/27/revigniter-open-graph-protocol-library/ With that you can use the standard like buttons etc. When I get a chance which won't be for a while I will start in on the facebook api. In the meantime if

Re: Help: Id's can be completly unreliable

2010-11-10 Thread Monte Goulding
Thanks for the background on that. If you have a recipe for that please submit a bug report, but to be honest I've never seen anything like that in 12 years of working with this engine. IDs normally begin at 1001 and increment from there for every object added to the stack. I tried

Re: Help: Id's can be completly unreliable

2010-11-10 Thread Monte Goulding
It's my understanding that object ID's inside a stack are maintained by the engine to ensure uniqueness. I would not mess with the ID's at all. I remember back in Hypercard that was a big no-no as well. Well, true up to a point. The stack id is equal to the id of the next created control.

Re: Help: Id's can be completly unreliable

2010-11-10 Thread Monte Goulding
Setting the stack ID to a number below it's current ID is a risk and you are right it's bad practice (I was just trying to work out how you end up with an id of 0 and I still couldn't replicate it) but going the other way is the only way we have to manage icon libraries. The docs say you

Re: Indenting Challenge

2010-11-09 Thread Monte Goulding
And the thing that really makes this difficult is the fact that the text needs to be directly editable by users (cannot be in a locked field). Any suggestions on how I might tackle this? Can it be restricted to only editing one bullet at a time, or does the user need the ability to click

Re: Refreshing a card

2010-11-08 Thread Monte Goulding
case Toggle Date Stamp set the showDateStamp of this stack to not the showDateStamp of this stack -- new stuff added to make it visible/invisible if there is a fld dateStampField then set the visible of field datestampfield to the showdatestamp of

Re: Saving/importing custom controls to/from file

2010-11-08 Thread Monte Goulding
On 09/11/2010, at 7:41 AM, Terry Judd wrote: On a whim I tried copying a group and saving the contents of the clipboard (clipboardData[“objects”]) to file. I then cleared the clipboard and set the clipboardData to the file and was able to paste the ‘reconstructed’ object back into my stack.

Re: Saving/importing custom controls to/from file

2010-11-08 Thread Monte Goulding
Yep - several times to make sure - and I checked the clipboard in between. Great, I wonder how it might best be used. I'm not sure there's a massive advantage to this over saving a custom control on a stack and just copying the control from the stack. Cheers

Re: OT: Some help with Regular Expressions

2010-11-04 Thread Monte Goulding
Just a small correction to your regular expression Jeff to make it case insensitive as it ignores the caseInsensitive global property and also assuming that Mathias doesn't want to match chunks of longer strings I've added the ^ $: (?i)^([a-z0-9]{2})\.([a-z0-9]{5})\.([a-z0-9]{3})$ Cheers

Re: Refreshing a card

2010-10-31 Thread Monte Goulding
Hi Mark What do you mean by moving off the card and back on? Go to a different card of that stack or suspend and resume stack / application? Also you may need to provide your setprop handler for this property because there's nothing wrong with your menu code. Cheers Monte On 01/11/2010, at

Re: Re; Stress-testing SQLite

2010-10-30 Thread Monte Goulding
Could you post some of your results here Richard. Sent from my iPad On 31/10/2010, at 2:23 AM, Richard Gaskin ambassa...@fourthworld.com wrote: It seems in my initial tests that the time it takes to get data through the externals interface is much long than what it takes to move data

Re: Stress-testing SQLite

2010-10-30 Thread Monte Goulding
On 31/10/2010, at 4:55 AM, Richard Gaskin ambassa...@fourthworld.com wrote: Lynn Fredricks wrote: 32TB db limit according to this: http://en.wikipedia.org/wiki/Comparison_of_relational_database _management_systems#Limits Charts like this, especially on Wikipedia should be taken with a

Re: html entities

2010-10-29 Thread Monte Goulding
If you don't want to use a lookup table then pulling out these entities using repeat while matchchunk and in the loop setting the htmltext of a second field and doing chartonum on the text of the field would work. Cheers Monte Sent from my iPad On 30/10/2010, at 1:53 AM, Chris Sheffield

Re: Stress-testing SQLite

2010-10-29 Thread Monte Goulding
32TB db limit according to this: http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems#Limits Maybe use limit and offset to page through query results though. Cheers Monte Sent from my iPad On 30/10/2010, at 11:17 AM, Richard Gaskin ambassa...@fourthworld.com

Re: revweb plug-in for linux

2010-10-28 Thread Monte Goulding
On 29/10/2010, at 3:52 AM, roger.e.el...@sealedair.com wrote: Peter Alcibiades wrote: It could run locally. Except that everything else runs on a server, so it would be nice if it were all in one place and accessible from anywhere on the LAN, which is why it would be nice to run it as a

Re: LiveCode applications accepted in iOS App Store

2010-10-27 Thread Monte Goulding
Well done Kevin, unfortunately I made the mistake of giving my 4 year old son a go and it seems unlikely I will get my iPad back for a while ;-) Cheers Monte On 28/10/2010, at 5:03 AM, Kevin Miller wrote: On 27/10/2010 18:39, Bob Sneidar b...@twft.com wrote: Maybe I missed something but

Re: LiveCode applications accepted in iOS App Store

2010-10-27 Thread Monte Goulding
located in the sides! The quicker you clear the level, the more bonus points you get. You could have different mazes and then it could go faster and faster... Okay I'll stop now. :-) Bob On Oct 27, 2010, at 2:46 PM, Monte Goulding wrote: Well done Kevin, unfortunately I made

Re: RunRev Enterprise 5.5 OSX to Windows XP

2010-10-25 Thread Monte Goulding
Hi There's no easy way to do what your asking. Some email clients support the attachment field in a mailto url but not many. Does the user need to use their mail client? If it's just a matter of emailing in the results and you have access to a web server then posting to a php or irev script

Re: determining if user has shell access

2010-10-20 Thread Monte Goulding
pProcess return tReturn end if end repeat end executeProcess Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: [OT] Mac App Store

2010-10-20 Thread Monte Goulding
Wow, even though many scoffed, I predicted this would happen on the improve-list only a few months ago. That's a big camel's nose peeking in under the tent. Jeez, how long before you have to JAILBREAK your Mac in order to put your own programs on it? I believe it's just around the

Re: determining if user has shell access

2010-10-15 Thread Monte Goulding
/consulting/blog/ I think I have this sorted but we might all want to update our code that uses shell on windows to handle this situation gracefully. There's also some functions and commands in the revCommon library that rely on shell that probably need an update. Cheers -- Monte Goulding M E R

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
Hi Dar Thanks for your interest. I'm a little confused as to what is happening. Is the app locking up? Yes. The shell function never returns. I have reported it as a bug because it should fail gracefully. But I'd love a workaround or test. Or does the function return empty? If the

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
Write a tiny script that does something trivial in shell (e.g. shell ls), and build that as a tiny executable. Have your real script run that as a separate process and see if it never returns. That's not a bad plan. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
line arguments via the open process command? In both scripts getMACaddress and getLANip it's just ipconfig /all that's called on windows. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
VBScript well be before I blocked the command line. I'm trying to avoid trial and error testing with the client of client. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
working on a shell type function that will use open process instead. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: determining if user has shell access

2010-10-14 Thread Monte Goulding
sometimes proves very difficult for the networking support crew (us) to figure stuff out. hmm... I know these guys aren't restricting access to ipconfig but it's good to know some people do. Is it just by hash rules? Cheers -- Monte Goulding M E R Goulding Software Development Bespoke

Re: Workaround For No selectionChanged Message?

2010-10-13 Thread Monte Goulding
Hey Scott I currently have text formatting controls in a palette There's got to be an easier way. Are you sure you are using a palette? This should work without you doing anything? Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical

Re: Workaround For No selectionChanged Message?

2010-10-13 Thread Monte Goulding
this (selection is lost after style is changed). So maybe the previously selected text needs to be reselected after being styled. That makes sense. Probably the whole field is refreshed when you set a property of the selected chunk. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke

Re: determining if user has shell access

2010-10-13 Thread Monte Goulding
or something logical rather than not returning but has anyone worked around this before. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior

determining if user has shell access

2010-10-12 Thread Monte Goulding
logical rather than not returning but has anyone worked around this before. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: [ANN] slotmachine iPhone was scrolling wheel

2010-10-10 Thread Monte Goulding
for LiveCode developers to store and share examples like these which are OS specific, or solves a particular type of problem where notive controls do not yet exist. There will be. revObjective is the start. -- Monte Goulding M E R Goulding Software Development Bespoke application development

Re: INterfacing with Phidgets...

2010-10-04 Thread Monte Goulding
archive at Nabble.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 -- Monte Goulding

Re: Drag drop reordering of a DataGrid form

2010-10-04 Thread Monte Goulding
the dragAction to move end if Thanks Trevor, that did the job. -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: Drag drop reordering of a DataGrid form

2010-10-02 Thread Monte Goulding
the dragAction in dragMove though. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use

Drag drop reordering of a DataGrid form

2010-10-01 Thread Monte Goulding
Hi Everyone I've got a blog up for reordering DataGrid forms by drag and drop. Doesn't work for tables and you must cache controls. http://goulding.ws/consulting/blog/ Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets

Re: Drag drop reordering of a DataGrid form

2010-10-01 Thread Monte Goulding
://goulding.ws/consulting/blog/ Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use

Re: Drag drop reordering of a DataGrid form

2010-10-01 Thread Monte Goulding
to the bottom but I'm leaving my original script as it still might be worthwhile for people that want to give their drag and drop a customised look. http://goulding.ws/consulting/blog/ Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical

Re: where to put script libraries

2010-09-29 Thread Monte Goulding
(or just adding to the stackfiles property if you want to start using only by script) then trapping standaloneSaved and copying the stackfiles into the build. Don't forget to pass these messages or you may break revObjective and the InstallGadget plugin. Cheers -- Monte Goulding M E R Goulding

Re: Livecode resources

2010-09-29 Thread Monte Goulding
if the icon has not been set and that shouldn't actually set and save the property. You should report the bug. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective

Re: sqlite: foreign keys

2010-09-28 Thread Monte Goulding
Just use an in-memory db. ooo, that's a new one to me. Is it possible to write it out to a file later? -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making

Re: Database: INSERTS, speed and primary keys

2010-09-27 Thread Monte Goulding
yet used SQLYoga but I'm sure Trevor has this all worked out. SQLite will handle the auto increment of integer primary keys when you INSERT without an ID field and then you query put revDataFromQuery(,,sDB,select last_insert_rowid()) into tID Cheers -- Monte Goulding M E R Goulding Software

Re: Database: INSERTS, speed and primary keys

2010-09-27 Thread Monte Goulding
for a foreign key in other tables. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: Database: INSERTS, speed and primary keys

2010-09-27 Thread Monte Goulding
, 'location' VARCHAR(255) NOT NULL, 'handler_num' INTEGER NOT NULL, ); So how do I create a secondary key from name,type,location,handler_num and make sure that these combined columns are unique? On 27 September 2010 12:50, Monte Goulding mo...@sweattechnologies.comwrote: HI Monte - hows

Re: Deployment issues: sqlite?

2010-09-24 Thread Monte Goulding
possible to have multiple instances of the IDE running etc. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: LiveCode in K-6 school environment

2010-09-23 Thread Monte Goulding
someone of your skill will end up contributing inside a school setting. Ah, now you've got me blushing ;-) Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective

Re: LiveCode in K-6 school environment

2010-09-23 Thread Monte Goulding
the '+','-','/' and '*' buttons . . . most of these kids are in the 7 - 10 range. That's gold Richmond. I'm going to try it with my 7 year old. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds

Re: Hopefully a simple question

2010-09-23 Thread Monte Goulding
) to the short id of image pMap[tRow][tColumn] end repeat end repeat set the customProperties[map] of me to pMap end map You could have a larger world map also and this 9x9 view could just display sections of it. Cheers -- Monte Goulding M E R Goulding Software Development

LiveCode in K-6 school environment

2010-09-22 Thread Monte Goulding
programming for older kids (9 or 10 year olds). - providing tools for parents or school/parent communication Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making

Re: on-rev

2010-09-21 Thread Monte Goulding
. -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use-revolution mailing list use

Re: Still: Where do I put libUUID.rev and qrtReportsLIb.rev in LiveCode?

2010-09-20 Thread Monte Goulding
that parses the stacks in that folder at startup and starts using them and your set. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts

Re: on-rev

2010-09-20 Thread Monte Goulding
It did that to me occasionally. Have you tried turning it offanonagain? I ended up giving up and using Ralf's TextMate bundle+Cyberduck. Is anyone able to use the on-rev client? I'm hanging on Connecting to server... Have to force-quit it. -- Monte Goulding M E R Goulding Software Development

Re: on-rev

2010-09-20 Thread Monte Goulding
($_POST_RAW is my favorite global, I convinced them on creating that while I was there in Edinburgh during the weeks before the conference, without it you can't do uploads) or PayPal IPN -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets

Re: Web Deployment

2010-09-20 Thread Monte Goulding
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 -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets

Re: on-rev

2010-09-20 Thread Monte Goulding
of order! -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use-revolution mailing list use

Re: iRev Input Validation Libraries

2010-09-18 Thread Monte Goulding
that that. According to the revIgniter docs when using the placeholder SQL syntax the db external escapes the variable/array element for you and therefore protects you from SQL injection. I can't find that in the rev docs but I imagine Ralf has investigated. Cheers -- Monte Goulding M E R Goulding

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
multiple sessions. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
But because your dictionary is displayed on a card, I think your method is good. The original email was discussing using hidden datagrids with no mention of having them visible to manipulate. -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical

Re: iRev Input Validation Libraries

2010-09-18 Thread Monte Goulding
-- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use-revolution mailing list use

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
What about the cost of all the object creation/manipulation that you don't need if you are just using it as data storage. I speak about something easy to manipulate and you reply with cost. Yes, Did you read the original post? It was about using HIDDEN datagrids! Clearly this is not what

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
Because I have not totally understood Monte's arguments, that I consider destructives. LOL Monte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: DataGrid Optimization question

2010-09-17 Thread Monte Goulding
Am I adding overhead to redraw a grid that no one sees? I can't work out what the data grids are for if no one sees them? Why not just use custom properties? Or better yet SQLite? Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical

Re: How to get environment VARS in iRev

2010-09-16 Thread Monte Goulding
put the globalNames to see what's available -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: Getting started with databases

2010-09-15 Thread Monte Goulding
a database slow-coach along? Hi Tim Good schema design is very important and I find MySQL Workbench a great cross platform tool for data modelling. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create

on-rev forum

2010-09-14 Thread Monte Goulding
Hi Has anyone managed to get in to the on-rev forum lately? I tried to register back on 30 July and still had no response so I tried again and got the same message. Why isn't the forum open? Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development

Re: on-rev forum

2010-09-14 Thread Monte Goulding
end. Stuff it. I'll just ask questions here. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

fitting a cubic polynomial to x,y data

2010-09-10 Thread Monte Goulding
Hi Wondering if anyone has done any curve fitting before. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: [ANN] revObjective 1.0 released!

2010-09-09 Thread Monte Goulding
Yep - that's with version 1.1. Works a treat. 1.2 is up now at http://goulding.ws/consulting/blog/ -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making

Re: ANN: PowerDebug (was Re: Question about the debugger in Rev 4.0)

2010-09-09 Thread Monte Goulding
a 27 inch screen so I'd rather have things on screen. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: ANN: PowerDebug (was Re: Question about the debugger in Rev 4.0)

2010-09-09 Thread Monte Goulding
complex maybe that's a good option for you? The visible one could be the help/prefs stack. We need heaps more plugin hooks. One other thing is if the debug console is open and you try and quit rev then rev hangs. Overall it looks like a great new addition to Rev. -- Monte Goulding M E R

revObjective settings palettes

2010-09-09 Thread Monte Goulding
with backgroundBehavior set to true we can even have library like code libraries without adding complexity to the message path. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds

Re: InstallGadget 2.0 Public Testing

2010-09-08 Thread Monte Goulding
on Leopard they won't be backwards compatible. I suppose I should have sent this off list, but I think that Installgadget deserves a bit of unsolicited praise. Thanks -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget

[ANN] InstallGadget 2.0 Public Testing

2010-09-07 Thread Monte Goulding
Hi Everyone If you are interested in being involved in testing InstallGadget 2.0 and it's Rev plugin please download from http://goulding.ws/installgadget/installgadget-2-0-public-testing/ and send comments off list to mo...@goulding.ws Cheers -- Monte Goulding M E R Goulding Software

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
there) and everything else is disabled. I have no idea what to do now. -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
___ 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 -- Monte Goulding M E R Goulding Software Development

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
Hi Len On Windows you press print screen on the keyboard. Cheers Monte On 07/09/2010, at 8:53 PM, Len Morgan wrote: Can you advise me on how to take a screen shot? I've never been successful but then I've never really tried that hard either. len On 9/7/2010 5:48 AM, Monte Goulding

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds revObjective - Making behavior scripts behave ___ use-revolution mailing list use

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
revObjective but not that change to the tools palette and 3 KISS. It's the close stack command at the end of your preOpenStack handler in the stack script. I can get rid of the error if I change the last few lines of that handler to Cheers -- Monte Goulding M E R Goulding Software

Re: [ANN] revObjective 1.0 released!

2010-09-07 Thread Monte Goulding
. PS Anyone wishing to distribute their custom controls with revObjective is welcome to do so. Just contact me off list. Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical markets InstallGadget - How to create an installer in 10 seconds

Re: focus border color

2010-09-06 Thread Monte Goulding
Cheers, thanks On 06/09/2010, at 9:50 AM, Terry Judd wrote: Based on the colors in the Apple Developer palette it seems to be 67,138,208 Terry... On 6/09/10 9:46 AM, Monte Goulding mo...@sweattechnologies.com wrote: Ah, anyone know the RGB values for that OS X focus border

[ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
Hi Everyone I've just released a new plugin that people who create or want to use custom controls with behavior scripts might find helpful. For more info go to: http://goulding.ws/consulting/blog/ Cheers -- Monte Goulding M E R Goulding Software Development Bespoke application development

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
Woops, refresh the page now. On 07/09/2010, at 11:18 AM, Andre Garzia wrote: Monte, the download link is wrong! ;-) Congratulations, want to check it out! Cheers andre On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Everyone I've just

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com wrote: Monte, the download link is wrong! ;-) Congratulations, want to check it out! Cheers andre On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding mo...@sweattechnologies.com wrote: Hi Everyone I've just released

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
. Had to force-quit. mIght you have a stack named 'untitled' somewhere in your project? sqb On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.comwrote: I think it needs some more testing outside of your environment. I had major name space problems had to force-quit

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
2010 19:00, Monte Goulding mo...@sweattechnologies.comwrote: I think I've got it, I did some drag and drop stuff for pulling the stack files out of the revObjective folder before I implemented the drag and drop of objects to the stacks and they are messing with each other so I'll pull out

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
, Monte Goulding mo...@sweattechnologies.comwrote: I think I've got it, I did some drag and drop stuff for pulling the stack files out of the revObjective folder before I implemented the drag and drop of objects to the stacks and they are messing with each other so I'll pull out the files one

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
On 07/09/2010, at 11:22 AM, Mike Bonner wrote: Heres the right link. http://goulding.ws/?file_id=11 FYI that link won't work now. Access the file from my blog at http://goulding.ws/consulting/blog Cheers Monte ___ use-revolution mailing list

focus border color

2010-09-05 Thread Monte Goulding
Hi the effective focusColor is returning black when I can see that it's a bluish color Any way to find the focus border color? Cheers Monte___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe,

Re: focus border color

2010-09-05 Thread Monte Goulding
Ah, anyone know the RGB values for that OS X focus border then? On 06/09/2010, at 9:35 AM, Terry Judd wrote: It looks like focusColor is broken on OSX at least as setting it either at the stack or object level has no effect. I always get the standard bluish color irrespective of what color I

Re: SQLite Database

2010-09-04 Thread Monte Goulding
Not without writing a new db driver I wouldn't think. From memory there is an encrypted version of sqlite with a $2000 license fee. If you don't need it to be ultra secure then you could store your db in a custom property of an encrypted stack and save it to a hidden file at startup, save it

sockets post to url

2010-09-02 Thread Monte Goulding
Hi I have an app that accepts connections on a socket to sync to an iOS version. post to url works before and after: accept connections on port lPort with message newConnection -- lPort is 8009 as default but user settable until the connections start coming in from the server. To avoid socket

Re: sockets post to url

2010-09-02 Thread Monte Goulding
ah... scratch that, nothing to see here On 02/09/2010, at 5:14 PM, Monte Goulding wrote: Hi I have an app that accepts connections on a socket to sync to an iOS version. post to url works before and after: accept connections on port lPort with message newConnection -- lPort is 8009

Re: sockets post to url

2010-09-02 Thread Monte Goulding
this for future mail list search abilities! :D On Thu, Sep 2, 2010 at 4:27 AM, Monte Goulding mo...@sweattechnologies.comwrote: ah... scratch that, nothing to see here On 02/09/2010, at 5:14 PM, Monte Goulding wrote: Hi I have an app that accepts connections on a socket to sync to an iOS

Re: Rev SQL question

2010-09-02 Thread Monte Goulding
revExecuteSQL dbID,SELECT Name FROM myTable INTO ARRAY :1,eventList Hi Mike You can't do it that way. The array syntax for revExecuteSQL is for SQL statements like INSERT where :1 is replaced by the value if eventList[1]. I have a blog post that includes some simple generic db functions

  1   2   3   4   5   6   7   >