Friday, 22 April 2011

menu styles





so for the final style of my menus it was suggested in my last critic that an old horror movie style might look good so ive been looking at old posters for inspiration and have made a few sketches here are the main influences for my designs 










what i'm taking from these images is the way the horror element over shadows the main characters, with the frightned people of centre and the "monsters" taking up the centre of the images. i like how dark most of the images are and the way the images seem to capture action just before something bad is possible about to happen sort of leaving a viewer on edge wanting more.
(all the images are from google images. i searched old horror movie posters)

so my sketches take these elements into account ill post the digital images up once i have made them.

Saturday, 16 April 2011

google api v2 to v3 xml

have now got the map data from the xml file into a 3 dimensional array, after parsing  my xml using google maps api v2 i found out that the GXml.parse does not exist in v3 big issues after looking for a few hours online i found a .js function that recreates the GXml.parse function in v2 within v3 happy days the result = i dont have to change very much of my script just attach the .js now to get the polly lines, ghost and collectables  on the roads

Tuesday, 5 April 2011

animated markers

found this
http://www.geocodezip.com/v3_animate_marker_directions.html

gives script on how to animate a marker also clearly divided up into its different sections so relatively easy to understand just to take take it apart and adapted  it to what i need for my ghosts
its slowly coming together

a bit of design



3 of my ghosts and a pac-man.
in relation to the game nearly have the polly-lines for the collectables done should be able to start game testing by the end of the week if all goes well, starting to change and look more at the look of the app

Friday, 1 April 2011

web hosts

finding it difficult to find a decent free web host that doesn't put loads of adverts over the page. instantfreewebsite.com is the worst i have found for ads. with 000webhosting.com having no adverts but is a very slow site

Wednesday, 16 March 2011

multi page web apps

ok so i found and adapted a bit of JS from iWebKit 5 that lets you make links to in web app mode that load in the same page which stops safari opening all the time if that makes sense

var multipage;

multipage=window.onload=function()
{
function fullscreen()
{
var a=document.getElementsByTagName("a");
for(var i=0;i<a.length;i++)
{


a[i].onclick=function()
{
window.location=this.getAttribute("href");return false
}

}
}
function hideURLbar()
{window.scrollTo(0,0.9)
}
multipage.init=function()
{
fullscreen();hideURLbar()
};
multipage.init()
}

just put the above in a .js file and linked it to every page and it works 
i win 

Sunday, 13 March 2011

arrays of arrays searching arrays, arrays

current


so i need to make another array for the lat lng's then add them to the right nds so need something like if (nds == id add lat , lon )? something like that just so the nds are searched to find the id that is the same to get the nds lat, lng if that makes sense