Search found 12 matches

by kunicki
Mon May 16, 2011 10:07 am
Forum: Announcements
Topic: Live LiveCode code event #23
Replies: 3
Views: 3541

Re: Live LiveCode code event #23

Just a quick word of gratitude. These recordings are great and I hope to see many more. It is nice to see what people are doing and how they are solving problems.

Kind regards,
K
by kunicki
Mon May 16, 2011 10:04 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sharing Reusable code - guidance
Replies: 10
Views: 10429

Re: Sharing Reusable code - guidance

Thank you all, You have helped with my question. Sorry for mixing words. I am still getting use to the idea of stacks (as opposed to code modules). So sorry for mixing up the language. This is fascinating! Every language has their means for handling the dev environment and production and it is nice,...
by kunicki
Fri May 13, 2011 7:43 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sharing Reusable code - guidance
Replies: 10
Views: 10429

Re: Sharing Reusable code - guidance

Klaus, Thank you for this guidance and it is helpful. I am experimenting with this suggestion and it seems logical. Just a followup question: Does it seem that this concept would also work equally well for mobile development, I assume that when I create my standalone application that all the modules...
by kunicki
Wed May 11, 2011 3:34 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sharing Reusable code - guidance
Replies: 10
Views: 10429

Re: Sharing Reusable code - guidance

Thanks for the ... vague reply. Any guidance on this is appreciated. This is more about good design and maintenance than it is purely technical.

Any takers, any advise?
by kunicki
Mon May 09, 2011 4:05 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sharing Reusable code - guidance
Replies: 10
Views: 10429

Sharing Reusable code - guidance

I am looking for advice on application design with the goal of code reuse. I am working on a project that will produce a few reusable libraries that I will want to use in other projects. For example one library is for generic database access while another library is for web service access. In other ...
by kunicki
Sun Apr 25, 2010 9:11 pm
Forum: Internet
Topic: User-Agent on Mac
Replies: 7
Views: 7702

Re: User-Agent on Mac

Robert, Thanks you have gone beyond the call of duty trying to help. I can't imagine there is some way with rev to send setCustomUserAgent message to the UIWebView? I know how to do this in Objective-C but I am not sure this can help me here. Were just mentioning it as a solution to the bug or is th...
by kunicki
Sun Apr 25, 2010 5:39 pm
Forum: Internet
Topic: User-Agent on Mac
Replies: 7
Views: 7702

Re: User-Agent on Mac

Well, Ok, you are right about that. revBrowser on the mac is reporting: --> Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) If I use Safari I get: --> Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) V...
by kunicki
Sun Apr 25, 2010 4:04 pm
Forum: Internet
Topic: User-Agent on Mac
Replies: 7
Views: 7702

Re: User-Agent on Mac

Klaus, Thanks for your help. I am not researching this. Though something is unclear. Do you know if these command also apply when revBrowser is used? The docs mention: "Whenever Revolution contacts a web server (with the load command, the post command, or by using an http URL in an expression), the ...
by kunicki
Sat Apr 24, 2010 4:22 pm
Forum: Internet
Topic: User-Agent on Mac
Replies: 7
Views: 7702

User-Agent on Mac

I am using revBrowser on a card on the Mac. It points to Google Calendar. Apparently google calendar tests if the browser is supported and then displays a popup message to the user if it isnt. It is a message box with a OK and Cancel button. Interestingly Revolution opens with this dialogue. I am as...
by kunicki
Thu Mar 18, 2010 6:58 pm
Forum: Databases
Topic: Architectural design with stacks and a database
Replies: 7
Views: 6422

Re: Architectural design with stacks and a database

I typically put the database layer in a library script. A library script is just a stack script that is available to all objects in the message path. This means all of the code in your various cards could access the db layer commands/functions. Look up 'start using' in the dictionary for more infor...
by kunicki
Thu Mar 18, 2010 6:57 pm
Forum: Databases
Topic: Architectural design with stacks and a database
Replies: 7
Views: 6422

Re: Architectural design with stacks and a database

Usually, when I make a front-end for a database, I make sure that all data are immediately saved, e.g. by catching the closeField messsage. Does this answer your questions? Mark, I appreciate this insight, thanks! Addditionally,do you centralize the SQLite database access in a library and then all ...
by kunicki
Tue Mar 16, 2010 10:05 pm
Forum: Databases
Topic: Architectural design with stacks and a database
Replies: 7
Views: 6422

Architectural design with stacks and a database

Ok, please forgive me. i am new to Revolution but not to programming. I have been learning now for 2 weeks and love what I am seeing. I am strugging a little though to map my "old" way of thinking to how I would do things in revolution. Given the following scenario: + SQLite database with 10 to 15 t...