Hacking WebKick

  • Thread starter Thread starter elisherer
  • Start date Start date
  • Views Views 10,445
  • Replies Replies 44
  • Likes Likes 3
try rtfm 1st...
*googles rtfm*
:angry:
thier is no fucking manuel smartass...
a TUTORIAL WOULD BE BETTER!

Dude. Click the link in the first post.

Read it. It tells you what you need. What you need is to upload the contents of the zip to a directory in a web server and then access the IP of that computer/the directory from the DS.

Edit - if you don't understand that, brush up on basics of web hosting. It's fairly simple.
 
[m]elisherer[/m], I'm in the process of porting this to Node, using the express framework and jade (sorry, I've never been a fan of Java). I've made some small behavioural improvements based on my own research of the 3DS's browser. One of the issues I was able to overcome was the screen bounce when using the D-Pad to move focus between the elements. As you may know, if you move to an icon that has no focusable elements adjacent to it in a particular direction and then try and push in that direction, the screen will "bounce". The trick to eliminating this quirk is to place 4 1px × 1px focusable elements in each corner of the bottom screen and, when focus moves to these elements, immediately move it back to the last element focussed.

This is the HTML code I used, along with CSS to position each one relative to the bottom screen:

This user does not have permission to use the HTML BB code.

...and the JavaScript:

Code:
var activeEl;
document.addEventListener("DOMFocusIn", function (evt) {
if (activeEl && evt.target.className == "boundary-marker")
activeEl.focus();
else
activeEl = evt.target;
}, true);
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("download").focus();
});

I'm porting it mostly because I like the idea of WebKick, and I'm trying to familiarise myself with Node, so I thought this would be a good introduction to it. I've also streamlined the CSS and HTML a little, and I'll be happy to post any other improvements as I progress further. The research I did on the 3DS browser was quite a while ago, but it's coming back to me slowly.
 
That's great...I was really overcomed with the whole kid icarus ar cards database... i ditched this project..
It would be nice if someone would revive it...i'd suggest you add the webkick.sherer.co.il/calc.htm (that's was my biggest project)
and release it as a new version...i would help designing the gui if you wan't..i have all the templates in photoshop..
 
hmm... I think I have a decent idea for how I could make the calculator interface pretty cool. I'll have a play around when I get the chance and see what I can come up with.
 
@[member='elisherer']
Is there a chance to got a link to the previous versions (0.1, 0.2 and 0.3) here or in your webpage?
 
v0.4 is out...2 more applications.

1. Calendar - just a calendar using jQuery UI datepicker.

2. JSConsole - it's a console using javascript interpreter.

Commands you could do:
"x = 5" -> 5
"6 + x" -> 11
"Math.sin(Math.PI / 4)" -> 0.707...
and so on...

**this is actually the js engine inside the internet browser, so you could write an entire application and run it
or just look for stuff that are global like "screen" etc..

I also added to the "help" page the ip address of the 3ds inside that wlan (using cgi).

have fun!

http://webkick.sherer.co.il
 
Version 0.4 is awesome. It took me way to long to get it running in the first Version, shity Java... (-_-)
And just registered to say thank you for this awesome Programm. (^_^)
 
Hello elisherer. Could you please add the feature, that it is possible to create additional folders inside the shared folder? I have some .mp4 videos inside the shared folder and it works really nice on the Wii U with WebKick. But it gets really messy with a lot of videos, so some folders would be very handy to organize everything better. (^_^)
 

Site & Scene News

Popular threads in this forum