nicolai 4 Posted March 24, 2016 Report Share Posted March 24, 2016 I dont really know how to explain well what I want to do so have made a screenshot.If its not possible topass the variables to the header part, is there anyway to reduce the blue block? Quote Link to post Share on other sites
darryl561 177 Posted March 25, 2016 Report Share Posted March 25, 2016 Use a stat monitor.Example: ui text box("Total Loops:",#total loops) ui stat monitor("Total Loops:",#total loops) ui stat monitor("Loop:",#count) set(#count,0,"Global") loop(#total loops) { wait(1) increment(#count) } wait(2) set(#count,"completed","Global") I see you have the Developer Edition, you can use the UI HTML Panel to create your ui instead of the default(blue block) and you can make your ui any height you want. 1 Quote Link to post Share on other sites
nicolai 4 Posted March 25, 2016 Author Report Share Posted March 25, 2016 Use a stat monitor.Example: ui text box("Total Loops:",#total loops) ui stat monitor("Total Loops:",#total loops) ui stat monitor("Loop:",#count) set(#count,0,"Global") loop(#total loops) { wait(1) increment(#count) } wait(2) set(#count,"completed","Global") Thanks for that! I have the basics working for me now. Quote Link to post Share on other sites
nicolai 4 Posted March 27, 2016 Author Report Share Posted March 27, 2016 Hmmm...I put stat monitor but seems to stop working after a while. Quote Link to post Share on other sites
HelloInsomnia 1103 Posted March 27, 2016 Report Share Posted March 27, 2016 Hmmm...I put stat monitor but seems to stop working after a while. Those are displaying the numbers from the same variable? Quote Link to post Share on other sites
nicolai 4 Posted March 27, 2016 Author Report Share Posted March 27, 2016 Yes exactly the same.They count up for a while and then simply stop.Here is screenshot of code...I have ui stat monitor at top of the page and the variables are being updated in the loop of the main process. Quote Link to post Share on other sites
HelloInsomnia 1103 Posted March 27, 2016 Report Share Posted March 27, 2016 I would send the code to http://support.ubotstudio.com/ I've never seen it mess up like that so maybe its a bug. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.