Search found 29 matches

by HypnoKitten
Tue Jul 28, 2020 3:38 am
Forum: Ren'Py Questions and Announcements
Topic: How does one show images between the nvl and screens?
Replies: 1
Views: 382

How does one show images between the nvl and screens?

So I've been fighting with this for hours, reading everything I could get my hands on and here's where I'm at: Goal * I want to create a game primarily in NVL (so I can have multiple character texts at once - a more text-heavy game with less clicking between lines of dialogue) * I want to have image...
by HypnoKitten
Thu Jan 11, 2018 4:12 am
Forum: Ren'Py Questions and Announcements
Topic: Question: Changing textboxes (graphic novel style)
Replies: 3
Views: 996

Re: Question: Changing textboxes (graphic novel style)

Thank you both of you - I'll look through both options and see what I can figure out! The top one did look like what I was looking for, though not so much a menu-item thing.. let me see if there's a way of blending the ideas. The little line pointing to who is talking is not that critical.. If I fig...
by HypnoKitten
Tue Jan 09, 2018 4:43 am
Forum: Ren'Py Questions and Announcements
Topic: Question: Changing textboxes (graphic novel style)
Replies: 3
Views: 996

Question: Changing textboxes (graphic novel style)

Hi everyone, fairly new to RenPy here so I apologize if this has been asked - went through the full tutorials, read through https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=9812 https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=46229 https://lemmasoft.renai.us/forums/viewtopic.php...
by HypnoKitten
Sat Aug 30, 2014 12:27 am
Forum: Ren'Py Questions and Announcements
Topic: Breakpoints, Stepping Through, Intelli-sense Iron-Python?
Replies: 3
Views: 1041

Re: Breakpoints, Stepping Through, Intelli-sense Iron-Python

No worries at all PyTom, you're doing totally awesome and I'm loving the work you're doing, I'd never wanna distract you from that! I'm pretty much a newbie to working with Python so I am not qualified yet to work at that level at the code, but if I figure out any good workarounds I'll post them her...
by HypnoKitten
Fri Aug 29, 2014 1:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Breakpoints, Stepping Through, Intelli-sense Iron-Python?
Replies: 3
Views: 1041

Breakpoints, Stepping Through, Intelli-sense Iron-Python?

Hi everyone, know I went quiet again for a bit - that's because you were all so insanely awesome that you solved all the problems I'd had and I've been hard at work since. More specifically though I've been doing a bunch of stuff Python-side to implement the kind of game-play I was curious about - s...
by HypnoKitten
Sun Jun 22, 2014 10:27 pm
Forum: Ren'Py Questions and Announcements
Topic: XML parsing from string, Dictionaries in RenPy (SOLVED)
Replies: 2
Views: 870

Re: XML parsing from string, Dictionaries in RenPy

[UPDATE - SOLVED] Aaand now that I've started using the console (SHIFT+O) and the type(variable) operation in there the last part came together easy enough too evtObj[0][0].text gets me to the content of a tag --------- I'm thinking I'm just going to leave this post up here in case anyone has troubl...
by HypnoKitten
Sun Jun 22, 2014 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: XML parsing from string, Dictionaries in RenPy (SOLVED)
Replies: 2
Views: 870

Re: XML parsing from string, Dictionaries in RenPy

[UPDATE] Never mind, I think I got this! So from what I can tell (from https://docs.python.org/2/library/xml.etree.elementtree.html ) evtObj.items gives me a list of all the attribute pairs. So itm = evtObj.items() is a list of all the pairs itm[0] is the first item and it is a 'tuple'. So actualVal...
by HypnoKitten
Sun Jun 22, 2014 9:27 pm
Forum: Ren'Py Questions and Announcements
Topic: XML parsing from string, Dictionaries in RenPy (SOLVED)
Replies: 2
Views: 870

XML parsing from string, Dictionaries in RenPy (SOLVED)

So I was trying to work with XML in RenPy-Python, and I am running into something a tad strange (or me just not understanding it). Here's what I'd like to input / see as output: sampleXML = "<?xml version=\"1.0\"?>\ <eventObj eventName=\"SampleXmlEvent01\">\ <eventRound roun...
by HypnoKitten
Sun Jun 15, 2014 8:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Rollback event listener? (rolling back python variables)
Replies: 4
Views: 802

Re: Rollback event listener? (rolling back python variables

Woot! That totally worked and makes a lot of sense! I've left the class definitions in init but moved the object implementation further down, absolutely worked :D Have I mentioned how much I love the awesome people on this forum? Totally do! Is there a place that discusses the load order? Such as if...
by HypnoKitten
Sun Jun 15, 2014 3:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Rollback event listener? (rolling back python variables)
Replies: 4
Views: 802

Re: Rollback event listener? (rolling back python variables

Thanks Asceai! I've bookmarked those two links and will fall back on them if necessary - rollback seems like a fun and useful feature but it isn't a critical one. So here is some working code (minus the debug and irrelevant statements). init python: class EventRound(renpy.store.object): def __init__...
by HypnoKitten
Sun Jun 15, 2014 5:26 am
Forum: Ren'Py Questions and Announcements
Topic: Rollback event listener? (rolling back python variables)
Replies: 4
Views: 802

Rollback event listener? (rolling back python variables)

I think I am not getting a good grasp of stores and persistent data (in how they relate to the rollback events) I have multiple objects. Each object represents a list of 'stuff' that gets played out in sequence, as per a stored 'index' and a GetNext function. This all works well and good if the play...
by HypnoKitten
Sun Jun 08, 2014 6:25 am
Forum: Ren'Py Questions and Announcements
Topic: Creating Dropdowns
Replies: 6
Views: 3011

Re: Creating Dropdowns

Woot! It is working! Thank you so much Asceai for all of your help with this one! Ok, so here's a Dropdown solution if anyone wants it (don't know if there is enough content to warrant moving it into the tutorials area, and I'm sure I'll keep tweaking it for quite a while) screen dropdown_menu (sele...
by HypnoKitten
Sun Jun 08, 2014 2:41 am
Forum: Ren'Py Questions and Announcements
Topic: Sequence of buttons with images and texts (SOLVED)
Replies: 10
Views: 1078

Re: Laying out a sequence of buttons with images and texts

Supply xysize (200, 50) to the textbutton. It appears that the backgrounds can be drawn to be bigger than the actual button itself. The second argument to Show is a transition. You were passing a list. Transitions are callable, which is why Ren'Py was trying to call it. action Show("dropdown_o...
by HypnoKitten
Sun Jun 08, 2014 2:10 am
Forum: Ren'Py Questions and Announcements
Topic: Sequence of buttons with images and texts (SOLVED)
Replies: 10
Views: 1078

Re: Laying out a sequence of buttons with images and texts

Oh beautiful!! I knew there had to be something like that - though it seems that only the text portion becomes part of the clickable button, not the image? If I have a long bar with the text being "Foo" only the portion where "Foo" is written can be hovered / clicked, not the re...
by HypnoKitten
Sat Jun 07, 2014 11:44 pm
Forum: Ren'Py Questions and Announcements
Topic: Sequence of buttons with images and texts (SOLVED)
Replies: 10
Views: 1078

Re: Laying out a sequence of buttons with images and texts

The statement is add, not show. add is what you use to add a displayable. And sure, you can do something like that, except you want a Button, not an ImageButton (Button is exposed for general use, unlike ImageButton) - write a python function to return a Button and then you can 'add mySuperButton(&...