Scrollbars missing

Talk about Mozilla browsers for small devices such as PDAs and cellphones.
Locked
jarlea
Posts: 1
Joined: April 12th, 2005, 10:25 am
Location: Student
Contact:

Scrollbars missing

Post by jarlea »

Just for fun, I built Minimo on Slackware-current earlier today.

Works fine and looks promising, but scrollbars (both horizontal and vertical) are missing. Is my build configuration wrong (I used mozilla/embedding/minimo/mozconfig), or is anything wrong with my post-install configuration?
User avatar
dougt
Posts: 117
Joined: November 30th, 2004, 1:31 am
Location: San Jose, CA

Post by dougt »

Yup. Minimo uses something called "chrome lite". it basically takes the embed.jar file and flattens its content. I basically do the following to produce such a directory:


embed.jar is produced by:

cd $MOZ_OBJDIR/embedding/config/
make

Then you can do the following:

unzip embed.jar
rm embed.jar
find . -type f -exec cp '{}' . \;
rm -rf skin content locale

You do not need any .jar files or directories in the chrome directory when using chrome -- just the files from the above commands.

These commands are located in

mozilla/embedding/minimo/package.sh

These do work fine for linux. Maybe you can try them out when you get a second on Windows CE. After a build, just do run this shell script.

Regards,
Doug
Locked