I searched the forum on the topic but could nt find the right one. How to enter number in a field which automatically inputs the number with comma in thousand separator format like 123,456,789 format??
Hi guys,, Please need some help. I dont know if it is possible or not. But lets see. I have some data array in field "mylist" in following manner: xx,xxx yy,yyy zz,zzz I am able to populate option menu ( with xx or yy or zz); Now, Is it possible to having either option selected, retreive related dat...
Thanks for your response. I did as you told. I think I am doing something wrong here and could not get it into working. Please check- Following are the code in the option menus : (Similar code in another option menu as well) on menuPick pItemName switch pItemName global choice1 case "A" put the labe...
Hello, Need help please. Lets say, i have two option menus in a card, with three options (A, B, C) and (X,Y, Z) on each one. How can I run a conditional function or do something, by checking that each menu option has some selection. like Option A in first menu and Option Z in second menu carry a spe...
Hi Simon, Well now, I tested the stack in real device. For small text, there is no problem and it displays well in both cards any time. But for big text, the display result in card 2 (with native scroller) is different every time. Sometimes it displays and scroll well upto the full length of text. B...
I have two card in my apps; one to import text while other has scroller in it. To import text, first card needs to be assessed everytime. So I thought below code in the second card delete the scroller everytime when the card is closed. Isn't it so ?? on closeCard // Delete the scroller if environmen...
Hi Simon. Thank you. My problem is solved PARTIALLY. Now, problem of hidden text in upper part of field is solved, even if text size is increased. Now, what to be done for bottom part if text is longer? Only solution seems to me is to set height of field "text" to very high number. But it will not l...
Hi guys, Learning Livecode and it is fun as all. I am facing issues with Native Scroller. I have some text file contents needs to be imported in field "text" which is scrollable in group "scrollArea". As long as the text content is small, there is no problem with scroller and it does fine. But when ...
Hi there, How to create a list menu like that we have on Android, whereby touching a menu option will open another submenu inside? I referred to many posts in this forum regarding creating such menu system i.e. mobilepicker options, gridviews etc and now I am confused. It's may be somewhere in the f...
Thanks guys. I tried, even in many variations of scripts, but I think it is not doable. on browserStartedLoading pUrl set the gEnd of me to "home" By setting above variable, whenever a new webpage opens within old webpage, above variable is set to true. So backkey either functions as "retreat" when ...
Well I tried many variations but could not succeed. Please help. on browserStartedLoading pUrl set the gEnd of me to "home" end browserStartedLoading on backKey if gEnd is not "home" then doAction "retreat" send firstPage to me in 250 millisec end if end backKey on firstPage if gEnd is not "home" th...
Thanks Again.. Now tried it..it is not working, fully :D With above script, backkey will take me to card 2 direct from the browser. While changing the portion of the same. as below, I can roam within the browser but cannot exit to card 2.- on firstPage if gEnd= true then go cd 2 end if end firstPage...