Search found 78 matches

by d.m.holdawayGA2553
Wed Aug 15, 2012 9:50 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Transfer contents of field into a file on ftp server.
Replies: 10
Views: 7588

Re: Transfer contents of field into a file on ftp server.

i corrected the code and i am now getting a timed out issue.
by d.m.holdawayGA2553
Wed Aug 15, 2012 4:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Transfer contents of field into a file on ftp server.
Replies: 10
Views: 7588

Re: Transfer contents of field into a file on ftp server.

could you just try my code? put field "randomfield" into tData ## tData = the data you want to write to file2 put urlencode(tUserName) into tUN put urlencode(tPassWord) into tPW put tData into URL("ftp://" & tUN & ":" & tPW & "@website.com/file2.txt") ## check the rdesult! ## If empty, all is fine! ...
by d.m.holdawayGA2553
Wed Aug 15, 2012 1:55 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Transfer contents of field into a file on ftp server.
Replies: 10
Views: 7588

Re: Transfer contents of field into a file on ftp server.

yes the username and password are correct, i logged in and uploaded a file
by d.m.holdawayGA2553
Wed Aug 15, 2012 8:30 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Transfer contents of field into a file on ftp server.
Replies: 10
Views: 7588

Transfer contents of field into a file on ftp server.

hello, i think i am almost there with my code but i cant seem to get it to work, i have examined a number of lessons but it just wont go. i have this put field "randomfield" into tData ## tData = the data you want to write to file2 put urlencode(tUserName) into tUN put urlencode(tPassWord) into tPW ...
by d.m.holdawayGA2553
Tue Aug 14, 2012 6:09 pm
Forum: Databases
Topic: SQL connection on Android SDK
Replies: 10
Views: 8614

Re: SQL connection on Android SDK

yes i have already tired that.
by d.m.holdawayGA2553
Tue Aug 14, 2012 2:43 pm
Forum: Databases
Topic: SQL connection on Android SDK
Replies: 10
Views: 8614

Re: SQL connection on Android SDK

i also used version 4.0
by d.m.holdawayGA2553
Tue Aug 14, 2012 12:26 pm
Forum: Databases
Topic: SQL connection on Android SDK
Replies: 10
Views: 8614

Re: SQL connection on Android SDK

its on a remote server. i followed a few of the business-academy lessons, and this one http://lessons.runrev.com/s/lessons/m/4071/l/7003-connecting-to-a-mysql-database and like i said it works a treat on iOS and my desktop.. on mouseUp -- use a global variable to hold the connection ID so other scri...
by d.m.holdawayGA2553
Tue Aug 14, 2012 11:13 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: formatting a field with SQL data.
Replies: 2
Views: 2233

Re: formatting a field with SQL data.

is that it?

gosh i feel like such a idiot.... haha
by d.m.holdawayGA2553
Tue Aug 14, 2012 10:37 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: formatting a field with SQL data.
Replies: 2
Views: 2233

formatting a field with SQL data.

hello, at the moment my my code pulls in some data from a SQL database, it works a treat but i am having trouble formatting it at the moment it pulls in names from a address book for example and displays them darren,dave,ian,simon what i would like it to do is list them darren dave ian simon any ide...
by d.m.holdawayGA2553
Wed Aug 08, 2012 12:32 pm
Forum: Databases
Topic: SQL connection on Android SDK
Replies: 10
Views: 8614

SQL connection on Android SDK

my app works great on iphone and within simulator and on my desktop.

when i test the app within the Android SDK i get a fail to connect.

works on on everything else.

i am using version 2.2 in the android simulator and i have clicked the the mysql box in the build options.

thanks
by d.m.holdawayGA2553
Wed Aug 08, 2012 12:26 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: device detection ?
Replies: 7
Views: 5690

Re: device detection ?

so i could use this to get my app to work on different devices then?

example..

so i would load the device id into a twhatdevice

if twhatdevice = "iphone" go card "iphonemain"
etc etc

so i might need to build about 40 different cards to cover the amount of different android devices..
by d.m.holdawayGA2553
Wed Aug 08, 2012 12:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: screen size to automatically resize ?
Replies: 2
Views: 2563

Re: screen size to automatically resize ?

yes it does,

thanks for that, i will give it a go.
by d.m.holdawayGA2553
Wed Aug 08, 2012 11:26 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: screen size to automatically resize ?
Replies: 2
Views: 2563

screen size to automatically resize ?

the app i have created looks cool on my iphone ( well when i say cool i mean all the buttons are in the right place not quite figured out how to not make it look early 90s.. but hey! it works.. ) for it to work on the 10000 different android type screens do i have to create 10000 different cards all...
by d.m.holdawayGA2553
Tue Aug 07, 2012 5:18 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: the difference between TOUCH/TAP and DRAG.
Replies: 1
Views: 2007

the difference between TOUCH/TAP and DRAG.

hello,

i have created a app which pulls down a table from a SQL database into a field.

when i tap on a name it moves it from one field to another like it should BUT instead of tap is there a way i could use drag?

i had a search i even looked at the business academy videos.

any advice is welcome..