A variable scope is the context within a computer program in which a variable name is valid and can be used.

learn more… | top users | synonyms

0
votes
2answers
32 views

Accessing a returned value from a different case

Hi It's the 3rd time i'm posting this question on this forum and up to now no one has been capable to enlighten me about this situation. I only pasted the code that matters here and will try to ...
0
votes
1answer
10 views

Less global variable and mixin usage in media-queries

I've got a problem when using global varibale in a mixin which is used in @media-query. Point is in different @media-query the variable is rewrited. So I would like the mixin to use updated value but ...
0
votes
1answer
33 views

Passing a value from one case to another in switch statement

What is the syntax from passing a value from one case to another using a switch/case statement ? In case one i'm 3 verifications ... say 3 functions that each should return a boolean. If all the 3 ...
-1
votes
1answer
52 views

returning a variable to a method ofrom within a switch statement

Hi guys this is my program, I've been at it for a few hours, I decided to reorganise my code in functions so it's clearer to see ... For some reason i'm loosing access to my variables inside the ...
2
votes
1answer
32 views

php functions playing games

I'm curious as to why variables aren't echoing using a function... (If that makes sense lol..) function name(){ echo "$info->fullname"; } When i then use <?php name(); ?> anywhere on ...
0
votes
0answers
13 views

ActionScript 2.0 Reading XML and display it as a repeated pattern

a newbie. I'm trying to read an XML file and use the data to fill a repeated pattern with a photo file name, a title and a text for listing (my main goal). The pattern is a movie clip object and ...
0
votes
1answer
22 views

as3 declaring an eventListener - variable scope

How do I declare an Event Listener to be public so it's available to all funcitons? // Coded needed below to declare Event function addEventL() { /// Declares it in a function ...
1
vote
1answer
28 views

Trying to update a label in tkinter class

Im new to python and this forum. I tried searching a solution for the errors i get in my code but this only made me try a lot of different stuff, still i couldn't get my label updated. Now i think ...
1
vote
2answers
47 views

javascript: use variable from one file in other

