Tagged Questions
0
votes
1answer
27 views
communication between flex modules by interfaces
I have defined 3 interfaces in my flex project, "B", "C" and "D". The "D" interface extends the "B" interface, and the "C" interface is a consumer of the "B" type instance. After that, I have defined ...
1
vote
1answer
498 views
How do you specify ApplicationDomain.currentDomain when loading via SWFLoader?
I'm using Flex Builder 3 to build what will be a fairly large project. I'm suffering from modules stepping on each other and a conflict between application/module. My structure looks something like ...
2
votes
2answers
170 views
flex air mobile communication with javascript
I have an educational application in which I have three components viz; android communication engine, flex content bridge and flash content. Now I have a task to replace the flash content with HTML ...
0
votes
1answer
48 views
Flex: load parent class into module
My main application contains a ClassA. The main application then loads a module and in that module I would like would to do:
var classA:InterfaceClassA = new ClassA();
It compiles fine but I get ...
0
votes
0answers
41 views
Flex ModuleLoader and cyrillic domains
I've been trying to load module (swf file) from cyrillic domain using ModuleLoader:
<mx:ModuleLoader id="loader" width="100%" height="100%"
...
0
votes
0answers
207 views
dispatchEvent and eventListener
MENU - RightNavigation
<fx:Metadata>
[Event(name="interval", type="flash.events.Event")]
<fx:Metadata>
[Bindable]
public var sInterval:String;
[Bindable]
public var sIntervalId:String;
...
2
votes
1answer
148 views
Distributable extensions (modules) for mobile app in Adobe Flex/AIR
I am creating an mobile app in flex 4.6 which will have some default embedded content.
I need to be able to extend this app with modules (additional content libraries) let's say up to 35MB each, the ...
0
votes
2answers
427 views
Error: Could not resolve to a component implementation
I have a module that seems to work fine with spark components in it but when I try to load my own it gives me this error.
Error: Could not resolve <views:DisplayList> to a component ...
1
vote
1answer
80 views
Flex: Multiple modules conflict
I have multiple modules within a Flex application. All of them have web service calls to remote applications. Module 1 is a search engine that requires a long running web service call, and while ...
2
votes
2answers
446 views
Flex Module loading stopped working on my dev machine (VerifyError: Error #1014: Class mx.modules::ModuleBase could not be found.)
We have a quiet big flex application compiled with flex 3.4 SDK.
We also have several modules to load after some requirements (some at startup, some later).
Everything is compiled with the same ...
0
votes
0answers
25 views
Flex events thrown when modules are switched
I could find in live docs that in a modular application the modules are loaded only once and then different modules are switched when called. Due to this the events related to module loading like ...
0
votes
1answer
269 views
flex 4.6 add or change element name when using addElement()
flex 4.6
I am using addElement as below. I note however that when inspecting the element, the name of the element is suffixed with a number, so the loaded element name of newMod becomes newMod10 ...
0
votes
0answers
235 views
flex 4.6 call parentDocument from module not working in some cases
flex SDK 4.6
My objective is to understand how to load a module that has no display elements and then have that module interface with the parent and other modules.
In the below example everything ...
0
votes
0answers
172 views
Loading sub application with RSLs and multi-versioned SDK
This may be quite intricate, but I'll do my best to provide a clear explaination...
The Parent application:
This is an AS3 app using the 4.5.1 SDK (cannot go less than 4.5) that will be browser ...
0
votes
1answer
203 views
Maven flex,integrate several module,pop up flash error:VerifyError: Error #1014: Class mx.controls::List could not be found
I have 4 flex project,3 are modules,1 is application.
compile these project with Flash Builder,integrate and run,is ok.
But when I compile these use maven script(Flex SDK merged into code).integrate ...