Search found 12 matches

by infantilo
Sat Apr 05, 2014 3:09 pm
Forum: Android Deployment
Topic: read/create calendar events
Replies: 1
Views: 2124

read/create calendar events

Hi,
i'd need to read and write calendar events to my gmail calendar.
I've found some postings relating to this from 2007. Is there today any way to do this with livecode?
Many thanks for reply!
by infantilo
Fri Nov 29, 2013 9:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: livecode file corrputed, need help
Replies: 4
Views: 2884

Re: livecode file corrputed, need help

thanks for reply!

ok...this is what "learning by doing" means...
by infantilo
Fri Nov 29, 2013 7:40 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: livecode file corrputed, need help
Replies: 4
Views: 2884

livecode file corrputed, need help

Hi, hope thats the right place for my thread. I've corrupted my livecode file by editing it with notepad. i could not load the project in livecode anymore, because i've had an typemismatch ( if $1 in "" then instead of if $1 is "" in card open and it always raised an script error and didnt let me sa...
by infantilo
Wed Sep 18, 2013 8:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: revBrowser IDE problem
Replies: 3
Views: 2429

Re: revBrowser IDE problem

not shure if i got ya right...i mean resizing not programatically but within the IDE using the edit pointer.
by infantilo
Wed Sep 18, 2013 7:02 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: revBrowser IDE problem
Replies: 3
Views: 2429

revBrowser IDE problem

Hi, i'm using an image object to display an webpage as mentioned in the browser tutorial and it works fine. after the first time an webpage has been shown, i can't select the image object anymore and so i can't move or resize it. Any idea why this is? I'm on windows 7. this is how i initialise the b...
by infantilo
Tue Sep 17, 2013 2:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: basic table multiline text in one cell possible?
Replies: 3
Views: 3034

Re: basic table multiline text in one cell possible?

:cry: what bad news!
i could not find that thread.
anyhow many thanks for reply!
by infantilo
Tue Sep 17, 2013 11:18 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: basic table multiline text in one cell possible?
Replies: 3
Views: 3034

basic table multiline text in one cell possible?

Hi, i'm looking for a way to display an multiline text within a single cell of an basic table / datagrid. Is this possible?

thanks for advice
by infantilo
Tue Aug 13, 2013 7:11 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: gettig all existing results from matchtext
Replies: 5
Views: 4044

gettig all existing results from matchtext

Hi,
how do i get all the existing results using matchtext, not only the first one?

text to search within

Code: Select all

test
karl
neuer test
hugo
test

Code: Select all

matchtext(texttosearchwithin, "test", listofresults)
thanks for advice
by infantilo
Tue Aug 13, 2013 6:39 am
Forum: Internet
Topic: [Q] Problem with post form to URL and keep connected
Replies: 6
Views: 7132

Re: [Q] Problem with post form to URL and keep connected

MANY thanks.... works like charm!!!!
by infantilo
Sun Aug 11, 2013 10:05 am
Forum: Internet
Topic: [Q] Problem with post form to URL and keep connected
Replies: 6
Views: 7132

Re: [Q] Problem with post form to URL and keep connected

i'm getting my workorder from an webserver. to that, i first need to load the main page, grab an token, send an form (method post) to an other page and grab the maintoken from the repled html page. then i can call the page i really want, by including the maintoken. I've done this in realbasic and b4...
by infantilo
Sat Aug 10, 2013 5:44 pm
Forum: Internet
Topic: [Q] Problem with post form to URL and keep connected
Replies: 6
Views: 7132

Re: [Q] Problem with post form to URL and keep connected

thanks for quick reply, in b4a i had to do it this way: Dim myHttpRequest As HttpRequest url = "https://yourURLhere.html" Dim str() As Byte Dim form As String form = "usernme=max&Country=Vienna&Telephone=123456" myhttprequest.InitializePost2(url,str) myHttpRequest.Timeout = 5000 If sock.Execute(myHt...
by infantilo
Sat Aug 10, 2013 5:26 pm
Forum: Internet
Topic: [Q] Problem with post form to URL and keep connected
Replies: 6
Views: 7132

[Q] Problem with post form to URL and keep connected

Hi,
i need to login to a wegpage by posting an form, after that i should be able to get other webpage from the server, but sadly it seams as if each time using

Code: Select all

post postVars to URL "xxxxxx"
opens a new connection.
How can i ceep the connection for further calls???

thanks for advice