Loading refers to retrieving necessary information for display or functionality.
2
votes
0answers
29 views
C++ Loading bitmap in particular way
I have a function that essentially takes a screen shot and saves a pointer to it as a structure. I would like to use the same structure for bitmaps that I load from files.
typedef struct ...
0
votes
0answers
17 views
Digital Goods: stuck on loading [closed]
I generated, using the PayPal Lab Wizard, an Digital Good Express Checkout System.
But when I am on the process (Live, not on Sandbox), I'm still stuck on the loading message (after the credential ...
0
votes
0answers
9 views
How to use Spin.js with Infinite Scroll?
How can I use Spin.js (https://github.com/fgnass/spin.js) with Infinite Scroll (https://github.com/paulirish/infinite-scroll)?
I know how Spin.js works but I don't know how to implement it with ...
0
votes
1answer
25 views
What does perform better on mobile? Head.js or one big js file?
I was reading the theory section on the head.js homepage (http://headjs.com/) And I agree that loading scripts in parallel performs better. But there must be a limit?
I usually have a LOT of js ...
0
votes
0answers
11 views
Embed the SWF in HTML to speeden load time of Flash website
I'm optimizing a Flash website in order to load as quickly as possible. I have a single HTML page with embedded JS, and an external SWF flash movie file. The SWF takes a few seconds to load after the ...
0
votes
0answers
56 views
Chrome 27 not loading background images anymore
This is a really weird problem that appeared in the recent version of Chrome.
I have a huge app that loads hundreds of stylesheets (in dev mode). When the page loads, obviously all styles are applied ...
0
votes
2answers
26 views
WPF starting up interfaces without freezing the GUI
I know there is a bunch of threads about initializing stuff in a different thread so you dont need to freeze your UI. But in my case this initialization involves creating a lot of plots (polylines in ...
0
votes
0answers
13 views
EXTJS - how to write JS file that works with require() callback
I use Ext.require() to load numerous extjs library files, when all files are loaded that callback function in require() is executed, but when i try to load my custom defined namespaces eg ...
1
vote
1answer
20 views
Using php & jquery to post data from textboxes to text (csv) file and verify this by reading back to different textboxes on same webpage
Very simply, as a browser style UI, I'm trying to read two parameters (provided by user) in two textboxes, save them in a plain text file (specifically a csv but that's not important) on the server ...
0
votes
1answer
26 views
Fade in div after loading symbol
I am trying to load in a div after the loading symbol finishes. However It doesn't cover up the symbol while loading. Here's what I have so far: http://jsbin.com/emofud/92/
1
vote
2answers
18 views
how to load multiple xml files using spring util-properties
I have multiple sqlQueries.xml files e.g sqlQueries.xml, sqlQueriesAB.xml, sqlQueriesBC.xml and i want to load all of them using below tag but it seems that only supports loading one file only.
...
1
vote
2answers
16 views
CSS3: Will mobile devices load background images when inside media queries?
If I have the following:
div {background: #000}
@media (min-width: 1000px) {
div {background: url(myimage.jpg)}
}
Will a 320px wide smartphone, for example, still download that background ...
4
votes
1answer
34 views
Loading dependent DLLs from Azure Blob
I'm using a plugin architecture on Windows Azure. In order to survive restarts, I want to store the plugin DLLs in a blob rather than in the file system. However, I run into problems with dependencies ...
0
votes
0answers
32 views
as3 Greensock throwProps Error loading Children
I am having an issue with Greensock display children of a movieClip. I know there error is in these lines
// this works and makes flagButton alpha to .3
// Displays Flags which are children in the ...
0
votes
0answers
35 views
JPanel Wont Load Image
So I can't really figure out why I can't load an image into this JPanel....The code is kinda long, but I have it commented, so it should be fairly simple to deduce whats going on. Can anybody help? I ...
0
votes
1answer
17 views
Loading Profile Images on VK.com in ActionScript
I have an iframe application in vk.com. I can use their API everythink looks fine but when I want to load profile images I get Security Sandbox Error. When I print the result and errors I get This: (I ...
-1
votes
0answers
28 views
jgraphX loading data from XML file
I'm using jgraphx v.1.13.0.0 and I modified the HelloWorld example to try the possibility of saving and loading grapah data. I proceded in this way:
I stored a UserObject inside a cell, a simple ...
0
votes
2answers
26 views
How do I save some textviews and load them from another class?
In my app, i have you put in some information through some edit text. Then you hit this button and it starts another activity that does some calculations and then displays results through text views. ...
2
votes
2answers
62 views
Javascript/AJAX Asynchronous Loading Spinners
I am trying to make a basic enough page that allows the user to execute a php script by clicking a button. Each button will have a loading spinner popup on clicking.
My problem is, on clicking one ...
0
votes
1answer
26 views
iPhone loading screen until web request is finished
I need to show "Loading screen" (just an image) at the start of application and when application gets all needed data from web, then first viewcontroller is shown. I have succeded doing it by setting ...
0
votes
2answers
50 views
show ajax loading indicator when using synchronous ajax with JSON
I'm using ajax with jQuery on my site and need to show a progress / loading indicator.
My dilemna is this:
Synchronous AJAX locks the browser, so I cant do anything (e.g. show a loading indicator) ...
0
votes
3answers
38 views
Bitmap in ListView: Loading slowly
In my ListView, I have one ImageView and two TextViews in every row. The pictures for the ListView are loaded from the memory of my Galaxy Nexus. I already downscaled it to 100x100 using
Bitmap ...
0
votes
2answers
30 views
i want background image displaying loading in ie, as it is displaying the image after loading fully
am facing this problem in IE in all versions. Rest browsers it is fine
once i hit this url in IE http://projects.marswebsolutions.com/kidzntoyz6/ , the page seems to be loading normally but the body ...
1
vote
0answers
26 views
How-to Giving Loading bar during copy process in php
This is my script:
function copyr($source, $dest) {
// Simple copy for a file
if (is_file($source)) {
return copy($source, $dest);
}
// Make destination directory
if (!is_dir($dest)) {
...
-2
votes
0answers
30 views
How to load Google Finance values when the spreadsheet is not open [closed]
I know next to nothing about programming so let me know if you need additional info to post solutions.
My roommate helped me set up a Google spreadsheet to keep track of various financial data for ...
0
votes
0answers
15 views
Loading images in sequence without waiting
I found this code to load my images in order. the images has a class="revealcontent" and it works fine.
What I wanted to do is for the images to start loading immediately instead of waiting for all ...
0
votes
2answers
53 views
Does jquery's $.get(…) ajax success function trigger when the file has completed downloading?
Basically I want to know if the 'success function' of jQuery's $.get() method is fired when the whole file has finished downloading. I suspect it is, but just want to make sure.
I'm using a series of ...
0
votes
0answers
8 views
Nuclex Framwork and Loading Texture2d
I'm using https://nuclexframework.codeplex.com/ for my games GUI and Input systems. I have gotten them working just fine. Well just fine till I start loading in some graphics into my Texture array for ...
0
votes
0answers
38 views
Applet image not loading
I'm trying to load an image into my Java applet and I've tried it several ways but the image still doesn't appear in the applet.
Here's my code:
public class BackgroundApplet extends Applet {
...
0
votes
1answer
46 views
loading image fro MYSQL into Imageview
I have tried to find this answer for days now and cant find anything. I store url to image in my database and Im trying to get this url and load the image to a ImageView.
Users uploads a image and ...
0
votes
1answer
25 views
What context should I use when sending an Intent to an activity in a separate DEX file?
I have an android activity located in a separate dex file that I want to launch from my android app. I get an exception after starting the intent.
Didn't find class ...
-1
votes
0answers
35 views
AS3 AIR best way to store permanent vars in PHONE app
I am creating an AIR app using as3. I want to store settings and a "PURCHASED" var in a text file. If the one of the stored vars equals "Purchased" then I will call some code, if not I call other ...
0
votes
1answer
25 views
“bad restore file magic number” error in R
As in What could cause a "bad magic number" error when loading an R workspace and how to avoid it? and R has magic number 'ëPNG' error, I'm getting a bad restore file magic ...
0
votes
0answers
14 views
Terrain Chunk loading
https://dl.dropboxusercontent.com/u/63103279/Images/Chunk_loading.png
I am working on a project that create mesh chunks of terrain generated with procedural noise, and i tried a couple of ways ...
0
votes
1answer
46 views
Loading local .png and .mp3 files in Actionscript 3.0
I am writing a program in Actionscript using FlashDevelop. Using URLRequest, I am loading image and sound files perfectly fine when the program is run through FlashDevelop. The files are located in ...
0
votes
2answers
62 views
First load of my page doesn't quite work
I am somewhat new to jQuery and javascript and just implemented a new code yesterday to handle some styling around my menu. When the homepage loads, it doesn't quite work right, although it is doing ...
2
votes
1answer
30 views
URLClassloader Dependencies
In my previous question, I asked how to load remote jar files. My current code is this:
//f is the path to the jar
URLClassLoader loader = new URLClassLoader(new URL[]{f.toURI().toURL()});
...
3
votes
3answers
59 views
Verify that dynamically created CSS indeed loaded
I cannot find a way to identify whether the CSS, which was created dynamically via creating a <link> tag and then specifying the href attribute had indeed loaded.
Consider the following ...
5
votes
1answer
85 views
UIWebView loading and general performance
I am using UIWebView to display textual content in my app (I store the content in local HTML files that I pack with the app). All together, I have three web views whose content I change dynamically ...
1
vote
1answer
27 views
jQuery read JSON one object at a time
I have a potentially extensive list of JSON list of objects. I'd like to load each item individually rather than all of them in one large chunk and display a loading icon as each item is being ...
-1
votes
0answers
13 views
how prevent loading a webView a second time Xcode
I have a problem in my webview xcode code.
when I go on my webview, the page will load normally, but when I go and I come back to the page, the web page will load even once while I want the web page ...
0
votes
1answer
45 views
MIPS 3000 assembly, load and print 32-bit unsigned integer
My program has to accept an input between between 0 and 2^32 or 4,294,967,295.
Which bit-wise 32 bytes should be able to do, but i'm overflowing into the negatives because i'm not sure how to make ...
1
vote
0answers
65 views
jQuery: Wait for AJAX content to load before rendering webpage
I have a webpage showing a list of items that's divided into several pages. The list is contained inside a <div> whose contents are replaced via AJAX whenever the user clicks on a link ...
0
votes
0answers
30 views
Animated gif will not animate when preloading
For some reason my loading gif is not animating (though the actual image, when not on the page, does animate.) The following is the code I'm using:
<script type="text/javascript">
...
0
votes
0answers
64 views
Firefox not loading css images
So, I've been coding up this site for around a week now, and in the last few days I've hit a problem which is driving me nuts. Safari, Opera, even IE are all fine, but in Firefox background images ...
2
votes
1answer
109 views
Zooming and loading very large TIFF file
I have a very large hi-res map which I want to use in an application (imagesize is around 80 mb).
I would like to know the following:
How can I load this image the best way possible? I know it ...
0
votes
0answers
35 views
glutCreateMenu() long loading why?
I have developed an OpenGl program that is displaying me some nice objects. As i wanted to include interaction on it, i have decided to use glutCreateMenu().
The code relating to menu creating on ...
0
votes
1answer
22 views
Android Horizontal progresBar progress stops in the middle
I'm a "fresh" Android developer and i tried the horizontal ProgressBar.
I have a little issue with it, progress stops in the middle and does not continue till the end of the bar.
Can you help me ...
0
votes
2answers
22 views
As3 Adding MC from Libary and accesing content inside loaded MC
I have a movieClip I am loading from the Libary and I have properly LINKED it to export with a name of myMC. This movieclip contains another movieClip and some properties. Lets call the movieClip ...
0
votes
1answer
40 views
how to load global variables from ajax get with promisses
I am getting data to global variables in the most dummy way. At the moment:
var tranlationJson =
$.ajax({
type: "GET",
url: "translation.xml",
contentType: "text/xml",
dataType: ...





