Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

problem in platform.runLater

929087Apr 10 2012 — edited Apr 12 2012
i ve been trying to display a stage for a certain condition inside a while loop. once the stage is appearing after that it is not goin into platform.runLater.
pls help me...

while(true)
{
// some code

if(condition)  // more the once this condition becomes true.
{

System.out.print("reached here");
platform.runLater(new Runnable(){          // once displaying , second time it reaches till the print statement then nothing

// display stage

});

}// end if

}// end while
This post has been answered by john16384 on Apr 12 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 10 2012
Added on Apr 10 2012
8 comments
3,700 views