Access to iOS clip board
Posted: Sun Feb 28, 2016 6:32 pm
Hi, is there an external or some other method to access the clip board on an iPhone or iPad?
Thanks
Tom
Thanks
Tom
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
inputCreator "Search", "input", "Search_Rect", "TRUE", "TRUE", "None", "No", "Default”,”Default,,”Left"
on inputCreator pName, pKind, pRect, pAutoClear, pAutoFit, pAutoCap, pAutoCorrect, pKeyboardType, pReturnKey, pBackgroundColor, ptextAlign
mobileControlCreate pKind, pName
mobileControlSet pName, "visible", true
mobileControlSet pName, "rect", the rect of grc pRect
mobileControlSet pName, "opaque", false
mobileControlSet pName, "autoFit", pAutoFit
mobileControlSet pName, "autoClear", pAutoClear
mobileControlSet pName, "autoCapitalizationType", pAutoCap
mobileControlSet pName, "autoCorrectionType", pAutoCorrect
mobileControlSet pName, "keyboardType", pKeyboardType
mobileControlSet pName, "returnKeyType", pReturnKey
mobileControlSet pName, "clearButtonMode", "while editing"
mobileControlSet pName, "borderStyle", "none"
mobileControlSet pName, "fontName", "Helvetica"
mobileControlSet pName, "textColor", "0,0,0"
mobileControlSet pName, "backgroundColor", pBackgroundColor
mobileControlSet pName, "textAlign", ptextAlign
if machine() contains "ipad" then
mobilecontrolSet pName, "fontSize", 26
else if machine() contains "iPhone" then
mobilecontrolSet pName, "fontSize", 12 -- (aval)
else
mobilecontrolSet pName, "fontSize", 12
end if
end inputCreator