Search found 15 matches

by kbirand
Tue Nov 27, 2012 7:00 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: get the file size of a zip on a server
Replies: 10
Views: 8114

Re: get the file size of a zip on a server

Dear Jean-Marc,

Did you find a way to get remote file size ?

Koray
by kbirand
Sun Nov 25, 2012 12:33 pm
Forum: Internet
Topic: Parsing html / server
Replies: 4
Views: 8063

Re: Parsing html / server

Please do not attempt to obtain the IP address by querying the homepage of our website. We provide a specific page that returns just the IP address of the device making the request on http://bot.whatismyipaddress.com. You are free to query that server but please limit queries to no more than once p...
by kbirand
Sun Nov 25, 2012 3:48 am
Forum: Internet
Topic: Parsing html / server
Replies: 4
Views: 8063

Parsing html / server

I have been parsing whatismyipaddress.com with put url("http://whatismyipaddress.com/ip/8.8.8.8") into aaa and some lines of code which parse the result successfully but after a while I started to get: Too many queries<BR> You appear to be an automated script. Site terms and conditions do not allow ...
by kbirand
Sun Nov 18, 2012 3:53 pm
Forum: iOS Deployment
Topic: IOS Scroller with Remote Image
Replies: 6
Views: 6019

Re: IOS Scroller with Remote Image

Hi Koray, No need to embarrassment, really, it happens to even the best 8) It's a learning curve, after all. Btw, yours look like a nice promising app. Could you share iTunes Store link of final version, when it's finished? I'm sure that many of us would glad to have a look of it, well including me...
by kbirand
Sun Nov 18, 2012 12:48 pm
Forum: iOS Deployment
Topic: IOS Scroller with Remote Image
Replies: 6
Views: 6019

Re: IOS Scroller with Remote Image

Sure when it is finished, I am going to make it open source so that people can use it and develop it.
But it is going to take a while since I am just coding as a hobby.

Koray
by kbirand
Sat Nov 17, 2012 9:59 am
Forum: iOS Deployment
Topic: IOS Scroller with Remote Image
Replies: 6
Views: 6019

Re: IOS Scroller with Remote Image

Hi Koray, You've created a scroller but didn't tell what to do with it. Put this code into your card script, then it works. on scrollerDidScroll pX, pY set the hScroll of group "scrollGroup" to pX set the vScroll of group "scrollGroup" to pY end scrollerDidScroll Best, ~ Ender Nafi Oh I am so embar...
by kbirand
Sat Nov 17, 2012 3:11 am
Forum: iOS Deployment
Topic: IOS Scroller with Remote Image
Replies: 6
Views: 6019

IOS Scroller with Remote Image

Hi Everyone I have been trying to create an IOS Native Scroller with remote content inside. What I am doing is creating images (from http images), creating buttons and fields in a group called "scrollGroup" and then create a Native IOS Scroller to scroll inside the group. But Unfortunately I am way ...
by kbirand
Sat Nov 03, 2012 1:34 am
Forum: iOS Deployment
Topic: Create Cotrollers and place them in a scroller
Replies: 1
Views: 2148

Create Cotrollers and place them in a scroller

Hi Everyone, I need your help. Here is what I am trying to active: 1- Create multiple iphoneControlCreate "browser" the amount varies, I am getting how many controllers that I need from an external file. Then will do a repeat loop to create the browsers. I have managed to succeed till this point. 2-...
by kbirand
Fri Nov 02, 2012 10:59 pm
Forum: iOS Deployment
Topic: Using Video in IOS Apps.
Replies: 8
Views: 7925

Re: Using Video in IOS Apps.

I had mixed success using video. My initial strategy was this: 1)host video on a vimeo account, the pro account lets you stream vids 2) Logic for playing a video goes something like on playVid NameToPlay --check and see if nameToPlay&".txt" exists. If it does, then the video has successfully played...
by kbirand
Tue Oct 30, 2012 10:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

Re: CSV to Data Grid / date time sorting

I can't add another column because the data is generated by an other source. So it is dynamic. And also what I actually need is to be able to click on the triangle on the header and to be able to sort. Seconds is nice for just sorting initially but if I hide the column then i can not do any sorting....
by kbirand
Tue Oct 30, 2012 8:16 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

Re: CSV to Data Grid / date time sorting

It works perfectly but unfortunately it takes 13 seconds because of the repeat (The csv file has 11.000 lines) :cry:
Any other fast suggestions ?
by kbirand
Tue Oct 30, 2012 6:56 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

Re: CSV to Data Grid / date time sorting

I feel like an idiot. I am not used to live code scripting so struggling a a lot.
I could not succeed with andy of the methods. Can you paste your code to my code so that I can see how it works..

Thanks
Koray Birand
by kbirand
Tue Oct 30, 2012 5:00 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

Re: CSV to Data Grid / date time sorting

Dear Guglielmo,

Have you seen my code... Because I could not figure out where to put your line of code.

Thanks,
Koray Birand
by kbirand
Tue Oct 30, 2012 2:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

Re: CSV to Data Grid / date time sorting

Ok How can I merge my column 5 (date) and column 6 (time) and convert them to seconds before placing them into a data grid.

Thanks.
Koray Birand
by kbirand
Tue Oct 30, 2012 1:40 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: CSV to Data Grid / date time sorting
Replies: 13
Views: 8163

CSV to Data Grid / date time sorting

Hi Everyone, I am new to Livecode. I have a simple csv file which consists of 6 columns user | action | folder | ip | date | time john | copy | /users/cccc/ | 192.143.23.45 | 29.01.2009 | 17:43 I have no problem reading it out to a data grid table and sorting them. The only problem I am facing is so...