Livecode Commercial 6.6.3 Issue
Posted: Thu Oct 02, 2014 8:21 am
Hi there,
I originally wrote a small app in the community 6.6.3 version and deployed it with no issues. I now recently moved to the commercial version 6.6.3 and without any code changes saved to stand alone. I found that my dynamically generated buttons in a group wont do anything when tapped on now surely this must be a bug in the commercial version ?
The code works in the live testing environment of the IDE but not on the iPad, although the Community version compiled code works in both.
Details:
iPad iOS 8.0.2
Livecode Commercial 6.6.3
Mac OSX Mavericks
Code Snippet:
I originally wrote a small app in the community 6.6.3 version and deployed it with no issues. I now recently moved to the commercial version 6.6.3 and without any code changes saved to stand alone. I found that my dynamically generated buttons in a group wont do anything when tapped on now surely this must be a bug in the commercial version ?
The code works in the live testing environment of the IDE but not on the iPad, although the Community version compiled code works in both.
Details:
iPad iOS 8.0.2
Livecode Commercial 6.6.3
Mac OSX Mavericks
Code Snippet:
Code: Select all
on openCard
if there is not a group "jobs_buttons" then
create group "jobs_buttons"
set visible of group "jobs_buttons" to false
else
delete group "jobs_buttons"
create group jobs_buttons
set visible of group "jobs_buttons" to false
end if
create button temp in group "jobs_buttons"
create field temp_call_number in group "jobs_buttons"
set the opaque of it to false
set the showborder of of it to false
set the disabled of it to false
create field temp_comp_name in group "jobs_buttons"
set the opaque of it to false
set the showborder of of it to false
set the disabled of it to false
put "255,255,255" into priority_colour
set the loc of btn temp to 10,10+40
set the borderWidth of btn temp to 0
set the width of btn temp to 330
set the height of btn temp to 80
set the showname of btn temp to false
set the opaque of btn temp to false
set the threeD of btn temp to false
set the showBorder of btn temp to false
set the hiliteborder of btn temp to false
set the script of btn temp to "on mouseUp"\
& cr & "answer 1"\
& cr & "end mouseUp"\
end openCard