Kindle Fire event.target:scale does not work?

So I tried making a Kindle Fire app, I used the standard example for display.loadRemoteImage, in the networkListener() for that loadRemoteImage I have a call to scale the image to a specific width and height and add it to a scrollview.

When I run the example in the simulator it works perfect, when I run it on my Touchpad running Android ICS (CM9) it runs pretty much the same.

But when I run it on the Kindle Fire, two problems occur, Scaling does not happen at all, and the scrollView does not appear to scroll at all, that or the images are being dropped onto the scene and not being added to the scrollview, either way the Images certainly are not scaling, and I cannot scroll, yet the same code works fine on the simulator and Android ICS

Thinking about it, it seems like it is just not doing anything in the networkListener() function. [import]uid: 127852 topic_id: 22335 reply_id: 322335[/import]

OK I found where the issue is occurring, I found that the fade effect was working in the listener so I knew it was getting there.

Anyway I need to call a split method to get the index of the object to gather other info I store in another object

anyway I do not know why it fails on the split method but here is the split() I got from an lua site:(Is there a way to see debug messages from an android device running a corona app?)

function split(str, pat)
local t = {} – NOTE: use {n = 0} in Lua-5.0
local fpat = “(.-)” … pat
local last_end = 1
local s, e, cap = str:find(fpat, 1)
while s do
if s ~= 1 or cap ~= “” then
table.insert(t,cap)
end
last_end = e+1
s, e, cap = str:find(fpat, last_end)
end
if last_end <= #str then
cap = str:sub(last_end)
table.insert(t, cap)
end
return t
end [import]uid: 127852 topic_id: 22335 reply_id: 89011[/import]