Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
emadsen #1
Window component, it's content and listeners
I am creating a Window component and setting the content as a movieclip in my
library with linkage of "win_setup"...
setupWindow = mx.managers.PopUpManager.createPopUp(_root,
mx.containers.Window, true, {contentPath:"win_setup", title:"Setup"});
and I can add a listener to tell me when the window is created....
setupform = new Object();
setupform.load = function(eventObj){
trace("window loaded");
setupWindow.content.server_txt.text = 'foo';
}
setupWindow.addEventListener("load", setupform);
.... but the line that tries to change a text property in the window's content
is not working. I am assuming this event is only fired when the window is
created and has nothing to do with the content being fully loaded. What should
I do?!
emadsen Guest
-
Event listeners internal to a component
I need to setup an event listener inside a custom component so that when a property of the component is changed by an external source then a method... -
editing pop-up window content
I designed a site in Dreamweaver and want to allow other users to edit it using Contribute. There is one page that links to various minutes of... -
Wrong window gets the content
I have a datagrid with a button column. When the user clicks a button in the datagrid, a PDF should open in a child window. To make this happen, I... -
Presenter Component Wont Scale content
I have been trying to use the Speaker Presentation Component to load swf files for presentations. Some swf files load fine but most of them do not... -
Window component - content proglem
Hi, I have popup window created with window component for Macromedia Flash 2004 Pro and this code buttonListener = new Object()...



Reply With Quote

