Search found 11 matches

by fmuller
Wed Apr 28, 2010 10:59 pm
Forum: Off-Topic
Topic: revMobile - Template Iphone/Ipad Version Alpha 003 : new
Replies: 0
Views: 2435

revMobile - Template Iphone/Ipad Version Alpha 003 : new

Be free to download and test from RevOnline Revision Alpha 003 from 28 April: -Splash screen react differently if you are on IPad/Iphone or in dev -Save/Read configuration file on your IPhone/IPad This version is a template which could help you to prepare the structure of a mobile application, for u...
by fmuller
Mon Apr 26, 2010 8:30 pm
Forum: Off-Topic
Topic: revMobile on iPhone - what's the verdict RunRev staff?
Replies: 5
Views: 5750

Re: revMobile on iPhone - what's the verdict RunRev staff?

Hello, I think RunRev has to continue to develop his RevMobile for the reason, Jobs says NO to AppStore, but also say Apple authorize to develop on Iphone/Ipad with others tools, but for private applications only. For me Private Application means, we have all the business market which is open, a lot...
by fmuller
Fri Apr 23, 2010 6:12 pm
Forum: Talking LiveCode
Topic: Property Profiles and revSetStackFileProfile - Issue
Replies: 2
Views: 3411

Re: Property Profiles and revSetStackFileProfile - Issue

Thanks very much Klaus, I will check your stack. Regards, Fabrice Bonjour Fabrice, I never used Rev profiles simply because of the problems you already encountered and made my own using CustomProperties and CustomPropertySets. You can download a simply example here (bi-lingual: german/english): http...
by fmuller
Thu Apr 22, 2010 7:26 pm
Forum: Talking LiveCode
Topic: Property Profiles and revSetStackFileProfile - Issue
Replies: 2
Views: 3411

Property Profiles and revSetStackFileProfile - Issue

Hello All, Has someone already tried to used Property Profiles for multi-language management and revSetStackFileProfile for changing the profile ? Are this property and function working well in all case ? I tried to used for multi language part of my application, but many times properties disappear ...
by fmuller
Sun Apr 11, 2010 8:55 pm
Forum: Talking LiveCode
Topic: how to check field format during entry
Replies: 3
Views: 3803

Re: how to check field format during entry

Hi Klaus,

Alles gut und dich, hast du ein schönes Wochenende gehabt ?

I switch to English, it's easier :-) Thanks a lot for your solution I will try it.

Cheers from Switzerland, Fabrice
by fmuller
Sat Apr 10, 2010 9:01 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Saving data in iPhone app (revMobile)
Replies: 5
Views: 4672

Re: Saving data in iPhone app (revMobile)

Hello, I wrote these 2 functions below for my application : And interesting link for folders : http://intkeystrokes.posterous.com/where-to-write-data-for-iphone-revmobile-runr global gConfigArray function fSaveConfigFile --Save Configuration File put specialFolderPath (documents) & "/Config.txt" int...
by fmuller
Sat Apr 10, 2010 8:51 pm
Forum: Talking LiveCode
Topic: how to check field format during entry
Replies: 3
Views: 3803

how to check field format during entry

Hello, I search if something exist to check what is entered inside a field on screen like a format template. For some fields I would like just numbers, others just characters and so ... Some languages have input values like "####" means only 4 numbers or "##/##/####" means a date. Thanks for help, C...
by fmuller
Thu Apr 01, 2010 8:02 pm
Forum: Talking LiveCode
Topic: How to use star in the name of a container
Replies: 6
Views: 5102

Re: How to use star in the name of a container

sturgis wrote:My apologies, misunderstood what you were asking. Go with Klaus and you should be set.
No Problem, I was not so clear, but usage of () is interesting also for some other application :D

Thanks for taking time.

Cheers, Fabrice
by fmuller
Thu Apr 01, 2010 8:00 pm
Forum: Talking LiveCode
Topic: How to use star in the name of a container
Replies: 6
Views: 5102

Re: How to use star in the name of a container

Grüezi Fabrice, let me first see if I understand what you are after :) You have for example 4 buttons on your card named: btn_U1_something_else btn_U2_a_different_thing btn_U3_swiss_cheese btn_U4_chaes_fondue ? And you want to set their label to the number 0 in a repeat loop without writing their n...
by fmuller
Thu Apr 01, 2010 6:47 pm
Forum: Talking LiveCode
Topic: How to use star in the name of a container
Replies: 6
Views: 5102

Re: How to use star in the name of a container

Change it thusly: repeat with i = 1 to 4 set the label of button ("btn_U" & i & "*") to 0 end repeat This forces evaluation of the "btn_U & i & "*"" FIRST so that the engine just sees button "btn_U1*". If the parens aren't there, the engine expects "to" after "btn_U". edit: Change the i back to you...
by fmuller
Thu Apr 01, 2010 5:42 pm
Forum: Talking LiveCode
Topic: How to use star in the name of a container
Replies: 6
Views: 5102

How to use star in the name of a container

Hello, I search a solution for have all button on a card updated in a loop, example below : In fact I have many button all names started with "btn_U" after I use a number and after I use something. The goal with the loop is to update every button in a shoot using the * (star) repeat with tVarCount =...