Search found 105 matches
- Thu Oct 26, 2017 2:53 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
OK, I got the standalone to work after selecting BOTH datagrid and table options in the DP 9 version.
- Thu Oct 26, 2017 2:39 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
So I am stumped: Program works fine in LiveCode, but fails as standalone. I have even tried selecting all the inclusions and it still fails. Why could this be?
Win 10 - LiveCode 9 DP 10
Win 10 - LiveCode 9 DP 10
- Thu Oct 26, 2017 1:04 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
Never mind! It was not opening within DP 10. I see the option now. I'll report back if it works (first try failed).
- Thu Oct 26, 2017 1:00 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
So under DP 10 I cannot find the option to select "DataGrid" as an inclusion. Program seems to work when I can select "DataGrid" as an inclusion (earlier version of LiveCode) - but is failing to work in DP 10. I even selected EVERY possible inclusion and it still failed. No break points either.
I'm ...
I'm ...
- Thu Oct 26, 2017 1:39 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
Hey!
I selected the option to let me choose the "inclusions". I then selected "data grid" and saved it as a standalone application. That caused it to process the files with drag-n-drop!
Thanks!
I selected the option to let me choose the "inclusions". I then selected "data grid" and saved it as a standalone application. That caused it to process the files with drag-n-drop!
Thanks!
- Thu Oct 26, 2017 12:58 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
Does not work on Win 7 or Win 10.
Any ideas? Am I missing an option in Standalone settings?
Any ideas? Am I missing an option in Standalone settings?
- Thu Oct 26, 2017 12:51 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Re: Program works fine, but fails as standalone
Hi!
LiveCode is 9.0 DP 10 (?).
OS is Win 10
I'll try on Win 7 too.
LiveCode is 9.0 DP 10 (?).
OS is Win 10
I'll try on Win 7 too.
- Wed Oct 25, 2017 10:35 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Program works fine, but fails as standalone
- Replies: 10
- Views: 13024
Program works fine, but fails as standalone
Hi all,
I have a program that works fine when opened within LiveCode. I then save it as a standalone and the main part of the program no longer works! I am dragging and dropping files into a data grid. It changes colors like I want based on DragEnter and DragDrop, but it fails to process the files ...
I have a program that works fine when opened within LiveCode. I then save it as a standalone and the main part of the program no longer works! I am dragging and dropping files into a data grid. It changes colors like I want based on DragEnter and DragDrop, but it fails to process the files ...
- Wed Oct 25, 2017 7:00 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: "/" or "\" - LiveCode is inconsistent
- Replies: 6
- Views: 5808
Re: "/" or "\" - LiveCode is inconsistent
Just curious - is this a bug or just me experiencing this? I could use a workaround to avoid the issue, but if updating will resolve it I might do that, too.
- Wed Oct 25, 2017 3:33 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: "/" or "\" - LiveCode is inconsistent
- Replies: 6
- Views: 5808
Re: "/" or "\" - LiveCode is inconsistent
Community Edition 8.0.2 | Build 13025
- Wed Oct 25, 2017 2:55 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: "/" or "\" - LiveCode is inconsistent
- Replies: 6
- Views: 5808
"/" or "\" - LiveCode is inconsistent
Hi all,
I've noticed that if I grab a directory of a file using code like this:
on dragDrop
repeat for each line theLine in the dragData["files"]
put URL ("file:" & theLine) into theFilePath
end repeat
end dragDrop
It returns something like this:
C:\Users\ID\Desktop\Folder Here\File Here ...
I've noticed that if I grab a directory of a file using code like this:
on dragDrop
repeat for each line theLine in the dragData["files"]
put URL ("file:" & theLine) into theFilePath
end repeat
end dragDrop
It returns something like this:
C:\Users\ID\Desktop\Folder Here\File Here ...
- Tue Oct 24, 2017 2:26 am
- Forum: Talking LiveCode
- Topic: Dragging and dropping multiple files into a datagrid
- Replies: 1
- Views: 2592
Re: Dragging and dropping multiple files into a datagrid
Hey y'all,
I figured out how to get the info I want. Now I am just trying to figure out a way to open each file and get some meta data for each file!
But here's the code I used to list all the files on a drag and drop:
on dragEnter
set the acceptDrop to true
repeat for each line theLine in the ...
I figured out how to get the info I want. Now I am just trying to figure out a way to open each file and get some meta data for each file!
But here's the code I used to list all the files on a drag and drop:
on dragEnter
set the acceptDrop to true
repeat for each line theLine in the ...
- Tue Oct 24, 2017 12:25 am
- Forum: Talking LiveCode
- Topic: Dragging and dropping multiple files into a datagrid
- Replies: 1
- Views: 2592
Dragging and dropping multiple files into a datagrid
Hi all,
I want to drag and drop multiple files into a data grid. These files would come from a folder on the local computer, not from the livecode application itself. I then want those files locations to put put into a column into the datagrid. Any thoughts?
Is it correct to start with "dragEnter ...
I want to drag and drop multiple files into a data grid. These files would come from a folder on the local computer, not from the livecode application itself. I then want those files locations to put put into a column into the datagrid. Any thoughts?
Is it correct to start with "dragEnter ...
- Tue Oct 17, 2017 4:11 pm
- Forum: Talking LiveCode
- Topic: Adding checkbox buttons from script
- Replies: 10
- Views: 14803
Re: Adding checkbox buttons from script
I have created a data grid with two columns, but I cannot figure out how to make the first column a text column (or a checkbox):

- Tue Oct 17, 2017 3:23 pm
- Forum: Talking LiveCode
- Topic: Adding checkbox buttons from script
- Replies: 10
- Views: 14803
Re: Adding checkbox buttons from script
Just looking at a data grid and it seems like exactly what I want! Thank you!
Once I import the data into the grid, is there anything special to turn the row into a checkbox? Or can you make just the first column a checkbox, and the other columns pure data. That might be good for my purposes ...
Once I import the data into the grid, is there anything special to turn the row into a checkbox? Or can you make just the first column a checkbox, and the other columns pure data. That might be good for my purposes ...