Insert Record issue
Posted: Thu Aug 29, 2013 10:37 pm
I have a form created in LiveCode. The user can add web blogs they find interesting and this info is loaded into a server based mySQL table. If the user types the info into the fields all is well, but if they cut from a internet site and paste into the field, the information will not load into the tables. At first I assumed it was a formatting issue brought over from the web page, so I added a paste routine to remove any formatting-
But I am still having the issue. Any suggestions?
Code: Select all
on rawKeyDown pKey
if the environment <> "development" then pass rawKeyDown
if pKey = 118 then
if the commandKey is down or the controlKey is down then
put the clipboardData["text"] into tText
if tText <> "" then
if the selectedChunk <> "" then
put tText into the selectedChunk
end if
end if
else
pass rawKeyDown
end if
else
pass rawKeyDown
end if
end rawKeyDown
on pasteKey
put the clipBoardData["text"] into tText
if tText <> "" then
put the selectedChunk into tSelected
if tSelected <> "" then
put tText into the selectedChunk
end if
else
pass pasteKey
end if
end pasteKey