Do you want me just to get the details from him?
Offline
sent it to him...
Offline
...What now?...
Offline
or build mockups.
AAARGH! 60 second rule
Just to remind of the website we're developing on: http://www.block-library.freehostingcloud.com/
Last edited by comp500 (2011-01-22 03:49:24)
Offline
sparks wrote:
Do you not have time to work on this?
![]()
Sparks I do have time to work on this but not in the last few weeks because I've had my GCSE options to deal with but I will be able to get back into full swing later this month
Last edited by Daffy22 (2011-01-22 04:18:23)
Offline
whats GCSE?
Offline
ProgrammingFreak wrote:
whats GCSE?
oh you don't live in the UK do u
there basically tests that we choose to do (like history, art ect) and at the end we get a grade (G - A*) which basically gets us into universities and jobs
Last edited by Daffy22 (2011-01-22 05:32:51)
Offline
Daffy22 wrote:
ProgrammingFreak wrote:
whats GCSE?
oh you don't live in the UK do u
![]()
there basically tests that we choose to do (like history, art ect) and at the end we get a grade (G - A*) which basically gets us into universities and jobs![]()
Cool. So are you going to be in a university soon?
Offline
k. how can I help?
Offline
ProgrammingFreak wrote:
whats GCSE?
General Certificate of Secondary Education.
Also, can I help with this? I know PHP, HTML, JS and CSS
Offline
i don't know, ask sparks.
ALso, can you make a comment thing in php?
Offline
ProgrammingFreak wrote:
Daffy22 wrote:
ProgrammingFreak wrote:
whats GCSE?
oh you don't live in the UK do u
![]()
there basically tests that we choose to do (like history, art ect) and at the end we get a grade (G - A*) which basically gets us into universities and jobs![]()
Cool. So are you going to be in a university soon?
No, I've got to do GCSE's then do A Levels
Offline
I has a mockup for the copy buttons:
<head> code(html):
<script type="text/javascript" src="ZeroClipboard.js"></script>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript">
var clip = null;
$(document).ready(function () {
// setup single ZeroClipboard object for all our elements
clip = new ZeroClipboard.Client();
clip.setHandCursor(true);
// assign a common mouseover function for all elements using jQuery
$('div.copybutton').mouseover(function () {
// set the clip text to our innerHTML
var cliptext = document.getElementById(this.id + "text");
clip.setText(cliptext.innerHTML);
// reposition the movie over our element
// or create it if this is the first time
if (clip.div) {
clip.receiveEvent('mouseout', null);
clip.reposition(this);
}
else clip.glue(this);
// gotta force these events due to the Flash movie
// moving all around. This insures the CSS effects
// are properly updated.
clip.receiveEvent('mouseover', null);
});
});
</script>
PHP code:
//loop through all block library results, printing out copy buttons as we go:
//echo block code here(eg. echo $code)
echo '<div id="' . $i . '" style="padding:0px; width:16; height:16;" class="copybutton"><img src="page_white_copy.png" /></div>'
echo '<div id="' . $i . 'text" style="display:none;">' . $copy . '</div>'
// with $i being the loop iteration count and $copy being the code to copy.
//finish loop
Last edited by comp500 (2011-01-22 07:00:12)
Offline
ProgrammingFreak wrote:
i don't know, ask sparks.
ALso, can you make a comment thing in php?
yep. either // or /* and */
See the superb tutorial about PHP at w3schools.com: http://w3schools.com/php/
Last edited by comp500 (2011-01-22 06:57:53)
Offline
no i mean like how to make a 'comment' code. like the comments you can make on scratch projects
Offline
ProgrammingFreak wrote:
no i mean like how to make a 'comment' code. like the comments you can make on scratch projects
OOh.
You mean.....
I get it now.
I'll have to do a ton of javascripting and PHP coding, so I can't do it on my own but, I'll try.
Offline
You don't have to do it right now. Its not for this project...not yet. I was working on another project and was wondering if you could do it...
Offline
i guess i will
what are you going to do?
Offline