"Enable translucent canvas (Android,iOSAlpha) "Prevent app to be backed up/restored" "This app can respond to these url schemes: (with ',' separator)" "This app can open these url schemes: (with ',' separator)"
No, I've not used that feature (except for html). Here is how I do it for that:
local url=JS.eval("window.location.href")local line=find(url,"?")if line then
params=parseUrl(sub(url,line+1))end
You also need this:
function urlDecode(s)
s=s:gsub('+',' '):gsub('%%(%x%x)',function(h)returnstring.char(tonumber(h,16))end)return s
endfunction parseUrl(s)if s thenif s~=""andnot find(s,"=")then s=s.."=1"endlocal ans={}for k,v in s:gmatch('([^&=?]-)=([^&=?]+)')do
ans[lower(k)]=urlDecode(v)print(k.." "..v)endreturn ans
elsereturn{}endend
Comments
http://SinisterSoft.com
http://facebook.com/WhatRhymesWithMartians
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Likes: oleg
http://SinisterSoft.com
http://facebook.com/WhatRhymesWithMartians
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Likes: oleg, Apollo14, plicatibu
http://SinisterSoft.com
http://facebook.com/WhatRhymesWithMartians