Search found 3775 matches

by Imperf3kt
Tue Dec 27, 2016 1:52 am
Forum: Ren'Py Questions and Announcements
Topic: Main Menu Question
Replies: 3
Views: 951

Re: Main Menu Question

Using the new GUI, I cannot honestly help as I'm yet to adapt to it, using the old GUI, I'd suggest using an imagebutton. Try this, it was designed for a game that was 800*600, so just adjust the numbers. xpos is horizontal position (from left), ypos is vertical position(from top). # Main Menu scree...
by Imperf3kt
Tue Dec 27, 2016 1:40 am
Forum: Ren'Py Questions and Announcements
Topic: character image on the textbox?
Replies: 5
Views: 3555

Re: character image on the textbox?

I don't know if using the new GUI makes a difference, as I am still using the old GUI, even though I've updated renpy, so please keep that in mind. Anyway, renpy still does as expected when I use the following: $ Eileen = Character(None, show_side_image=Image("images/Eileen_side_image.png"...
by Imperf3kt
Wed Apr 20, 2016 8:27 am
Forum: Ren'Py Cookbook
Topic: Instant CG and BG gallery
Replies: 154
Views: 61629

Re: Instant CG and BG gallery

The gallery doesn't work as I expected.
I don't currently have the time to make one for you, but I can suggest maybe looking into imagbuttons, instead of imagemaps.
by Imperf3kt
Sun Apr 17, 2016 3:53 pm
Forum: Ren'Py Cookbook
Topic: Instant CG and BG gallery
Replies: 154
Views: 61629

Re: Instant CG and BG gallery

I'll need to know if you're just doing a cg gallery, or including backgrounds or anything else. Also, you're probably going to want some buttons on that (switching pages, returning to the main menu etc. Could you PM this information to me (so we don't annoy everyone checking this thread) and after w...
by Imperf3kt
Sun Apr 17, 2016 6:02 am
Forum: Ren'Py Cookbook
Topic: Instant CG and BG gallery
Replies: 154
Views: 61629

Re: Instant CG and BG gallery

Hi guys, I know this topic is very old but I'm really confused about one point: how can I move the different frames to adapt them to my personal design? I've attached a picture below to let you see what I'm talking about. Thank you in advance! I'm on a mobile, so excuse my lack of an example. This ...
by Imperf3kt
Tue Feb 16, 2016 4:35 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to make an image button move on hover?
Replies: 6
Views: 4201

[Solved] How to make an image button move on hover?

I tested it and it's working without errors transform open: on hover: xalign 0.0 yalign 0.0 linear 0.3 xalign -0.5 yalign 0.0 screen test: imagebutton: idle "#000" hover "#00f" xysize(100,100) at open action NullAction() define e = Character('Eileen', color="#c8ffc8") ...
by Imperf3kt
Mon Feb 15, 2016 5:38 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to make an image button move on hover?
Replies: 6
Views: 4201

Re: How to make an image button move on hover?

That is a clean project, the only thing I did was set the resolution to 1280*720 http://puu.sh/n8E5S/a777deb4f2.png http://puu.sh/n8E9r/49d98c026b.png http://puu.sh/n8Eab/28d28b7766.png Thats everything I changed from "new project" The only other thing I did was place the images in the ima...
by Imperf3kt
Mon Feb 15, 2016 4:25 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to make an image button move on hover?
Replies: 6
Views: 4201

Re: How to make an image button move on hover?

Well, images don't have hover states, so... Use a screen. screen blah(): add "sr" at right imagebutton: idle "sl" hover "sl" at open action NullAction() label start: show screen blah() pause I don't know how I ended up using images, I started off with imagebuttons... A...
by Imperf3kt
Sun Feb 14, 2016 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to make an image button move on hover?
Replies: 6
Views: 4201

[Solved] How to make an image button move on hover?

I've tried googling and searching the forums, but I cannot see one single example that works. I've tried a dozen variations of my ATL , but each one gives me an error, or undesired results. All I want, is an image to slide to the left when hovered, and also stay to the left. The image will be in a m...
by Imperf3kt
Mon Dec 14, 2015 5:14 am
Forum: Ren'Py Cookbook
Topic: Instant CG and BG gallery
Replies: 154
Views: 61629

Re: Instant CG and BG gallery

Hi. I notice you should probably explain to people what "define your images" means. It took me around 5 minutes to work out that you meant add an init block above cg gallery which defines the images. If anyone else can't figure the common error out, this is how to fix it. #CG Gallery init-...