Odd data in message box
Dan Friedman
dan at clearvisiontech.com
Fri Oct 16 11:46:04 EDT 2020
I get a bunch of data from my server. In this array, there are some dates. I roll through each one converting the date to local time:
function convertToLocalTime sTime //sTime is already been converted to seconds format
//convert the time using the hour offset for local time zone
put word 6 of the internet date into timeOffset
put (abs(timeOffset))*1 into timeOffset
put timeOffset/100 into timeOffset
if char 1 of timeOffset = "-" then
put ((timeOffset*60)*60) into pTimeOffset
put sTime - pTimeOffset into sTime
else
put sTime + ((timeOffset*60)*60) into sTime
end if
return sTime
end convertToLocalTime
There is no problem with this function, and it's producing the correct time. However, when it's all said and done, I get this in the message box:
394,2185,1
465,2185,1
253,2185,1
241,2181,1,convertToLocalTime
353,0,0,stack "/Users/Dan1/Desktop/Ignite/MY App/App/main.livecode"
219,2130,9,convertToLocalTime
465,2130,9
253,2130,9
241,2129,1,convertKevinDate
353,0,0,stack "/Users/ Dan1/Desktop/Ignite/MY App/App/main.livecode"
219,38,41,convertKevinDate
119,38,41
118,38,41
118,38,41
465,38,41
241,38,1,FillInData
353,0,0,button id 1410 of card id 1406 of stack "Data Grid Templates 1571787360744" of stack "/Users/Dan1/Desktop/Ignite/MY App/App/main.livecode"
675,3536,1,FillInData
253,3536,1
253,3536,1
490,3536,1
253,3536,1
Any thoughts?
-Dan
More information about the use-livecode
mailing list