mark103 Posted February 27, 2013 Share Posted February 27, 2013 Hi guys, Can you please help me, I want to start off to make a website to design my own tv channels with menu list. I would like to make 6 rectangle boxes to allow me to use the keyboard arrows button to move up and down to mouseover on each box without using the mouse point, not sure if I would need textboxes. And I am not sure that if I would need to code html or flash development. The website I want to make like this: http://labs.worldtv.com/tv Can you please suggest me what development (html or flash) would be the best for me to make a website like the one I post the link on above? Any advice would be much appreciated. Thanks in advance Quote Link to comment Share on other sites More sharing options...
Psycho Posted February 27, 2013 Share Posted February 27, 2013 The page you linked to used JavaScript. Quote Link to comment Share on other sites More sharing options...
crmamx Posted February 28, 2013 Share Posted February 28, 2013 And if that is your model the styling should be in css not the html. Quote Link to comment Share on other sites More sharing options...
mark103 Posted March 1, 2013 Author Share Posted March 1, 2013 (edited) Thanks for your reply guys and thanks for your advice. Do you know what type of script that i should use like iframe as I want to stay in the same page without reloading the whole page and what script would let me to disable the mouse point like the website I linked that I could use the keyboard without the mouse??Do I need to use MooTools, javascript, css or html? Edited March 1, 2013 by mark103 Quote Link to comment Share on other sites More sharing options...
Guest lenix Posted March 2, 2013 Share Posted March 2, 2013 JS can. Quote Link to comment Share on other sites More sharing options...
mark103 Posted March 4, 2013 Author Share Posted March 4, 2013 (edited) Do I have to use flash or html that i want to disable mouse cursor while i can move the boxes on up, down, left and right arrow buttons on the keyboard and i want to watch streaming videos through on flash? the reason i want to do this is because i'm planning to make my own epg website for my personal use only and nobody else will access to my website, only me. If i have to use flash, how i can disable the mouse cursor, how i can move the highlight on the boxes using with keyboard arrows button and how i can extra the information from a 3rd party website to input on my website? Edited March 4, 2013 by mark103 Quote Link to comment Share on other sites More sharing options...
haku Posted March 4, 2013 Share Posted March 4, 2013 (edited) If i have to use flash, how i can disable the mouse cursor, how i can move the highlight on the boxes using with keyboard arrows button and how i can extra the information from a 3rd party website to input on my website? How to disable the mouse cursor: http://www.google.com/#hl=en&sclient=psy-ab&q=flash+disable+cursor&oq=flash+disable+cursor&gs_l=hp.3..0i30j0i8i30l3.539.9608.0.11594.33.29.1.2.2.2.323.6214.1j13j12j3.29.0.les%3B..1.0...1c.1.5.psy-ab.w1yVjYt-ZIY&pbx=1&bav=on.2,or.r_gc.r_pw.r_qf.&bvm=bv.43148975,d.cGE&fp=f9918f728b2ec425&biw=1023&bih=559 How to move the highlight with keyboard: http://www.google.com/#hl=en&sclient=psy-ab&q=flash+capture+keyboard+events&oq=flash+capture+keyboard+events&gs_l=hp.3..33i29.22865.26217.1.27551.29.19.0.10.10.3.247.3551.0j15j4.19.0.les%3B..0.0...1c.1.5.psy-ab.UyMUIZyxIr0&pbx=1&bav=on.2,or.r_gc.r_pw.r_qf.&bvm=bv.43148975,d.cGE&fp=f9918f728b2ec425&biw=1023&bih=559 How to put 3rd party website info on your site: http://www.google.com/#hl=en&sclient=psy-ab&q=flash+xml+import&oq=flash+xml+import&gs_l=hp.3..0i30l3j0i8i30.22959.26782.2.26970.18.14.1.2.2.2.337.3184.0j7j5j2.14.0.les%3B..0.0...1c.1.5.psy-ab.jigxwOEG9oo&pbx=1&bav=on.2,or.r_gc.r_pw.r_qf.&bvm=bv.43148975,d.cGE&fp=f9918f728b2ec425&biw=1023&bih=559 Any more questions I can google for you? Edited March 4, 2013 by haku Quote Link to comment Share on other sites More sharing options...
Guest lenix Posted March 4, 2013 Share Posted March 4, 2013 (edited) You can do all the things you want using JQuery {esp. hiding mouse cursor} JQuery code: $(document).ready(function(){$(body).css({'cursor' : 'none'});}); Edited March 4, 2013 by lenix Quote Link to comment Share on other sites More sharing options...
trq Posted March 4, 2013 Share Posted March 4, 2013 You can do all the things you want using JQuery {esp. hiding mouse cursor} JQuery code: $(document).ready(function(){ $(body).css({ 'cursor' : 'none' }); }); Obviously you have no idea what that code is actually doing. Quote Link to comment Share on other sites More sharing options...
Guest lenix Posted March 4, 2013 Share Posted March 4, 2013 Obviously you have no idea what that code is actually doing. Obviously you have no idea what that code is actually doing. I'm just trying to help though I am not a "JS PROGRAMMER" I think that code that I have been posted will work to hide the mouse cursor. It works for me in FF. am not sure for others. Quote Link to comment Share on other sites More sharing options...
trq Posted March 4, 2013 Share Posted March 4, 2013 That piece of code goes the long way around to add a simple css declaration to the body selector. It be done without the dependency on jQuery (or JavaScript for that matter) using pure css. body { cursor: none } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.