Jump to content

notclive

Members
  • Posts

    103
  • Joined

  • Last visited

Posts posted by notclive

  1. You could use html dom.example:

    <script type="javascript/text">function swapContent() {document.gotElementById("middlebar").innerHTML="Different Content";}</script><a href="java script: swapContent()">Click here to swap content</a><div id="middlebar">Content!</div>

    That should work, when you press the button it changes the content inside the div to "Different content".

  2. i read the page about the mod/hack whatever it is (whats the difference?) and it said you could change how many rep points could be awarded, and you cant only give to one person so it should be cheat proof

  3. in the head section put this

    <style type="text/css">img{border: 0px;margin: 0px}</style>

    that should work i think, even if it doesnt you should do that to stop firefox putting a border around themedit: the firefox thing only happens for links, i dont think my advice was right

  4. Yea sfb, I want to use ubuntu.. I cant install it though cause ill probably screw something up :).
    I managed it without screwing up my pc :) but i couldnt get it to work with my wireless internet card. I want to install it downstairs on my parents pc (wired internet) their running windows 98! but they wont let me :blink: .Anywho my prefered os, well i use win xp but i would probably be on linux if it worked with my wireless card, i worked on it for days trying to get it to work but to no avail. Im sure it would be possible to get my card working but i dont have the know how, which is where windows xp comes in its much easier to use but its made by microsoft and costs money :blink: . Thats one reason why i like linux because its free! I also like osx even though ive hardly used it, i just quite like apples clean look and nice UI. Havent got a clue about unix :) see ill admit to being stupid!
  5. omg on my desk there's a ten pound note 7+3=10and the current time has the number 3 in it twice!Also i have 2 arms and 2 legs which makes 4 which is 7-3!!I also have a piece of paper wiht the number 11 on it which can be next in a sequence with 3 and 7. 3, 7, 11, 15 etc etcmy lava lamp has the date 1963 on it 1+9+6+3=17 17=10+7 10=7+3 so thats two 7's and a 3!still dont beleive it though coz it took me ages to find all those numbers!!

  6. 1. The buttons, on click going to frame "z"
    on (release) { gotoAndStop(1);}
    2. Making the loopable animation, on layer "x" ending at frame "y" and going to frame "x" (to loop)
    have the animation as a movie clip, it will automaticly loop.
    3. Making a layer being stopped and the other animated, so I can have the buttons and the animation running at the same time.
    If I understand correctly thats impossible, so use a movie clip as i suggested.
    4. To load the text from a file in my computer, so I can keep the main page and/or other pages updated without much trouble.
    not sure how to do that, it should be possible though
  7. you can either make the text box taller or change the size of the textto change the size of the text change the style of the input box

    <input type="text" name="uname" maxlength="40" style="width:190px;height:14px;border:solid 1px black; font-size: 10">

    hope that helps

  8. It's done like this

    <?php //get download page of firefox website$page=file_get_contents("http://www.mozilla.org/download.html");//find the position of the below string on the page and add the length of the string$start=strpos($page,'<dt><a href="http://www.mozilla.com/firefox/">Firefox ')+54;//echo the next 7 characters after the position of the above stringecho 'The latest FireFox version is '.substr($page,$start,7);?>

    you can see the output herethe problem is if mozzilla changed their page it might stop working.If theres anything in my code you dont understand just ask.

  9. It is possible, this method works in firefox and opera but not in ie7 not sure about other browsers.You use styling to change the font

    <img style="font-size: 18px; font-family: arial" alt="this is some text which will appear in the font arial size 18 if there is no image present!" src="logo.png" />

×
×
  • Create New...