Contacting the on-rev team

2020-05-26 Thread Greg "Pink" Miller via use-livecode
Anyone know a good way of getting ahold of the on-rev support team? I tried emailing supp...@on-rev.com and webmas...@on-rev.com and both bounced. (I need ModRewrite enabled) ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: Buying a used apple to run ios simulator.

2020-01-15 Thread Greg (Pink) Miller via use-livecode
First, it is around 9 years old, it can't run Catalina and i am 90% sure it cannot run Mojave. Sometime in the near future you will no longer be able to upgrade to the latest version of XCode at which point you will need a new Mac. It is possible that you already cannot run it. So, if you want th

Re: Changing extention on script only stack

2020-01-15 Thread Greg (Pink) Miller via use-livecode
My need for external editors is mostly for Windows (again, the Windows machines I use are very very old). I also like reviewing and editing code on my iPad when I am on the go, so having external scripts is useful even when I don't have LC running. What else am I going to do at a red light? but I

Re: Changing extention on script only stack

2020-01-14 Thread Greg (Pink) Miller via use-livecode
ScriptTracker was definitely the tool I needed. I didn't need an external script for any reason other than faster editing. On Sat, Jan 11, 2020 at 10:43 PM Brian Milby via use-livecode < use-livecode@lists.runrev.com> wrote: > And if you want to edit scripts in an external editor, my tool may be

Re: Mad Pink's Ultra Deluxe Control Panel Uber-Widget

2020-01-09 Thread Greg (Pink) Miller via use-livecode
eta state. If I have time at some point to poke around > more I will see if I can create with this widget. > > Thanks for your work on this. > > Regards, > > Martin Koob > > > > > > > On Jan 8, 2020, at 2:58 PM, Greg (Pink) Miller via use-livecode < > u

Re: Changing extention on script only stack

2020-01-08 Thread Greg (Pink) Miller via use-livecode
I could just copy the script into the stack script at build time, but I was hoping not to. Here's the story... this particular program is being developed on a painfully old and slow machine. Livecode's script editor works horribly on this machine, there is a horrible lag in typing and cutting, cop

Re: Mad Pink's Ultra Deluxe Control Panel Uber-Widget

2020-01-08 Thread Greg (Pink) Miller via use-livecode
> > That is interesting. I use PowerTools instead of the built-in tool bar so > I had never noticed that. (It works with PowerTools, a highly recommended > plugin.) When I switch to the built-in toolbar, it does not drag over. For > me, going through the New Widget menu did work on both Mac and Win

Mad Pink's Ultra Deluxe Control Panel Uber-Widget

2020-01-08 Thread Greg (Pink) Miller via use-livecode
I've been meaning to share this with the community for a while, but life and work have been getting in the way. I haven't been able to work on it in a while I've been working on this widget for a while and it needs more work and testing. Actually, this started off as a group of individual widgets,

Changing extention on script only stack

2020-01-08 Thread Greg (Pink) Miller via use-livecode
I have my main stack "PanelManager.livecode" with a behavior script with a file name "panamana.lcs" Upon compiling for Windows, the script file gets included in the folder with the program but is renamed "panamana.lcs.livecode" I would prefer not to have ".livecode" appended onto it. > I have a

Changing extention on script only stack

2020-01-07 Thread Greg (Pink) Miller via use-livecode
I have a script only stack that is the behavior of a stack that i wish to compile. When I compile it for Windows, I have a .livecodescript file in the folder. Is it possible to change that extension to .lcs So far all the shots at this I've taken end up appending .livecode to the end. Can this be

Re: Need trig & LCB help

2019-10-30 Thread Greg (Pink) Miller via use-livecode
This works much better than what I was trying. THANKS! - Replace the last part of your handler with the following. variable tBNum as Number variable tBCenters as List put tBigRad - tLilRad into tInnerRad put the number of elements in mData into tBNum p

Need trig & LCB help

2019-10-29 Thread Pink via use-livecode
In a nutshell, I am working on a widget that consists of a wheel with buttons. Currently I've just manually calculated out where 8 buttons go, and it works well, but I am trying to set it up with a user definable number of buttons contained in array "mData." Need help checking my math (and LCB

Re: Need Data Grid help

2019-05-05 Thread pink via use-livecode
Bingo, that works perfectly JJS via use-livecode wrote > On Sun, May 5, 2019 at 2:45 PM pink via use-livecode < > use-livecode@.runrev >> wrote: > >> Below is the script for a data grid and the stack script. >> >> The data grid times certain jobs, so if you

Need Data Grid help

2019-05-05 Thread pink via use-livecode
uot;] put the seconds into sTimer["data"][pNum]["starttime"] end onStartTimer command onEndTimer pNum local tCurrent put the seconds into tCurrent subtract sTimer["data"][pNum]["starttime"] from tCurrent put round(tCurrent/60) into tCurrent ad

Re: Need crash course in Dropbox library

2019-02-19 Thread pink via use-livecode
ead >     subtract length(it) from tBytesRemaining >     _processChunk it >     put min(tChunkSize, tBytesRemaining) into tBytesThisRead > end repeat > close file tMyFilePath > > Your upload would be done in the '_processChunk' handl

Re: Need crash course in Dropbox library

2019-02-18 Thread pink via use-livecode
I'm getting a little closer... 1. how do I break fileContents into smaller pieces? 2. how do I properly calculate the pOffset value? Matthias Rebbe via use-livecode wrote > Hey pink > Yes, you are just going to put 150MB at a time into the pData parameter > and > ship it. >

Re: Need crash course in Dropbox library

2019-02-17 Thread pink via use-livecode
dbox", ("/folder/some.txt")) > intoField"Name1"ofcard1 > > writing-- > > *put*phx_DropboxWriteFile("sandbox", ("/folder/some.txt"), "text/html", > true, myName) intofield"udontcme"ofcard1 > > --close

Re: Need crash course in Dropbox library

2019-02-15 Thread pink via use-livecode
pData and pData is just a chunk of the data? How do I make that chunk out of the whole and where do I get pOffset from? Matthias Rebbe via use-livecode wrote > Hey, pink, thanks for the clarification. > First of all, is there a reason why you are doing it this way instead of > using dropbox

Re: Need crash course in Dropbox library

2019-02-15 Thread pink via use-livecode
hen you have the syntax right, switch the calls to the LC > library. > If you still need help check back here and we'll see what else you might > need. > > On Thu, Feb 14, 2019 at 8:24 PM pink via use-livecode < > use-livecode@.runrev >> wrote: > >> was pla

Re: Need crash course in Dropbox library

2019-02-14 Thread pink via use-livecode
was planning on using the LC Dropbox library - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode

Need crash course in Dropbox library

2019-02-14 Thread pink via use-livecode
;t use the standard upload, I need to use the upload session, but I am really unsure as to how it works. Can someone point me towards what i need, or give me an example of how to use the upload session commands to upload a large file? THanks! - --- Greg (pink) Miller mad, pink and dangero

Re: Navigator 7.0.1rc1 is available -- Multi-target windows!

2019-01-04 Thread pink via use-livecode
char 1 to 5 of the name of tID is "group","---grp ---" & the short name of tID & "---",toUpper(char 1 of the name of tID) && the short name of tID) && "id[" & the short ID of tID & "]" && the height of tID &a

Re: Navigator 7.0.1rc1 is available -- Multi-target windows!

2019-01-04 Thread pink via use-livecode
o manually edit the prefs file - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: sending a JSON string

2018-10-17 Thread pink via use-livecode
You can also try this: set the httpheaders to "Content-Type: application/x-www-form-urlencoded" delete URL("https://api.thingspeak.com/channels/564256/feeds.json?api_key=EQKTUQQKVH83D1RE";) - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http:

Re: hard-to-use software

2018-09-11 Thread pink via use-livecode
This was a fun read. I always try and make software with "advanced" layers and settings so that it can be used simply right away, but you make it as complicated as you want it to be. - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolut

LCB - Text entry/edit in a widget

2018-08-04 Thread pink via use-livecode
What I would like to make is a widget that essentially functions as a multi field form. I know how to add text to a widget, but how can I make editable by the user? Essentially, how can I create one or more "fields" in a widget? - --- Greg (pink) Miller mad, pink and dangero

