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 ...
Search found 11 matches
- Wed Apr 28, 2010 10:59 pm
- Forum: Off-Topic
- Topic: revMobile - Template Iphone/Ipad Version Alpha 003 : new
- Replies: 0
- Views: 2843
- Mon Apr 26, 2010 8:30 pm
- Forum: Off-Topic
- Topic: revMobile on iPhone - what's the verdict RunRev staff?
- Replies: 5
- Views: 6826
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 ...
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 ...
- Fri Apr 23, 2010 6:12 pm
- Forum: Talking LiveCode
- Topic: Property Profiles and revSetStackFileProfile - Issue
- Replies: 2
- Views: 4031
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 ...
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 ...
- Thu Apr 22, 2010 7:26 pm
- Forum: Talking LiveCode
- Topic: Property Profiles and revSetStackFileProfile - Issue
- Replies: 2
- Views: 4031
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 ...
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 ...
- Sun Apr 11, 2010 8:55 pm
- Forum: Talking LiveCode
- Topic: how to check field format during entry
- Replies: 3
- Views: 4509
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
Alles gut und dich, hast du ein schönes Wochenende gehabt ?
I switch to English, it's easier
Cheers from Switzerland, Fabrice
- Sat Apr 10, 2010 9:01 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Saving data in iPhone app (revMobile)
- Replies: 5
- Views: 5688
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 ...
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 ...
- Sat Apr 10, 2010 8:51 pm
- Forum: Talking LiveCode
- Topic: how to check field format during entry
- Replies: 3
- Views: 4509
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 ...
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 ...
- Thu Apr 01, 2010 8:02 pm
- Forum: Talking LiveCode
- Topic: How to use star in the name of a container
- Replies: 6
- Views: 6227
Re: How to use star in the name of a container
No Problem, I was not so clear, but usage of () is interesting also for some other applicationsturgis wrote:My apologies, misunderstood what you were asking. Go with Klaus and you should be set.
Thanks for taking time.
Cheers, Fabrice
- Thu Apr 01, 2010 8:00 pm
- Forum: Talking LiveCode
- Topic: How to use star in the name of a container
- Replies: 6
- Views: 6227
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 ...
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 ...
- Thu Apr 01, 2010 6:47 pm
- Forum: Talking LiveCode
- Topic: How to use star in the name of a container
- Replies: 6
- Views: 6227
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 ...
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 ...
- Thu Apr 01, 2010 5:42 pm
- Forum: Talking LiveCode
- Topic: How to use star in the name of a container
- Replies: 6
- Views: 6227
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 ...
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 ...