Search found 16 matches

by Jayn
Sun Sep 30, 2012 2:17 am
Forum: Ren'Py Questions and Announcements
Topic: Position Name into the Namebox [Resolved]
Replies: 2
Views: 507

Re: Position Name into the Namebox [Resolved]

Thank you very much, perfect!!
by Jayn
Fri Sep 28, 2012 11:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Position Name into the Namebox [Resolved]
Replies: 2
Views: 507

Position Name into the Namebox [Resolved]

This is probably really simple. I've been lurking around looking for past threads that would help, but I'm just being stupid, I think. I can't figure it out. I am using two versions of the same text box (prefitted). One with a namebox, and the other without. The problem, though, is that I'm not sure...
by Jayn
Fri Jun 15, 2012 5:42 am
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Aah, perfect! It works now, thank you all so much. : )
by Jayn
Thu Jun 14, 2012 5:21 am
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Thank you! New code. init python: def OpenYoutube(): import webbrowser webbrowser.open_new('http://www.youtube.com') class OpenYoutube(Action): def __call__(self): webbrowser.open_new('http://www.youtube.com') # Assuming you import this in some init block init -2 python: import webbrowser screen mai...
by Jayn
Tue Jun 12, 2012 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Any thoughts on how I can fix this? : )
by Jayn
Mon Jun 11, 2012 2:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

init python: def open_youtube(): import webbrowser webbrowser.open_new('http://www.youtube.com') screen main_menu: tag menu imagemap: ground "Customizations/Burgundy Souls_Idle.png" hover "Burgundy Souls_Hover.png" hotspot (509,136,130,45) action Start() hotspot (509,192,132,44)...
by Jayn
Sun Jun 10, 2012 11:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Thank you! For the linking, it does indeed take me to youtube from the main menu, but it's not a hotspot. When I start the game, Youtube pops up in my webbrowser, but I want it to be dependent on if the hotspot is clicked, not for it just to pop up. hotspot (35,95,469,140) clicked open_youtube() Tha...
by Jayn
Sat Jun 09, 2012 2:10 am
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Is it possible to link to a website from the main menu? Any help is appreciated.
by Jayn
Thu Jun 07, 2012 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Re: Video Won't Work. Black Screen with Audio.

Sadly, my computer is known for some video issues with ren'py, but I did get it to partly work as an .ogv file in the cutscene mode. So, maybe it will work on your computer. I wish I could give more solid help, but maybe you can try this file in your project: https://www.dropbox.com/s/uxbw7o2s3r8d3...
by Jayn
Thu Jun 07, 2012 8:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Won't Work. Black Screen with Audio. (Solved)
Replies: 12
Views: 2805

Video Won't Work. Black Screen with Audio. (Solved)

Hey again... I am having an issue here that I've searched the forums for. No solution seems to work for me. I've made an opening video for my visual novel that is to be displayed as a Splashscreen. The coding itself works for me, but the video just won't play. I made the video in Sony Vegas. I've co...
by Jayn
Fri Jun 01, 2012 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Simple Inventory.
Replies: 9
Views: 5652

Re: Simple Inventory.

I decided to go back to the simple onscreen inventory code , just to keep moving forward because at this point I'm pretty confused, and for some reason THAT code won't work for me now, either, even though it was working perfectly fine before. init python: showitems = True def display_items_overlay(...
by Jayn
Fri Jun 01, 2012 8:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Simple Inventory.
Replies: 9
Views: 5652

Re: Simple Inventory.

Thank you for your help! I'm sorry, I'm totally new at this and I know I'm probably being really slow. I appreciate your patience. So this is the new code in screens. #Inventories $ data = "My inventory." $ items = [] $ sweatshirt = item("Sweatshirt", "A red jumper.") ...
by Jayn
Wed May 30, 2012 11:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Simple Inventory.
Replies: 9
Views: 5652

Re: Simple Inventory.

Thank you for your help and the reply! I tried the second code...I put this code in screens. (Just as a test.) #Inventories init: python: class item: def __init__(self, name, description): self.name = name if description == "": self.description = "A random thing." else: self.des...
by Jayn
Wed May 30, 2012 6:05 am
Forum: Ren'Py Questions and Announcements
Topic: Simple Inventory.
Replies: 9
Views: 5652

Simple Inventory.

I apologize for the second thread. (I felt it would be easier for others with the same question to find if I made this one separate.) I'm not sure if what I want to do is possible, or what information to provide. I've spent all night trying to figure something like this out and searching the forums...
by Jayn
Tue May 29, 2012 7:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Window size changed, now pref screen is messed up. (SOLVED)
Replies: 2
Views: 501

Re: Window size changed ... Now pref screen is messed up.

Thank you! That helps.

Also, I changed the font and it fixed itself (the overlaying).

c: Thanks for the help.