Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 2.35 seconds.
Search: Posts Made By: nikos101
Forum: General web building 05-12-2013, 07:51 AM
Replies: 2
Views: 451
Posted By nikos101
ok thanks, any ideas why the donation button at...

ok thanks, any ideas why the donation button at the top left clickable area is not the full size of the donate image?
Forum: General web building 05-10-2013, 12:04 PM
Replies: 2
Views: 451
Posted By nikos101
Question Paypal donation button not working.

Hi, I am having issues with the paypal donation button here, www.missionofcompassion.org

many users are saying that it does not work.. but it always works for me

Any ideas?

thanks
Forum: JavaScript programming 02-22-2013, 11:49 AM
Replies: 11
Views: 417
Posted By nikos101
doesn't that mean that its a pain when you import...

doesn't that mean that its a pain when you import lots of scripts that you have made to keep functionality in separate files?
Forum: JavaScript programming 02-22-2013, 10:09 AM
Replies: 11
Views: 417
Posted By nikos101
Question the usage of function x() contained in foo is undefined in strict mode.

how come when I use
"use strict";
in a script (foo.js), then in my html page, that imports foo.js, the usage of function x() contained in foo is undefined.
Forum: JavaScript frameworks 02-02-2013, 01:53 PM
Replies: 8
Views: 295
Posted By nikos101
1000sandth post!"!!!!!! :)

1000sandth post!"!!!!!! :)
Forum: JavaScript frameworks 02-02-2013, 01:30 PM
Replies: 8
Views: 295
Posted By nikos101
sorry I don't get what you mean by ko var. I...

sorry I don't get what you mean by ko var.

I just use it like this site:
http://learn.knockoutjs.com/#/?tutorial=intro
Forum: JavaScript frameworks 02-02-2013, 12:55 PM
Replies: 8
Views: 295
Posted By nikos101
sorry that gets compiled to false serverside, its...

sorry that gets compiled to false serverside, its Razor asp mvc syntax
Forum: JavaScript frameworks 02-02-2013, 12:49 PM
Replies: 8
Views: 295
Posted By nikos101
this is all the code for KO in this app ...

this is all the code for KO in this app

<script type="text/javascript">
$(document).ready(function () {


function AppViewModel() {

...
Forum: JavaScript frameworks 02-01-2013, 03:50 PM
Replies: 8
Views: 295
Posted By nikos101
Question ko.computed does not update

How come the followButtonText doesn't update then isFollowing is changed?
function AppViewModel() {

this.toggleIsFollowing = function () {
...
Forum: JavaScript frameworks 01-29-2013, 01:20 AM
Replies: 3
Views: 289
Posted By nikos101
sorry,false is rendered in that case no...

sorry,false is rendered in that case

no script errors
Forum: JavaScript frameworks 01-28-2013, 11:00 PM
Replies: 3
Views: 289
Posted By nikos101
Question KnockoutJS things like binding don't work

What do you do when simple KnockoutJS 2.0 things like this don't work(button text is empty), and the sources load properly

<script type="text/javascript">



function AppViewModel() {
...
Forum: JavaScript frameworks 01-10-2013, 02:39 PM
Replies: 3
Views: 379
Posted By nikos101
The setInterval timing is not consistent across browsers.

Hi, I'm finding that the he elapsed number which is determined by the setInterval function is not consistent across browsers. The value can vary considerably. Can anyone advise on a way to get it...
Forum: JavaScript programming 01-09-2013, 05:32 PM
Replies: 0
Views: 198
Posted By nikos101
Question Typescript game logic help needed

Hi can someone examine this code and let me know why

1 update Speed (how often this is called : update(elapsed: number)) is different in different browsers
2 key input is ignored (I just tried...
Forum: JavaScript programming 01-05-2013, 07:57 PM
Replies: 6
Views: 329
Posted By nikos101
seems I should just use a for (int i" instead for...

seems I should just use a for (int i" instead for simplicity
Forum: JavaScript programming 01-05-2013, 07:32 PM
Replies: 6
Views: 329
Posted By nikos101
returning out the parent function from a foreach function

This is typescript but works similarly to JS.

How can I get the main function hasEnemyLeftBounds to return true. In the for each it currently only leaves the current for each


...
Forum: JavaScript programming 12-20-2012, 10:02 PM
Replies: 10
Views: 445
Posted By nikos101
my code actually comes from typescript! ...

my code actually comes from typescript!


import GameObjects = module("GameObjects")
Forum: JavaScript programming 12-20-2012, 10:01 PM
Replies: 10
Views: 445
Posted By nikos101
yeah, its funny + 1rep!

yeah, its funny + 1rep!
Forum: JavaScript programming 12-20-2012, 09:50 PM
Replies: 10
Views: 445
Posted By nikos101
Question Sorry you are right, I just tried it! seems...

Sorry you are right, I just tried it! seems clunky but it works. Maybe I should use a for loop instead?
Forum: JavaScript programming 12-20-2012, 07:00 PM
Replies: 10
Views: 445
Posted By nikos101
thx, I already have that, I ommitted it. So...

thx, I already have that, I ommitted it.

So I'm still stuck :(
Forum: JavaScript programming 12-20-2012, 04:29 PM
Replies: 10
Views: 445
Posted By nikos101
Cool so how to I access it ? the function is the...

Cool so how to I access it ? the function is the method Game.prototype.draw

var Game = (function () {
function Game() {

this.canvas =...
Forum: JavaScript programming 12-20-2012, 12:58 PM
Replies: 10
Views: 445
Posted By nikos101
Question this.context2D is undefined in the for Each

hi how come this.context2D is undefined in the for Each but define out side the forEach?

this.enemies.forEach(function (enemy) {
enemy.draw(this.context2D);
});
Forum: JavaScript programming 12-20-2012, 12:25 PM
Replies: 2
Views: 295
Posted By nikos101
putting this at the bottom worked! ...

putting this at the bottom worked!

$(document).ready(function () {
Forum: JavaScript programming 12-18-2012, 07:11 PM
Replies: 2
Views: 295
Posted By nikos101
Question Trying to new up the Game object

Hi, how come this doesn't work when trying to new up the Game object:

I get TypeError: undefined is not a function for var game = new Game();

define(["require", "exports", "GameObjects"],...
Forum: JavaScript frameworks 12-14-2012, 03:51 PM
Replies: 1
Views: 298
Posted By nikos101
Question RequireJs question

Hi in my main.js (used by require.js) what do I need to add to this:

define('GameObjects', ['GameObjects.js']);

to get this error to go away:

Uncaught ReferenceError: exports is not defined...
Forum: JavaScript programming 11-21-2012, 03:55 PM
Replies: 6
Views: 259
Posted By nikos101
Also this code is some of the most confusing I...

Also this code is some of the most confusing I have ever seen, what is going on:

Sprite.load = function(url, loadedCallback) {
var img = new Image();
var proxy = LoaderProxy();

...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 06:18 PM.