Search found 4059 matches

by jack_norton
Thu Aug 21, 2008 3:19 am
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Thanks a lot! going to download the fixes right now :)
by jack_norton
Wed Aug 20, 2008 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

An update: while testing the game that is using JCC, it crashed :( Not with an error message, it crashed with a runtime error (like those I get from Visual C). I tried to reproduce it but no luck... I had an image fading in with Alpha, that's the only thing I remember. Before could play the game for...
by jack_norton
Tue Aug 19, 2008 2:33 pm
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Ehm pardon my ignorance, but where is the im.py? in the main package download? it is a piece of source code and I need to recompile renpy itself, right? sorry but I'm quite new to Python :oops:
by jack_norton
Mon Aug 18, 2008 7:20 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py Development Thread
Replies: 180
Views: 26501

Re: Ren'Py Development Thread

Just wanted to say that after being initially dubious, I made some tests and now I started to use Renpy steadly for my next game. I must say it's one of the best program/languages I've ever played with (and I've tried so MANY). So first of all, congrats to PyTom for the work: you rule! 8) My only 2 ...
by jack_norton
Sun Aug 17, 2008 2:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Going nuts for a really simple ui layout
Replies: 3
Views: 924

Re: Going nuts for a really simple ui layout

Thanks!!! worked perfectly now :) I see my mistakes too :oops:
by jack_norton
Sun Aug 17, 2008 11:40 am
Forum: Ren'Py Questions and Announcements
Topic: Going nuts for a really simple ui layout
Replies: 3
Views: 924

Going nuts for a really simple ui layout

I can't make it right but should be very easy! 8) I need to display a box on top of screen (which is a png image 1024x24 pixels),and then 2 texts: one aligned on the left, and another aligned on the right (on same y value) to display current room / score (a bit like the old infocom games, if anyone ...
by jack_norton
Sun Aug 10, 2008 9:08 am
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Heh, unfortunately even setting cache=true still has the bug, at least here :) take it easy and have fun, but I'll look for the fix when you get back! :twisted:
by jack_norton
Sat Aug 09, 2008 2:29 am
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Well actually the images I posted use a minimal script :) I'm using latest renpy. I use that image to replace the default window/buttons background, but even if I try to show a simple image on startup, doesn't work :( init: # Declare images below this line, using the image statement. image splash = ...
by jack_norton
Thu Aug 07, 2008 1:49 pm
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Thanks, I'm going to check it. It uses an archive or I can extract 2 test images to check?
(even if as I said before is really strange, in my own C code the 2 jpeg made with JCC works fine! so I really don't understand the bug :lol: )
by jack_norton
Wed Aug 06, 2008 12:04 pm
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

Ok, thanks for the explanation. Still it doesn't work :cry: does anybody uses JCC successfully?
by jack_norton
Wed Aug 06, 2008 8:17 am
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

I think I found the bug in renpy: Function: im.AlphaMask (base, mask, **properties): base and mask should be image manipulators. This function takes the red channel from mask, and applies it to the alpha channel of base to create a new image. the mask image is a grey JPG, so can't take the red chann...
by jack_norton
Wed Aug 06, 2008 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: JCC not working (empty images)
Replies: 23
Views: 3986

Re: JCC not working (empty images)

I even tried to load manually the files with: image splash = im.AlphaMask(im.Image("gfx/logo.png.base.jpg", cache=False), im.Image("gfx/logo.png.mask.jpg", cache=False)) but still nothing is displayed. Nobody uses JCC ? I tried loading the images in my own C library and works, so...
by jack_norton
Tue Aug 05, 2008 9:06 am
Forum: Ren'Py Questions and Announcements
Topic: Archiving fonts
Replies: 3
Views: 828

Re: Archiving fonts

Cool. Would be nice to have a single file archive with everything inside it.
by jack_norton
Tue Aug 05, 2008 7:41 am
Forum: Ren'Py Questions and Announcements
Topic: extracting/replacing dialogues string in a game
Replies: 9
Views: 4337

Re: extracting/replacing dialogues string in a game

No, it creates a file dump_text.rpy which contains code, but if you look in your Project/game folder you'll see a file called dump.txt with only the texts (at least it worked for me).
by jack_norton
Tue Aug 05, 2008 6:27 am
Forum: Ren'Py Questions and Announcements
Topic: Archiving fonts
Replies: 3
Views: 828

Archiving fonts

I ran the archiving tool, but somehow it doesn't work with fonts. I can archive everything (jpg, png, ogg files) except fonts. Is this normal or is a bug?