Search found 93 matches

by charms
Thu Jul 03, 2014 10:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

Re: How to document code (such as JavaDoc?)

Ok, thanks for your inputs. Currently I'm thinking about an own small solution creating a plugin. But if this results in too much work I'll contact him.
by charms
Thu Jul 03, 2014 8:10 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

Re: How to document code (such as JavaDoc?)

I think I had too much wine and a bad moment when writing my last entry. :oops: I changed it. I apologize for my writing. I'm developing a commercial product with Livecode and am a very happy customer. I think I wanted to write that the plugin is not maintained anymore and therefore dead. Hope it di...
by charms
Wed Jul 02, 2014 11:43 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

Re: How to document code (such as JavaDoc?)

Seems like this stack is outdated.
by charms
Wed Jul 02, 2014 11:15 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

Re: How to document code (such as JavaDoc?)

Well we have actually tested it. First of all the links on the LiveCode webpage didn't work anymore. The site had changed in the meantime. Even though it still looked like it was supported I think the last update was done in 2012. We were able to download a test version. However we didn't get it to ...
by charms
Thu Jun 26, 2014 10:24 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

Re: How to document code (such as JavaDoc?)

Hi Bernd, Thanks for the links. JavaDoc is a standardized way to document functions and classes in Java. When you run JavaDoc it will create browsable HTML pages with all the functions and descriptions. Here is a link that describes it: http://www.write-technical.com/126581/javadoc/javadoc-info.htm ...
by charms
Wed Jun 25, 2014 6:28 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to document code (such as JavaDoc?)
Replies: 15
Views: 16122

How to document code (such as JavaDoc?)

Hello,

Is there a recommended way to document code such as own handlers? Something similar to JavaDoc so that it is possible to browse and search for handlers?

Thanks,
Chris
by charms
Tue Jun 03, 2014 10:12 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Unable to update datagrid with new data
Replies: 2
Views: 2379

Re: Unable to update datagrid with new data

Hrrrrmmmmm....... I must admit..... Using two datagrids works just fine.... It's different from what I'm used to with other languages.... and I don't know if there are performance impacts because of the 16000 lines.... but at least it works Please note that copying the datagrid could have side effec...
by charms
Tue Jun 03, 2014 9:13 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Unable to update datagrid with new data
Replies: 2
Views: 2379

Re: Unable to update datagrid with new data

I think my friend just gave me the solution. I think the functionality above is only possible by using two datagrids and just hide and show them vice versa when the data is changing. After failing with the datagrid I've created my own small datagrid with objects inside a group. I have used the simil...
by charms
Sat May 31, 2014 1:36 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Unable to update datagrid with new data
Replies: 2
Views: 2379

Unable to update datagrid with new data

Followed this tutorial which explains how to add checkboxes to datagrid rows instead of using selection (required because of mobile devices): http://lessons.runrev.com/m/datagrid/l/26382-how-do-i-work-with-checkboxes-in-a-data-grid Nice, but it does not explain how to implement a handler that will e...
by charms
Sat May 31, 2014 1:24 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How can I access the SD card on Mobile Devices
Replies: 4
Views: 2962

Re: How can I access the SD card on Mobile Devices

If there is a sdcard installed and accessible on Android it will be /mnt/sdcard or /scard depending on the Android Version you are using. This is what their specs say. It works for me on a Samsung Galaxy tablet. if there is a folder "/sdcard" then set the defaultFolder to "/sdcard" else set the defa...
by charms
Sat May 31, 2014 1:18 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hide a folder
Replies: 4
Views: 2502

Re: Hide a folder

On Linux and MacOS the equivalent would be to set a dot in front of the folder. You could just move the directory from it's original filename to ".yourfolder".

shell("mv yourfolder .yourfolder")
by charms
Sat May 24, 2014 10:10 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How do I get the index of a datagrid row?
Replies: 2
Views: 2345

Re: How do I get the index of a datagrid row?

Thanks Bangkok, this solved my problem. on FillInData pData -- This message is sent when the Data Grid needs to populate -- this template with the column data. pData is the value to be displayed. -- Example: --set the text of field 1 of me to pData set the icon of button "iconBtn" of me to ("fs_" & ...
by charms
Sat May 24, 2014 9:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How do I get the index of a datagrid row?
Replies: 2
Views: 2345

How do I get the index of a datagrid row?

Hi there, I need to get the index of the current pData entry in the behaviour script. I have a button in the row template that requires the index for further processing. Does anybody know how I can get it? I tried with dgIndex of me but somehow this doesn't work. on FillInData pData -- This message ...
by charms
Thu May 22, 2014 11:28 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Datagrid & Multi-Row Hilite possible on mobile?
Replies: 5
Views: 3854

Re: Datagrid & Multi-Row Hilite possible on mobile?

Thanks for your answers. I will try to parse the line number in to the button and when a button is clicked add the line numbers to a group property.

Kind regards,
Chris

Go to advanced search