Search found 587 matches

by AndyP
Tue Feb 21, 2012 8:47 am
Forum: Converting to LiveCode
Topic: Converting HTML to LiveCode
Replies: 2
Views: 4962

Re: Converting HTML to LiveCode

Hi,

A website to LiveCode.Tht's going to prove very difficult and I have to ask the question...why?

There is a however a great thread going on here about converting LiveCode to XML and back.

http://runtime-revolution.278305.n4.nab ... 00122.html
by AndyP
Tue Feb 21, 2012 8:42 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: revBrowser: two questions
Replies: 9
Views: 7524

Re: revBrowser: two questions

RunRev have a sample browser stack here: http://runrev.com/developers/lessons-an ... r-sampler/
which may help.
by AndyP
Tue Feb 21, 2012 7:47 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Standalone Crash
Replies: 6
Views: 4742

Re: Standalone Crash

Hi, I've had this problem before and The most common reason for this 0xc0000005 error is because of corrupt or outdated entries in the windows registry. It can also be caused by malware infections, and memory module problems Try these steps. 1. Make sure that Vista is up to date with the all the lat...
by AndyP
Wed Nov 16, 2011 10:13 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: LiveCode & Google maps
Replies: 5
Views: 8470

Re: LiveCode & Google maps

Hi Dixie,

Great example. I was in the process of putting one together but you beat me to the punch!
by AndyP
Wed Nov 16, 2011 9:47 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: LiveCode & Google maps
Replies: 5
Views: 8470

Re: LiveCode & Google maps

Hi Dixie, The asiest way to do this to to access the Google Maps API Go to this example page then look at the source, it should be easy to post and receive values with LiveCode using this method. http://code.google.com/apis/maps/documentation/javascript/examples/directions-panel.html More examples h...
by AndyP
Fri Nov 04, 2011 9:11 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with external
Replies: 6
Views: 3099

Re: Help with external

Hi, maybe this will help, from V5 release notes. IDE Changes Getting folder locations within the IDE If you write plugins, or have code that relies on the location of IDE files then please ensure you use the following access functions to locate them: revEnvironmentToolsPath() The location containing...
by AndyP
Fri Oct 28, 2011 9:27 am
Forum: Converting to LiveCode
Topic: Programmer needs a reference ...
Replies: 16
Views: 21035

Re: Programmer needs a reference ...

Hi Petri,

I found this course content at BRIGHAM YOUNG UNIVERSITY every useful when starting out, also has a lot of links to other Livecode info.

http://livecode.byu.edu/
by AndyP
Wed Oct 12, 2011 4:45 pm
Forum: Talking LiveCode
Topic: "on opencard" handler
Replies: 10
Views: 7286

Re: "on opencard" handler

What happens if you use

preOpenCard

instead of

openCard ?

Also you say at the begining of your post 'A stack's "on opencard"..' Just to check you're putting the openCard in the cards script and not the stacks?
by AndyP
Wed Oct 12, 2011 1:26 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: hilighting text
Replies: 8
Views: 5828

Re: hilighting text

Nearly... try

select character 5 to 10 of fld "field 1"
put the selectedtext into fld "field 2"
by AndyP
Thu Sep 22, 2011 8:40 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to think about programming with Livecode
Replies: 5
Views: 4083

Re: How to think about programming with Livecode

Hi Sano, I think the way you are looking at this would make updating the characteristics when they change a nightnare! Why not put all the details into a database and then turn your search for say "chocolate, < 30 fat" into a SQL statement to return the list, then if entries need changing, change in...
by AndyP
Tue Sep 13, 2011 9:06 am
Forum: Talking LiveCode
Topic: Advice? Almost Sold my First LiveCode Program!
Replies: 8
Views: 5113

Re: Advice? Almost Sold my First LiveCode Program!

Have a look at section 7 of the LiveCode licence. It (apart from section a) basically says "sorry mate...but you cannot hold us responsible!" 7. DISCLAIMER OF WARRANTY a) THE TOTAL LIABILITY WHICH RUNREV OWES TO YOU IN RESPECT OF BREACH OF CONTRACT, NEGLIGENCE OR OTHERWISE SHALL, OTHER THAN IN CIRCU...
by AndyP
Sun Sep 11, 2011 10:11 am
Forum: Talking LiveCode
Topic: Advice? Almost Sold my First LiveCode Program!
Replies: 8
Views: 5113

Re: Advice? Almost Sold my First LiveCode Program!

Hi sanoski, I think the level of support you offer (if any) depends on how the company take over the product and whether they supply this as a free or paid for application. How you proceed will also depend on if the company purchase LiveCode and compile your source code or if you supply the final co...
by AndyP
Fri Sep 02, 2011 8:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Livecode on windows 7 ultimate?
Replies: 12
Views: 7286

Re: Livecode on windows 7 ultimate?

Hi Walt, I'm guessing that when you browse for the LiveCode application ou are looking in the Programs folder and not finding the LiveCode.exe there? Try browsing under yor profile then AppData > Roaming > Runev > Components > then your LiveCode version folder. You will find it there. If you are not...
by AndyP
Wed Aug 24, 2011 2:55 pm
Forum: Talking LiveCode
Topic: Displaying an image from another stack
Replies: 4
Views: 3181

Re: Displaying an image from another stack

Hi Pebah,

Try this:

In the main stack:

on openStack
put image id 1003 of stack "mysub-stack" into image id 1004 of this stack
end openStack

This assumes you have a sub stack named "mysub-stack" containing an Image with the id 1003 and an empty Image Area on your main stack of id 1004.
by AndyP
Fri Aug 19, 2011 4:09 pm
Forum: Internet
Topic: How to ignore IE Script Error with revBrowser?
Replies: 4
Views: 6985

Re: How to ignore IE Script Error with revBrowser?

Hi Alex,

Whoops. just realised you meant sites you have no control over.

More of a problem. You might try passing a web page to an I-frame in the browser. You should be able to trap errors that way.

I'll do a few experiments and get back to you.

Go to advanced search