loading

Is it possible to load data over proxy in flex

Hi guys, I'm wondering if it's possible to load assets through proxy in flex, for example to load image. As far as I discovered there isn't such way, but I thought it wouldn't be any harm to examine your huge knowledge also :). Thanks, Royee ...

Any idea to make wellcome screen

Hello I'm a new android developer. I want to do a welcome page which can display program logo [ full screen image] and loading progress of my main program. My main program has to load a webpage. My question is how to display the web-loading progress of the main program on the welcome page, while showing the welcome page until the downl...

loading animated png

I'm looking for an animated Loading icon that is also transparent; however (I know I'm lazy) I dont want to make my own. Please forgive me if this is not the correct forum for this post, I've just had so much luck here in the past. does anyone know where I can find one of these....it needs to be very small (icon size). ...

Load SQL dump in PostgreSQL without the password dependancy

Hi, I want my unit tests suite to load a SQL file in my database. I use a command like "C:\Program Files\PostgreSQL\8.3\bin"\psql --host 127.0.0.1 --dbname unitTests --file C:\ZendStd\www\voo4\trunk\resources\sql\base_test_projectx.pg.sql --username postgres 2>&1 It run fine in command line, but need me to have a pgpass.conf Since ...

Check through Javascript that page is loading something

When the browser is loading something on a page you can see it in the status bar that it says "Waiting for..." or "Transfering..." etc. In firebug you can check in the net tab when something is being loaded and see when it stops. That is what I want. Is there a way for me to trigger an event when that happens ? Or to get the status o...

Can I do this?? Trying to load an object from within itself.

Hi all! I have an object which conforms to the NSCoding protocol. The object contains a method to save itself to memory, like so: - (void)saveToFile { NSMutableData *data = [[NSMutableData alloc] init]; NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data]; [archiver encodeObject:self forKey:kData...

AssemblyResolve event is not firing during compilation of a dynamic assembly for an aspx page.

This one is really pissing me off. Here goes: My goal is to load assemblies at run-time that contain embedded aspx,ascx etc. What I would also like is to not lock the assembly file on disk so I can update it at run-time without having to restart the application (I know this will leave the previous version(s) loaded). To that end I hav...

Are .dll files loaded once for every program or once for all programs?

I have a simple small question which someone who knows will be able to answer easily, I searched google but couldn't find the answer. There are many programs running at once on a computer, and my question is: when a program loads a DLL, does it actually load the DLL file or does it find the memory in which the DLL is already loaded? For...

Why are functions loaded at aligned addresses in x86 Linux for elf executables?

Hi, I've been looking at Linux elf executables on x86, mostly using IDA but also gdb. One thing I've noticed is functions are always loaded at word aligned addresses? Anybody knows the reason of that? I am not aware of any requirement of x86 instructions to start at aligned addresses. And it cannot be due to page alignment cause the pag...

Tapestry 5, loading css from filesystem

We are creating a Tapestry 5 webapp with an external designer creating and maintaining the css-files of the application. We would like him to be able to make changes to the css-files without the need to change the webapp, prefarably in the configurable path in the filesystem. So what would the best way to do this with Tapestry 5? ...

Page loading effect with jquery

Hello all, Is there a way to use jquery (or other method) to display a loading div while page loads? I have a table that is populated using PHP/MySQL and can contain several thousand rows. This is then sorted using the tablesorter plugin for jquery. Everything works fine, however the page can sometimes take 4-5 seconds to fully load an...

What system does before launching iPhone app's main() function?

My app takes too much time to loading. So I put a NSLog in main() function like this to measure loading time from first: int main(int argc, char *argv[]) { NSLog(@"main"); NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); [pool release]; return re...

Shortening code

Nah, looks like it was hosting fault. Who can make this code shorter? private function replaceFunc($subject) { foreach($this->func as $t) { preg_match_all('/\{'.$t.'\([a-zA-Z,\']+\)\}/i', $subject, $res); for($j = 0; $j < sizeof($res[0]); $j++) { preg_match('/\([a-...

How do I remove flickering from image loads in Flash? in Action script 3

Hi, I'm currently working on making a flash program that creates a movie out of a folder of images. There are buttons to control play, pause, stop, forward, reverse and the like. Its going great but when I play the sequence the image flicker from the loading time becomes almost seizure inducing. Each sequence is about 1000 images long...

Loading image in jQuery doesn't dissapear sometimes

Trying to get a spinner gif to appear at the beginning of an image loading, then disappear when the image is loaded. Works almost everytime, but some times it will keep on displaying and won't go. Any help? (Relevant function showed) $.loadImage = function(imgSrc,imageList){ $("#loading-graphic").fadeIn('slow'); $.clearImage(); ...

Lytebox not loading when all thumbnails are not loaded.

If you go here: http://74.53.45.114/~hendrikv/new/galleries.html - click on any gallery and then click on any thumbnail before all the thumbnails are loaded the image is not opened in Lytebox. Also looks like this only happens to some visitors and not all. Is there anyway to get around this so that the image opens in Lytebox even though...

Searching Loading Gif

Hello, For my application I need a loading gif animation. I searched around the web but could not find to my need. Requirements are below: 64x64 px transparent background throbber like GPL Where can I find such a Ajax style loading Gif? Thanks ...

is there a better way to show loading message with jquery ui tabs ?

using jquery ui tabs, when you load a tab in ajax, the tab changes message to say "Loading . ." i think this is a little subtle. Is there anyway you can do something in this content area of the tab similar to what block ui does when you are loading a call in ajax. ...

Is there a way to make changes to toggles in my .emacs file apply without re-starting Emacs?

I want to be able to make the changes to my .emacs file without having to reload Emacs. I found three questions which sort of answer what I am asking (you can find them here, here and here), but the problem is that the change I have just made is to a toggle, and as the comments to two of the answers (a1, a2) to those questions explain, ...

Problem with assembly loading in .NET

Hi guys, I have got two projects in my solution: Silverlight and standard one. The standard one references System.Xml assembly (version 4.0.0.0), however the Silverlight one references System.Xml assembly (v. 2.0.5.0). I want to make an instance of XmlWriter in my Silverlight project. Here comes the problem - the exception is thrown (fi...