Created
October 15, 2013 19:06
-
-
Save amalgamatedclyde/6996968 to your computer and use it in GitHub Desktop.
here is the def build (self):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def build(self): | |
l= Builder.load_file('grd7.kv') | |
m= Builder.load_file('studentlist3.kv') | |
carousel = Carousel(direction='right') | |
carousel.add_widget(l) | |
carousel.add_widget(m) | |
popup = Popup(title='Please select a waypoint', | |
content = Button(text='close window'), | |
size_hint=(None, None), size=(400, 400)) | |
popup.open() | |
#print 'ids are', m.ids | |
self.m = m | |
self.l = l | |
return carousel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment