Search found 18 matches

by Andy_kl
Sun Apr 09, 2017 5:02 pm
Forum: Ren'Py Questions and Announcements
Topic: two style of choice menu
Replies: 7
Views: 1942

Re: two style of choice menu

So, I got something like this: python early: def parse_frame_menu(frame_menu): frame_menu.eol() items = [] caption = frame_menu.subblock_lexer() while caption.advance(): caption.eol() action_list = [] action = frame_menu.subblock_lexer() while action.advance(): action_list.append(action) items.appen...
by Andy_kl
Sun Apr 09, 2017 3:17 pm
Forum: Ren'Py Questions and Announcements
Topic: two style of choice menu
Replies: 7
Views: 1942

Re: two style of choice menu

Yes, the only normal option is to do Creator-Defined Statements.
I hoped that I could avoid it.
Can you then help understand how the block structure works in the CDS?
And I would like to know what he thinks about this PyTom.
by Andy_kl
Sun Apr 09, 2017 12:24 pm
Forum: Ren'Py Questions and Announcements
Topic: two style of choice menu
Replies: 7
Views: 1942

two style of choice menu

During work, I encountered such a problem: I need to bring up the menu in 2 different styles. One standard and the second as a frame with buttons. Ideally, the design should be:      frame_menu: # frame menu          "Item 1":              pass          "Item 2":              &qu...