Re: DataGrid problems

2017-12-26 Thread pink via use-livecode
a... that feels better yes that is what I was missing on receviedHelp repeat 100 times answer "Thank you!!!" end repeat end receviedHelp - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/

DataGrid problems

2017-12-26 Thread pink via use-livecode
t the backgroundColor of grc "indicator" to red end if end FillInData on mouseUp put the dgData of me into tData put the dgIndex of me into tX put tData[tX]["_id"] into tID answer tID end mouseUp - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent

Re: New Books/Dictionary

2017-11-26 Thread pink via use-livecode
m the IDE, and in or at places I may not want to bring my laptop. There's more, but I think that covers most of it - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f2

New Books/Dictionary

2017-11-25 Thread pink via use-livecode
Will it be possible to buy electronic versions of the new dictionary and lessons book? - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use

Re: ArrayToJSON in LCServer ?

2017-11-25 Thread pink via use-livecode
l the time without issue. - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit thi

Re: Need Dropbox guidance

2017-10-19 Thread pink via use-livecode
d it is making sense :) - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit t

Re: Need Dropbox guidance

2017-10-18 Thread pink via use-livecode
THat worked... so now how do I download the file and save it? I tried doing the opposite, but the file I got didn't come out right. dropboxDownload myToken, "/data.livecode" put it into URL ("binfile:" & tFilePath) - --- Greg (pink) Miller mad, pink and d

Re: Need Dropbox guidance

2017-10-18 Thread pink via use-livecode
017-10-18T11:24:50Z", "server_modified": "2017-10-18T11:24:50Z", "rev": "a5d9e1493", "size": 34, "content_hash": "bc2bef46bb89315313ec80962ad1f533595bf2eb2231be92d437bd191ffd5d24"} - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtim

Need Dropbox guidance

2017-10-17 Thread pink via use-livecode
ot;/" & tName & ".mpk" into tLocalPath put "/mptest/" & tName & ".livecode" into tDBpath create invisible stack tName set the testingMeData of stack tName to "123456abc" dropboxUpload myToken, tDBPath, "overwrite", fals

Re: OAuth2 (LC 9) on mobile?

2017-10-13 Thread pink via use-livecode
Have you tried running the app in the iOS simulator as well? - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use

Re: OAuth2 Status?

2017-10-13 Thread pink via use-livecode
e user get rid of it? Is there something programmatically we could add to allow them to more easily dismiss the panel? - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f2

Re: OAuth2 Status?

2017-10-12 Thread pink via use-livecode
ality.livecode.com/show_bug.cgi?id=20559> - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com Ple

Re: OAuth2 Status?

2017-10-11 Thread pink via use-livecode
Other than the code itself, is there anything I need to do in the stack to make this work? - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use

Re: OAuth2 Status?

2017-10-09 Thread pink via use-livecode
www.bizographics.com:443 ib.anycast.adnxs.com:443 fanboy-web-linkedin-prod-1790689846.us-east-1.elb.amazonaws.com:443 - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

Re: OAuth2 Status?

2017-10-09 Thread pink via use-livecode
the result is empty (so is “it”) - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com

OAuth2 Status?

2017-10-09 Thread pink via use-livecode
use it yet? - --- Greg (pink) Miller mad, pink and dangerous to code -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Slack library?

2017-10-09 Thread pink via use-livecode
ields"]["1"]["value"] put "short" into tPostArray["fields"]["1"]["short"] put "def" into tPostArray["fields"]["2"]["title"] put 2 into tPostArray["fields"][&

Re: IconGrid widget v2.0.2

2017-10-01 Thread pink via use-livecode
I absolutely love this. In my a current app I had a stack of 18 SVG widgets that I was having a tough time getting to resize and look right (trying to expand it into Mac, PC and Android markets.) This makes things much much much easier. Works great on iOS - --- Greg (pink) Miller mad

Need a MergAV for dummies guide

2017-09-13 Thread pink via use-livecode
ot; before tTitle put ".mov" after tTitle mergAVCamStartRecording (specialFolderPath("documents") &"/" & tTitle ) end startRecordingVideo When I load it onto my iPhone I get: 634,0,0 control not created yet, 573,49,1 mergAVCamStartRecor

