Search found 62 matches
- Sun May 20, 2018 1:49 pm
- Forum: Bug Triage
- Topic: possible proxy pac file bug
- Replies: 0
- Views: 2297
possible proxy pac file bug
I have a user of a windows standalone built with v9.0. This is the log from attempts to connect to the internet. Any ideas what I should do? _proxyForURL_proxyForURL end with none foundProxy for URL: Unsupported proxy 'https://msproxy.gwsc.vic.edu.au:8080', libcurl is built without the HTTPS-proxy s...
- Wed Feb 14, 2018 9:31 pm
- Forum: Talking LiveCode
- Topic: is a color
- Replies: 15
- Views: 3096
Re: is a color
hh, could you add something about that to the dictionary?
- Wed Feb 14, 2018 11:15 am
- Forum: Talking LiveCode
- Topic: is a color
- Replies: 15
- Views: 3096
Re: is a color
I was testing to see if I need to do any custom validation for an input field for a color and just added a 0 to the end value, expecting it to be invalid. Who was to know that "is a color" would allow rgb values out of range. Further to that who would know that setting a backcolor to an rgb value th...
- Wed Feb 14, 2018 2:38 am
- Forum: Talking LiveCode
- Topic: is a color
- Replies: 15
- Views: 3096
is a color
It tried testing input for "is a color"
I found "255,255,1000" returns true.
It this expected?
Should rgb colors return true when they have a value that is out of range, such as >255 for in individual value?
I found "255,255,1000" returns true.
It this expected?
Should rgb colors return true when they have a value that is out of range, such as >255 for in individual value?
- Fri Feb 09, 2018 12:50 pm
- Forum: Internet
- Topic: Dropbox OAuth help
- Replies: 5
- Views: 2205
Re: Dropbox OAuth help
Sorry Klaus, I think I misunderstood your situation. I was thinking of cases using the OAuth 2 access token when files are transferred between a master desktop program and a users client desktop program via a dropbox app. Encryption and decryption of a simple type can be coded into the programs so t...
- Fri Feb 09, 2018 7:18 am
- Forum: Internet
- Topic: Dropbox OAuth help
- Replies: 5
- Views: 2205
Re: Dropbox OAuth help
Use OAuth 2 access token instead of flow.
At https://www.dropbox.com/developers/apps/ click on your app, leave Allow implicit grant set as Allow; then Generate access token to use in your app.
At https://www.dropbox.com/developers/apps/ click on your app, leave Allow implicit grant set as Allow; then Generate access token to use in your app.
- Sun Dec 18, 2016 8:57 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Problems printing a field copied from a datagrid [SOLVED]
- Replies: 7
- Views: 3008
Re: Problems printing a field with grid lines
I submitted a bug report at http://quality.livecode.com/show_bug.cgi?id=19016
v or h grid lines causes the bug.
A table is filled in with black when printed.
Curiously, printing to pdf is normal, although printing to the adobe pdf printer causes the same issue.
v or h grid lines causes the bug.
A table is filled in with black when printed.
Curiously, printing to pdf is normal, although printing to the adobe pdf printer causes the same issue.
- Mon Jun 13, 2016 11:56 am
- Forum: Bug Triage
- Topic: crash on repeated filters with large text
- Replies: 2
- Views: 1685
crash on repeated filters with large text
I have a been getting crashes everytime in livecode 8 when repeating filters of a large text more than about 5 times. The text is over 60000 lines with about 20 tabbed items per lines. The first 2 tab delimited items of each line are a name and an ID. Sometimes I need to get the line for a name or f...
- Sat May 28, 2016 11:28 pm
- Forum: Announcements
- Topic: Dropbox Livecode Library
- Replies: 76
- Views: 36029
Re: Dropbox Livecode Library
Also, if there are those who would like to continue my work on my shared stack for dropbox API v2 that would be great for the community.
See: http://livecodeshare.runrev.com/stack/794/DropboxAPI_2
See: http://livecodeshare.runrev.com/stack/794/DropboxAPI_2
- Mon May 09, 2016 2:42 pm
- Forum: Bug Triage
- Topic: Error message in Excel when trying to paste from LC 8
- Replies: 4
- Views: 2482
Re: Error message in Excel when trying to paste from LC 8
The error ("Microsoft Excel cannot paste the data") occurs when I copy any text to the clipboard as text in LC8 the attempt to paste it in an excel spreadsheet. The paste text button in excel on the toolbar is also dimmed indicating that I cannot paste text. Only paste special works. I have to paste...
- Sat May 07, 2016 10:10 pm
- Forum: Bug Triage
- Topic: Error message in Excel when trying to paste from LC 8
- Replies: 4
- Views: 2482
Error message in Excel when trying to paste from LC 8
Is anyone else experiencing a problem trying to paste into excel from LC8?
No problems pasting same clipboard text to other programs.
No problems pasting same clipboard text to other programs.
- Fri Mar 25, 2016 2:30 am
- Forum: Internet
- Topic: Dropbox Help
- Replies: 30
- Views: 10492
Re: Dropbox Help
set your itemdel to slash
- Fri Mar 25, 2016 1:23 am
- Forum: Internet
- Topic: Dropbox Help
- Replies: 30
- Views: 10492
Re: Dropbox Help
get the list of files in the folder
use a repeat loop so that for each file, get the last item
and add it to a list of file names
use a repeat loop so that for each file, get the last item
and add it to a list of file names
- Fri Mar 25, 2016 12:51 am
- Forum: Internet
- Topic: Dropbox Help
- Replies: 30
- Views: 10492
Re: Dropbox Help
Build a list with a repeat loop on he list of files
eg:
repeat for each line rLine in pText
put fGetlastChunk(pDelim,rLine) & cr after tList
end repeat
eg:
repeat for each line rLine in pText
put fGetlastChunk(pDelim,rLine) & cr after tList
end repeat
- Thu Mar 24, 2016 11:45 pm
- Forum: Internet
- Topic: Dropbox Help
- Replies: 30
- Views: 10492
Re: Dropbox Help
You can do a repeat loop through the paths and collect the last items and just list them.