Questions tagged [loading]

Loading refers to retrieving necessary information for display or functionality.

Loading refers to retrieving necessary information for display or functionality. It often occurs between a client and a server computer, and can be indicated with different animations. Use this tag when asking questions about how to load information and errors concerning loading.

3827 questions
1
vote
1 answer

If statement in NSUserDefault when loading a string

I have the following code for saving a value and an string. I want to use If statement to check my value. NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults setObject:@"Baseball bat" forKey:@"Weaponsname"]; …
Clarence
  • 1,951
  • 2
  • 34
  • 49
1
vote
1 answer

Loading gif taking too long to load

I have a website with a lot of heavy front-end features on it, and am making use of a loading gif to ease my loading troubles. I have noticed however, that in Safari particularly (probably since it's a generally slower browser) the background of…
Rebecca Cook
  • 111
  • 1
  • 14
1
vote
2 answers

Jquery loading animation until page finishes loading?

Can anyone show me how to play a loading animation until the webpage fully loads? I have no clue where to start so any help is appreciated!
Tyharo
  • 383
  • 2
  • 5
  • 23
1
vote
1 answer

How can i load bigger textures than 4096*4096 in xna?

I want to load tilesets into xna using Texture2D.FromStream(...), that are bigger than 4096*4096 and there are many of them so i don't want to crop each of them manually. Can i load them anyway? And if not, is it possible to load a texture…
1
vote
1 answer

Detecting browser loading

I was just wondering about this, and I haven't found a good answer so far, so I thought I'd just ask it here. What I'm wondering is, if it's possible to detect browser loading actions. And just to be clear, I'm not talking specificly AJAX request…
HugoC4
  • 51
  • 1
  • 6
1
vote
1 answer

Large WebGL application loading time

See if somebody were to create a large application based on WebGL. Let's say that it's a 3D micro management game which by itself take approximately 700 Megabytes in files to run it. How would one deal with the loading of the assets. I would have…
user2227581
  • 53
  • 1
  • 3
1
vote
0 answers

Silverlight - The program loading circle/percentage not appearing

I have a hobby website: http://www.chartmygolf.com/Programs/Program.aspx and for the first time (in six years) someone has said the circle/percentage thing that appears when the program is loading is not appearing, and consequently the program does…
Rewind
  • 2,554
  • 3
  • 30
  • 56
1
vote
1 answer

Loading classes that extend another class from jars in directory

What I want to do is , let's say I have a folder , and that is a directory, and let's say I created a JAR that has a class in there that is extending "Apple". How would I check ALL JARS in that folder and check that they have class extending Apple,…
user3529775
  • 21
  • 1
  • 6
1
vote
1 answer

Bootstrap - add a loading state to an input box?

I have got an input box:
{# Autocomplete text box #}
And I have some jQuery to…
b85411
  • 9,420
  • 15
  • 65
  • 119
1
vote
1 answer

Cocos2dx C++ dealing with many textures

I am currently using Cocos2dx C++ version 2.0.1. I understand this is an older version of cocos2dx but I originally started using it and already made most of my game with it and I really would rather not switch versions at this time. The problem I…
1
vote
1 answer

Nested load image with jquery

I need to load 2 or more images off screen and display them with a transition only when all of them are loaded. I'm having some issues with load() Here is my function it shows a div with a loading message, when the img is loaded it hide the loadig…
Gusepo
  • 837
  • 2
  • 13
  • 26
1
vote
0 answers

Possible to add loading text to silverlight splash screen?

I recently added a splash screen to a silverlight web app, and was looking to add another feature. My idea is to have a textblock display the name of the element that is currently being loaded. I've searched for a solution, but can't seem to find…
1
vote
1 answer

PhoneGap - Android: Media plugin is not loading

I'm having trouble getting the Media plugin to work with PhoneGap V.3.4.0 for Android. The plugin was download through CLI and it is defined in the manifest and config file, the permissions are also set. Everything I try to instantiate a new Media…
user2728839
1
vote
2 answers

Loading sprites in cocos2d using grand central dispatch

In my game I'm using such method for loading sprites asynchronously: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{ [physicsSprite loadSprite]; dispatch_async(dispatch_get_main_queue(), ^{ …
1
vote
2 answers

AJAX - doesn't return value

I am trying to show mysql results from images.php to index.php. After I click on one link of my categories(which are named by id) then I want to show values from images.php. Every category has one
which is tagged by id The script doesn't work…
ViktorR
  • 137
  • 3
  • 13