Tagged Questions

0
votes
4answers
40 views

Error handling in Dynamic JS loading

I am loading a JS file needed only for one part of my web page, only when the user navigates to that tab on the page. var scriptFile = document.createElement("script"); scriptFile …
0
votes
2answers
55 views

Dynamic loading problem when program executes from a jar

Hi all, I have an application which is extendable through java classes that conform to a given interface. If I run the program from the command line classes, I am able to instanti …
0
votes
1answer
100 views

Detecting and dynamicly loading the installed Microsoft Word Object Library

A little back story: I have small application that will use Word to generate a Outlook signature based on a Word template and data from the company active directory. It works wonde …
0
votes
6answers
131 views

Disable automatic DLL loading in C++

My scenario is as follows: my application depends on a certain DLL (I use it's lib during linkage). However, when my application executes, I want to explicitly load that DLL using …
0
votes
2answers
56 views

Load content as an element scrolls into view

Hey everyone, I have a list of search results in a <div> element with a static height and overflow: auto; in the style. I would like to load only the first x number of searc …
9
votes
4answers
1k views

Building a Plugin Architecture with Adobe AIR

I'm thinking of choosing Adobe AIR as the client-side implementation technology for an upcoming project. (The previous choice was C# and WPF, but I've been really impressed with Fl …
1
vote
4answers
258 views

How do I make an Action Script 3 class, used in two SWF files, resolve to the same class when one SWF dynamically loads the other?

Background I am developing a highly modular application in pure Action Script 3 (we are using Flex 4 SDK to automate our builds, but all our code must be able to compile directly …
0
votes
1answer
59 views

How to scan a directory for assemblies and load them?

I would like to scan a directory for any assemblies that are not already referenced in the project then load all instances of a class that implements IMyInterface. I know that t …
0
votes
5answers
180 views

Including Java classes and running them during runtime

I have a Java project that needs a "addon" interface. I was thinking about loading some kind of class files having default methods like initialize() and shutdown() that will be cal …
1
vote
3answers
303 views

How to abort the loading of an external HTML resource, from JavaScript?

I'm writing a JavaScript widget, which is intended for use on other website and loads additional script files from my own web site (which basically means no XHR due to cross-domain …
0
votes
2answers
141 views

Can dynamically pluggable modules be done in VHDL?

In c (embedded) a plugin can be implemented by defining a function pointer table and an address range that the module can be loaded into. This requires linker directive to allocat …