Skip to content

Instantly share code, notes, and snippets.

View trevordevore's full-sized avatar

Trevor DeVore trevordevore

View GitHub Profile
@trevordevore
trevordevore / behaviorsdatagridbuttonbehavior.livecodescript
Last active November 7, 2017 16:15
Fixes issues where mobileScroller is not recreated when returning to card with DataGrid on it
local sDataArray -- Multi-dimensional array
local sIndexSequencing -- sDataArray indexes in order they should appear
local sInit -- Has control been opened once before?
local sControlIsOpen
constant kDefaultDimmedHiliteColor = "212,212,212"
constant kRowColor = "255,255,255"
constant kHeaderBkgrndStartColor = "219,219,219"
constant kHeaderBkgrndEndColor = "188,188,188"
@trevordevore
trevordevore / utmtolatlong.livecodescript
Last active June 9, 2018 15:14
LiveCode function for converting a UTM location to latitude/longitude
script "UTM To LatLong Library"
/**
Summary: Converts UTM coordindates to lat/long
Parameters:
pZoneNumber: A number between 1 and 60.
pZoneLetter: A-Z, Zones A-M are soutern, N-Z are northern/
pEasting: Number
pNorthing: Number
@trevordevore
trevordevore / LiveCode
Created April 17, 2013 14:12
Getting user info from an Active Directory server using VBScript and LiveCode
# Put the VBScript into a variable and then execute as follows:
do theScript as "vbscript"
if the result begins with "error," then put item 2 to -1 of the result into theError
else
put the result into theADUserInfo ## last name, first name & cr & group & tab & group ...
end if
@trevordevore
trevordevore / gist:5584753
Created May 15, 2013 15:17
Convert XML to and from a LiveCode array
/**
* Handlers for converting XML to LiveCode arrays and vice versa.
*
* Provided by Trevor DeVore of Blue Mango Learning Systems.
*/
/**
* \brief Escapes the predefined XML entities in a string.
*
* \param pStr The string to escape the characters in.