So, I am building a pretty complicated plugin and ran into a snag. (This is how I learn though, so snags are good...) My code looks similar to the following: Document 1 if( !window.TextEdit ){ var ...
2
votes
1answer
66 views

JavaScript: detect invisible variables

I have a question about JavaScript hidden or invisible variables to us. Because they are not created in global context. When we write large web applications, some variables or functions live ...
1
vote
1answer
41 views

Python: compose list from nested iterators

I have a list of tuples that I need to expand it by adding two elements, each of them comes from a list. So I have [(1, 2, 3)] and two iterators it1 = (i for i in ['a1', 'a2']) and it2 = (i for i in ...
0
votes
2answers
31 views

Object scope. Why does this give a null object

initialize: function () { var store = {}; var item = {}; var me = this; Ext.Ajax.request({ url: "some_valid_url", success: function ...
0
votes
0answers
15 views

Chrome extension: Variables scope

The title is very general, I don't have a clue what the problem is so I couldn't be more specific. Consider the following extension: manifest.json: { "name": "My extension", "version": "1.1", ...
0
votes
1answer
18 views

Appending an DOM/SVG element with the d3 javascript library changes variable reference/scope, why?

I noticed then I get mixed results when I append an DOM/SVG elements to an existing object inline and in the separate step when using the D3 javascript library. If I look at the variable referencing ...
0
votes
3answers
82 views

global variable inside main function python

I wanted to define a global variable in main, i.e., a variable that can be used by any function I call from the main function. Is that possible? What'd be a good way to do this? Thanks!
0
votes
1answer
21 views

Ruby Quick Class Instance Scope

I have a quick problem that probably comes down to something stupid. I have a class that extends OAuth::AccessToken and uses instance variables (@) so that each time it constructs an object, those ...
1
vote
3answers
39 views

Calling Function in Original Scope of Object

Alright, given the following Javascript code that I DO NOT WANT to modify: (function () { function iWantToCallThis(){ // Do some stuff } window.SomeObject = { theirfunc ...
6
votes
4answers
79 views

Variable scope in nested functions

Could someone explain why the following program fails: def g(f): for _ in range(10): f() def main(): x = 10 def f(): print x x = x + 1 g(f) if __name__ == '__main__': main() ...
1
vote
2answers
51 views

dart method calling context

I used the below to see how dart calls methods passed in to other methods to see what context the passed in method would/can be called under. void main() { var one = new IDable(1); var two = new ...
2
votes
2answers
29 views

Classes - require conflict in constructor

I'm coding a Wordpress plugin and I'm not sure regarding the function name conflict.. I have a file named test_handling.php which contains the following content : function testing() { echo 'test'; } ...
3
votes
2answers
78 views

Lua declaring local variable in a recursive function

I just started programming and choosed lua to write a script that processes a XML configuration file. I load the XML file with LuaXML (C binding version) which maps it to a heavily nested table. My ...
-1
votes
2answers
32 views

undefined local variable ruby

Here is my class: class Money def initialize(dollars, quarters, dimes, nickels, pennies) @coins = [ {:coin => dollars, :price => 100}, {:coin => quarters, :price => ...
1
vote
1answer
35 views

Javascript - Why are global variables hidden throughout the (body of the) function?

I understand how it works (the disparities between local and global functions), but I don’t quite get the rationale behind hiding the global variables in a functions while a “local” variable is not ...
2
votes
1answer
21 views

Accessing hidden shared/static variables

With this: class outer public shared X as string = "" class inner public shared sub test() Dim s as string s = X ' refers to the shared (static) variable in outer ...
0
votes
1answer
56 views

Javascript OOP issue with variable scope

I'm using an alert() for testing, but I can't get my object to alert the right value of my variables after they have been changed inside of my for loop. I want to store the values in an object using a ...
-1
votes
1answer
43 views

Undefined Variable: CLASSNAME, even though its stated in a require()

I've hit a snag; nothing I try works. Strangely, other files can use the variable $user but my header cannot. My code is in my own template system, but I'm not going to post all of the code (that ...
1
vote
0answers
67 views

Javascript Callback function scope issue

I am having a trouble in How to assign value in the callback function? Thanks to Rodik I have some general idea of how to do it. However, I am still not sure how to pass the img value to getImage ...
2
votes
2answers
54 views

for loop and animation, can't use variable since changing due to closure

I have this code: var newTR = '<tr class=".small"></tr>'; var i=300, v=0; for (var product in products){ i=i+300; v++; var newTD+v = ...
2
votes
2answers
33 views

event handler that knows the event name

I have a socket.io server that generates many events, and I want to catch all of them and print a similar message. Right now, I do this: for (var event in {eventA: 1, eventB: 1, eventC: 1}) { ...
1
vote
4answers
46 views

trouble accessing external float array

I have the following program in two files main.cpp float POW10[300]; main(0 { Fill_POW10(); } Fill.cpp extern float *POW10; Fill_POW10() { for(int i=0;i<300;i++) { ...
0
votes
1answer
26 views

Proper variable scope in windows batch script

I cant figure out this variable scope.. heres the code. I've been reading around but cant seem to nail it. I want to copy a file 4 times and concatenate a name every time expanding the name of the ...
1
vote
2answers
51 views

Fortran90: how to keep variables defined in a recursive subroutine from updating upon internal calls?

With the following code, when variable "a" and "a1" are equal to 2, I would like the recursive subroutine to create 2 nested do loops of length 4 (maxdev=4). I am attempting to control the level of ...
9
votes
9answers
456 views

Member-Function-Scoped Variable

Consider the following code: #include <iostream> struct X { int foo() { // Can I get this to be an instance-specific static variable, please? static int i = 0; ...
0
votes
1answer
32 views

PHP: Out of scope variable access [closed]

What is the best approach to accessing a variable out of scope, see my current method: // Define API require_once( 'api.php' ); global $myapi; $myapi = new LazyAPI( 'My API', 'myapi' ); class ...
0
votes
5answers
95 views

correctly resetting a global variable in javascript?

so, in this post here people are discussing the fact that A = [1,2,3]; and then doing A = []; will not reset the array but create a new one. My question is, if I use a global object variable ...
0
votes
1answer
37 views

How to access data submitted from a view within the controller?

I have a very small app, it requires an id, then updates a database table based on that id. The id is an input from the view. Basically my DB (model) has getAllProjects() and approveProject($id). ...
2
votes
3answers
82 views

The difference between the block and function scopes in C

What is the difference between the block and function scopes in C99 in terms of what happens on stack when a function / block is entered and left?
-1
votes
6answers
72 views

C++ : how does class variable get modified?

From the MSDN page concerning const functions The code: // constant_member_function.cpp class Date { public: Date( int mn, int dy, int yr ); int getMonth() const; // A read-only ...
2
votes
1answer
53 views

javascript jQuery variable scope

Thanks in advance. I'm making a website for a service I run with my partner called Laughter Yoga Dublin. I've come across a problem that's got me stuck. It looks like lots of code below but my ...
-2
votes
0answers
25 views

How to keep arraylist values after re-accessing the class ?

I have an arraylist in mt application, i add value to it, and when i access it again it reinitialized(as it exist in another class and i've to access that class to access it). so, what shall i do to ...
1
vote
0answers
49 views

Undefined variable outside of PhoneGap globalization callback

I'm playing around with PhoneGap (Cordova version 2.6.0) currently and my JavaScript knowledge is unfortunately really rudimentarily. Im trying to use the globalization object of PhoneGap to get the ...
1
vote
2answers
71 views

Global variables across multiple files in python

I have a modules.py file : global dns_server_ip def SetVnetGlobalParameters(): dns_server_ip = '192.168.3.120' And I’m importing this file in say abc.py file from modules import * ...
1
vote
0answers
73 views

Python - variable scope and modification

I'm writing a Python script that is mostly a GUI framework for live forensic data collection on a Windows host. Up until now, I haven't had many problems that I couldn't work through. But this one has ...
3
votes
2answers
49 views

Javascript: confuse about function's scope of variables

I execute function like this: var a = 123; function f() { alert(a); var a = 9; } f(); the result is undefined, why this happened? Why it's not 123?
1
vote
2answers
100 views

Using global vector in C++

I have implemented a fast comparison function which uses a look-up table. Since this function is used in multiple classes in the project, I need to make sure that there is only one copy of the look-up ...
2
votes
2answers
115 views

trouble understanding javascript function level scope

I have trouble understanding JavaScript function level scope, as a C# programmer it looks wired to me, I will try to explain it through code: CODE#1 //Problem //if same named variable (as in global ...
0
votes
3answers
54 views

JS loop variable scope

I was trying out some simple JS code. I was aware that we should use var keyword to declare a loop variable inside the loop say for loop to avoid global variable declaration. However I realized that ...
2
votes
1answer
70 views

Will it generate 100 distinct instance variables in this condition(JS vs C++)?

As I remember: C++: for(int i= 0; i< 100;i++) { int number= 3; } We will have 100 distinct instance variables with the same name(but occupying 100 times memory as only one variable.), but ...
1
vote
0answers
64 views

Public variables are not REALLY public in VBA in Forms

Below is a question that I will answer myself, however it caused a GREAT deal of frustration for me and I had a lot of trouble searching for it on the web, so I am posting here in hopes of saving some ...
3
votes
2answers
32 views

appending generators to a stack in loop, generators point to final loop variable

I'm doing some graph traversal. At each point I save a generator of the other possible options that could have been explored. Later, I explore a few of those generators but it doesn't work. Here is a ...

1 2 3 4 5 25