Re: CouchDB, DayBed, etc.

2017-08-27 Thread pink via use-livecode
I've used "LSON" in the past and had issues. Not with save files, but with socket transmission... I may play around a bit and see how things go - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nab

Re: CouchDB, DayBed, etc.

2017-08-23 Thread pink via use-livecode
ication, a lesson on creating a production ready server with SSL, and I am planning on a section about setting up a cluster. - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/CouchDB-DayBed-etc-tp4718761p47

Re: Daybed 2.0 - A Library for Apache CouchDB

2017-08-19 Thread pink via use-livecode
with Cloudant except for the sync functions. - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Daybed-2-0-A-Library-for-Apache-CouchDB-tp4718601p4718615.html Sent from the Revolution - User mailing list

Daybed 2.0 - A Library for Apache CouchDB

2017-08-18 Thread pink via use-livecode
s a "save stack" To-Do list: -continue updating/adding to the quick functions -add option to save to a per app database instead of per user (this will help make sync compatible with Cloudant) -toying with other save options besides the stack (open to suggestions) - --- Greg (p

Re: LC Global - my experience

2017-06-17 Thread pink via use-livecode
, I appreciate not having to put a huge investment into lodging etc... All in all, the advantages of this setup far out weight the disadvantage of not having a few mails and going out drinking with y'all. So my question is... can the Livecode folks setup a virtual bar? - --- Greg

Re: Seeking recommendations / suggestions for use of library stacks.

2017-05-16 Thread pink via use-livecode
using stack "fastJSONlib" end releaseStack note that using "is among" and "is not among" is not optional otherwise you end up in an infinite loop - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.

Re: ANN: new team member

2017-05-12 Thread pink via use-livecode
Well congrats Ali... remember to keep the firmware up to date and just to warn you, there are no breakpoints - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-new-team-member-tp4714718p4714761.html

Re: Wouldn't it be nice to have a "back/forward" button in script editor?

2017-05-11 Thread pink via use-livecode
Have you looked into lcTaskList? I often use it to give myself quick bookmarks/placeholders, so long as you already know where you are going to want to be. It is reasonably priced and tops my listed of recommended plugins. - --- Greg (pink) Miller mad, pink and dangerous to code -- View

Re: [ANN] tinyDictionary 0_8_1_0

2017-05-04 Thread pink via use-livecode
notes persist across different versions of LiveCode, or would the need to added again each time a new version of LiveCode comes out? - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-tinyDictionary-0-8-

Re: develop a hybrid app

2017-05-04 Thread pink via use-livecode
ut I doubt it can be done in LiveCode without some sort of external being built. Your best bet would be to have reminders setup to say "please switch on silent mode" What else do you want such an app to do? - --- Greg (pink) Miller mad, pink and dangerous to code -- View this messa

Re: Recording audio with LC on OSX?

2017-04-07 Thread pink via use-livecode
to "cancel" a shell command that is still running in LC? - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Recording-audio-with-LC-on-OSX-tp4713795p4713804.html Sent from the Revolution - Us

Trying to make an HTML5 app

2017-04-06 Thread pink via use-livecode
5 customer: 1. What do I need to do to get past the error above? 2. Does the commercial version of HTML5 work better (or at least differently) than the Community version? 3. Is there a "best" version of Livecode to use for compiling HTML5 apps? ----- --- Greg (pink) Miller mad, pink

Re: Private Repo Services

2017-04-03 Thread pink via use-livecode
I'm a fan of GitLab, you can host your own or use their service for free. See: https://about.gitlab.com/products/ - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Private-Repo-Ser

Re: Problem with converting time

2017-03-20 Thread pink via use-livecode
My experience is that HostM's time is set to GMT when I run: put 1489755600 into tVar convert tVar into dateitems put tVar I get: 2017,3,17,13,0,0,6 - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabbl

Re: Built-in JSON functions not working in standalone

2017-01-30 Thread pink via use-livecode
e functions to your project in order to > parse/encode JSON. > > Bob > >> On Jan 30, 2017, at 4:12 PM, pink via use-livecode < > use-livecode@.runrev > > wrote: >> >> The JSONToArray and ArrayToJSON functions are built into Livecode now. >> Aga

Re: Built-in JSON functions not working in standalone

2017-01-30 Thread pink via use-livecode
the standalone that it fails. Trevor DeVore via use-livecode wrote > On Mon, Jan 30, 2017 at 11:53 AM, pink via use-livecode < > use-livecode@.runrev >> wrote: > >> JSON Library is the LCB library with the command JsonImport and >> JsonExport. >> >&g

Re: Built-in JSON functions not working in standalone

2017-01-30 Thread pink via use-livecode
JSON Library is the LCB library with the command JsonImport and JsonExport. Those are not the commands that I am using. I am using JSONToArray which is part of the mergjson external. I've included it in builds and I am still stuck. - --- Greg (pink) Miller mad, pink and dangerous to

Built-in JSON functions not working in standalone

2017-01-30 Thread pink via use-livecode
doing whatever script I have it doing. Again, this is just in the standalone, everything works fine in the IDE. Did I miss a step in order to get these functions to work in my standalones? - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://run

Looking for advice on database syncing

2017-01-30 Thread pink via use-livecode
cal document and upload it, download server version - --- Greg (pink) Miller mad, pink and dangerous to code -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Looking-for-advice-on-database-syncing-tp4712046.h

Re: Exit without quitting

2017-01-19 Thread pink via use-livecode
I have a program that uses exit to top quite a lot, I compiled it for Windows, Mac, Linux and iOS. I've never had the program quit out on me when it hits the command. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Exit-without-quitting-tp4711748p4711755.html Sen

Re: [OT] KOUSEK (or replacement) code snippet manager replacement?

2017-01-13 Thread pink via use-livecode
stack" which you are more than welcome to play with. All of the snippet data is saved in the "arrayData" property of the tree widget. Warning... uses obnoxious hot pink on black color scheme, you may want to adjust ;) https://www.dropbox.com/s/1sx1a9dhulm4uuj/_MadPink_Notebook.livecode.zi

Re: how to create a list in easyJSON

2017-01-08 Thread pink via use-livecode
In the most recent version of easyJSON, numeric keyed arrays will turn into JSON arrays, older versions may vary. fastJSON does this by default, but it can be overridden by passing true into the keepNumeric parameter: arrayToJson(pArrayData, keepNumeric) for example: put arrayToJSON(inputArra

Re: how to create a list in easyJSON

2017-01-08 Thread pink via use-livecode
In the most recent version of easyJSON, numeric keyed arrays will turn into JSON arrays, older versions may vary. fastJSON does this by default, but it can be overridden by passing true into the keepNumeric parameter: arrayToJson(pArrayData, keepNumeric) for example: put arrayToJSON(myArray,true)

Re: how to create a list in easyJSON

2017-01-01 Thread pink
check the script... there should be a function: isNumericalArray this is the function which appears to be either not there, or is not functioning correctly -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/how-to-create-a-list-in-easyJSON-tp4711279p4711304.html

Re: how to create a list in easyJSON

2017-01-01 Thread pink
what version of easyJSON are you using? I just copied the library from: https://github.com/luxlogica/easyjson/blob/master/easyjson.lc used this code: put "12345" into tArray["one"][1] put "12345" into tArray["one"][2] put "12345" into tArray["one"][3] put "12345" into tArray["two"][

Re: how to create a list in easyJSON

2016-12-31 Thread pink
in a nutshell, easyJSON creates what you want by using numeric keys so: array[one][1] = 12345 array[one][2] = 12345 array[one][3] = 12345 array[two][1] = 12345 array[two][2] = 12345 would produce the results you are looking for (technically the numbers don't have to be sequential, it just has to

Re: Problem with "delete button"

2016-12-19 Thread pink
the identified issue that was causing the crash involved the fact that the buttons were moving just prior to being deleted... so what I've done in the meantime was to turn the visible flag to false and then on the beginning of the next turn, I delete all the invisible buttons... works well -- V

Re: Problem with "delete button"

2016-12-19 Thread pink
So am I the only one who gets excited when bugs are confirmed? It's like "Yay! It's not me this time!" -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Problem-with-delete-button-tp4711069p4711078.html Sent from the Revolution - User mailing list archive at Nabbl

Re: Problem with "delete button"

2016-12-19 Thread pink
In a nutshell: I have a stack that I've been tinkering with for while. There is a particular handler in which there is a "delete button" command which causes Livecode to crash in 8.1 thru 8.1.3 (I don't have any versions of Livecode prior to 8.1 right now). Everything works fine in 7.1.4 and 6.7, s

Problem with "delete button"

2016-12-18 Thread pink
so I've already submitted a bug report for this, but I am trying to find a work around in the meantime... I'm developing a turned based game, on each turn, new buttons get added to the board, and it some buttons will get removed. There in lies the problem, Livecode keeps crashing when I hit the "d

Re: Start using remote stack

2016-12-12 Thread pink
Since "it" is the downloaded script, what if you tried this with a hidden button: get "https://www.domain.com/folder/stack.livecodescript"; set the script of button "hiddenGems" to it insert the script of button "hiddenGems" into front -- View this message in context: http://runtime-revolut

Re: Cannot get a compiled app to work

2016-12-08 Thread pink
When I first posted, I mentioned that the program worked in the simulator... that was entirely accurate... I tested the app in the simulator, but when I went to the section where the SVG Text widget should have been displayed, it wasn't there. I've tried this out a few times, including just making

Re: Cannot get a compiled app to work

2016-12-07 Thread pink
I gave this a try, I switched to "Select Inclusions" and selected the SVG Text widget. It still does not work. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Cannot-get-a-compiled-app-to-work-tp4710891p4710935.html Sent from the Revolution - User mailing list a

Re: Saving data/settings

2016-12-07 Thread pink
CouchDB Library is here: https://github.com/madpink/couchdb4livecode Forum thread here: http://forums.livecode.com/viewtopic.php?f=12&t=24925&hilit=couchdb -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Saving-data-settings-tp4710911p4710927.html Sent from the

Saving data/settings

2016-12-07 Thread pink
I'm interested in learning how people save data and settings for applications, especially on mobile devices. The method I have been using is to create an invisible data stack and save the data as custom properties. I like this the most because I tend to put most of my data and settings into arrays

Re: Cannot get a compiled app to work

2016-12-07 Thread pink
alright... after hours of messing around with the program, I have found the cause... I was using Hermann's SVGText widget... once I removed it, the program compiled and worked correctly... so, why would the widget work correctly on the simulator but not an actual device? I haven't really dabbled

Re: Cannot get a compiled app to work

2016-12-06 Thread pink
I've checked the log, and I'm not sure what to make of it... Here's the hilights: Incident Identifier: AFAA6B71-1B35-4D4C-8724-FF8718751FC9 CrashReporter Key: f7ae25e6109f1f1c31242e123b0dda7eb3f1df37 Hardware Model: iPad2,6 Process: MadPink Planning Board 2.1.6 [263] Path:

Cannot get a compiled app to work

2016-12-06 Thread pink
So, I made some major revisions to an app that I've been working on, it works fine in a the iOS simulator, but when I put the app on my iPad all I get is the splash screen for a few seconds and then it closes immediately. I've compiled and added through Xcode... I also tried making a beta version a

Re: Non-Public API Usage

2016-12-04 Thread pink
I switched back to 8.1.2 RC1 and compiled. I submitted to Apple and the result was just the "Missing Push Notification Entitlement" message. So whatever the problem is, it must be specific to RC2. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Non-Public-API-Usa

Re: Non-Public API Usage

2016-12-03 Thread pink
I have not used those names, so I submitted it: http://quality.livecode.com/show_bug.cgi?id=18958 -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Non-Public-API-Usage-tp4710840p4710842.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Non-Public API Usage

2016-12-03 Thread pink
I compiled and submitted an app using iTunes Connect. I received the following rejection message. I compiled using Livecode 8.1.2 rc2, I have Xcode 8.1 installed. I tried recompiling a few times and got the same results each time. How do I fix this? Dear developer, We have discovered one or mor

Re: [OT] Website Design Apps-Mac

2016-10-17 Thread pink
I would toss in another vote for Rapidweaver. It is frequently included in bundles on sites like StackSocial and Bundlehunt, and goes on sale occasionally... so unless you need it immediately, you can get it cheap if you give it some time. To get the most out of Rapidweaver, I highly recommend y

Re: Passing Constants or Variables as Command Params

2016-10-14 Thread pink
is this your actual script? if it is, here are a few comments that immediately pop into my mind: 1. Constants should be declared before your handler, in this case, they should be above "on mouseUp" 2. Your "assignColor" command will not work because you are declaring those variables as locals, the

tsNetSmtpSync -Multiple "to" addresses

2016-09-28 Thread pink
I am trying to put in multiple recipients into the "TO" line of the email header. So far in all my testing, only the first recipient receives the message, was wondering if anyone else has tried doing this yet. My script was rather long, so I put it on github instead of pasting it here: https://gis

Re: urlResponse empty in 8.1.0RC1

2016-09-16 Thread pink
FYI - in case anyone else runs into this problem, it should be fixed 8.1.1 -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/urlResponse-empty-in-8-1-0RC1-tp4708176p4708524.html Sent from the Revolution - User mailing list archive at Nabble.com. __

Re: Maintain Order in JSON Import

2016-09-16 Thread pink
JsonImport and JsonExport are not in the "LiveCode Script" dictionary. You need to switch to "JSON Library" from the dropdown. mergJSON, easyJSON and fastJSON all output numeric-keyed arrays as JSON arrays, if you need JSON arrays then you definitely need one of them (ie - the stuff within a squar

urlResponse empty in 8.1.0RC1

2016-09-08 Thread pink
I am using CouchDB in 8.1 and here is my problem: these are the two crucial commands for putting a document into CouchDB put tJson into URL(tURL) put the urlResponse into tResult the urlResponse should contain a JSON with the result of the REST call, for example it could say: {"err

Re: Problem making standalone in 8.1.0

2016-08-29 Thread pink
So is there a way to find what is missing and fix it? I can't find any additional information about what this"module file" is -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Problem-making-standalone-in-8-1-0-tp4707924p4707938.html Sent from the Revolution - Use

Re: Problem making standalone in 8.1.0

2016-08-29 Thread pink
so let me ask this... what can I do to move forward? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Problem-making-standalone-in-8-1-0-tp4707924p4707935.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Problem making standalone in 8.1.0

2016-08-29 Thread pink
I started using 8.1.0RC1... when trying to build an iOS standalone, the "Auto detecting library inclusions" process is taking really long, like 12 minutes. And then... I get an error window that says "could not open module file" and then another error window that says "There was an error while sa

Re: [ ANN ] Release 8.1.0 DP-3

2016-08-06 Thread pink
I started to use 8.1.0 DP-3 for the first time, and I noticed that all of the widgets that are not made by Livecode are flagged. (For example, I have all of Trevor's installed) When using one, I get "Widget could not be created because there was an error while loading it. To resolve, please go to

Re: Having major Livecode problems

2016-07-14 Thread pink
Things got better for a while, and now I am back to having Livecode crash constantly, but again, just on 2 of my 3 computers. (Unfortunately it's the 2 that I am working on most often.) I've started at least getting some crash reports, so i started putting them into a ticket, but these crashes can

Re: [HC] USB Devices

2016-07-08 Thread pink
With the n52 if you don't have the software installed, it defaults to the "half keyboard" setup that you see. That's a feature of the device. My guess would be, that the older Nostromo doesn't, and requires the software to program. Once the software is installed and configured, that is what transla

Re: Having major Livecode problems

2016-07-01 Thread pink
clearing those files did the trick my project browser works correctly now, and I haven't crashed all day -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Having-major-Livecode-problems-tp4706247p4706283.html Sent from the Revolution - User mailing list archive at

Re: Navigation bar widget icons

2016-07-01 Thread pink
technically we cannot theoretically if you can edit the "Icon SVG Library" you could add to it... I'm still tinkering with this concept myself https://github.com/madpink/livecode/blob/develop/extensions/libraries/iconsvg/iconsvg.lcb as far as I can tell, there are just three lines that make up

  1   2   >