Recursion Limit Reached when setting URL to filename of Imag
Posted: Thu Nov 10, 2011 6:58 pm
I am working on an iPad app and depending on user selection, I have an image being set to a url link like this:
Now this works for the most part. But the problem I'm having is simple navigating between cards with LiveCode. LiveCode crashes constantly on me when trying to work on other parts of my app. I have received the following error messages while working only with the cards containing these images:
Handler: tooltipUpdate
Handler: getUrl
Handler: ulHostNameToAddressCallback
Handler: mouseDown
Handler: updateForSelectedObjectChanged
I randomly get these handler errors with the same words:
"The handler: tooltipUpdate has reached the recursion limit of: 400000. Execution will be terminated to prevent hang."
I'm not sure what is going on here. I don't know if this is an error in my code or if this is something LiveCode is having an issue with, but everytime, LiveCode will throw one of these errors (never the same each time), hang up to the point to where I have to Force Quit the application. I am not using any kind of animation engine or anything, it's just changing the filename of an image depending on a selection.
Is anyone else running into anything like this? Any feedback would be greatly appreciated.
Code: Select all
put "http://www.google.com/images/70987/" into urlAddress
set the filename of image "tImage" of card "main" to urlAddress
Handler: tooltipUpdate
Handler: getUrl
Handler: ulHostNameToAddressCallback
Handler: mouseDown
Handler: updateForSelectedObjectChanged
I randomly get these handler errors with the same words:
"The handler: tooltipUpdate has reached the recursion limit of: 400000. Execution will be terminated to prevent hang."
I'm not sure what is going on here. I don't know if this is an error in my code or if this is something LiveCode is having an issue with, but everytime, LiveCode will throw one of these errors (never the same each time), hang up to the point to where I have to Force Quit the application. I am not using any kind of animation engine or anything, it's just changing the filename of an image depending on a selection.
Is anyone else running into anything like this? Any feedback would be greatly appreciated.