Flex 3 PopUpMenuButton And ReferenceError #1069
Sep 23, 2010
I've got a PopUpMenuButton in a Flex 3 application. If someone clicks on the pulldown part, it works fine. But, if they click on the main button part, I get get ReferenceError: Error #1069. After the user dismisses the error, it then does what it's supposed to do.
<mx:PopUpMenuButton
id="myPopUpMenuButton2"
label="Flip"
labelField="@label"
[code]....
View 1 Replies
Similar Posts:
May 23, 2011
I'm trying to call a function from a menu to an image gallery, the menu is in one swf and the image scroll is in other one... but when i try to do that this f *** error appears: Error #1069, saying that the property is not in the other file... i don't know why is this happening cause in other case it worked without a problemthis is in CUBE.swf
ActionScript Code:
var scroller:Loader;
function openImgs(e:MouseEvent3D):void{
[code]......
View 9 Replies
Apr 19, 2011
I'm completely new to flash and I'm building a website right now. I'm trying to get my buttons to function with my pages, but I keep getting this error, and nothing but a continuous loop of my pages content."ReferenceError: Error #1069: Property num not found on flash.text.TextField and there is no default value.at reetlightfinal_fla::MainTimeline/onclk()"hat am I doing wrong? Here's my code.
Code:
stop();
function makebutton(mc:MovieClip, num:int):void{
[code].....
View 4 Replies
Nov 12, 2010
Why I'm getting this error? (Adobe Air)
ReferenceError: Error #1069: Property . not found on builtin.as$0.MethodClosure and there is no default value.
var srt:String = "2010.11.12 19:15";
var _split:Array = str.split(" ");
var _date:String = _split[0];
[code]....
I just need to create a Date object from this string, like new Date(dateArr[0], dateArr[1]-1, dateArr[2], timeArr[0], timeArr[1]);
View 1 Replies
Dec 9, 2009
I only get this error when I hit the save button the second time, and I'm not quite sure why that is...Screenshots of what the xml looks like before and after save is attached. Here's the method that edits it:
ActionScript Code:
private function createSourceNodePropertyForm(event:Event, propPanel:SuperPanel, form:Form):void {
[code].....
View 3 Replies
Feb 5, 2009
I am having trouble with this code:
[Code]....
Code: ReferenceError: Error #1069: Property currentFrame not found on String and there is no default value. I think you might see where I'm heading with this, but I'm at a loss this morning. I only got about 3 hours of sleep last night. If anyone can point me in the right direction,
View 3 Replies
Oct 22, 2010
My Main Class:
Code:
package {
// Flash Classes
import flash.display.MovieClip;
import flash.events.Event;
[code]....
In result I receive:
ReferenceError: Error #1069: Property projectSetupStageFullscreen not found on Main and there is no default value.
at core::InitStage()
at Main()
View 9 Replies
Aug 4, 2009
Im trying to make my buttons work.. but Im getting this error message when I click on my buttons any help will be appreciated.....
ReferenceError: Error #1069: Property names not found on flash.display.SimpleButton and there is no default value.
at onewaywesite_fla::MainTimeline/clickSection()
View 5 Replies
Jul 14, 2011
ReferenceError: Error #1069: Property gotoAndStop not found on flash.display.SimpleButton and there is no default value. at AS3RPG_fla::MainTimeline/switchToFHero() Im still new to As3 eventho i have some decent experience in As2, i understand the problem im just not sure how to correct it since As2 buttons obviously didnt need this.
View 7 Replies
Jul 24, 2011
I have 3 input textfield. Each textfield has a string pre-loaded into it. When user pressed Tab, the focus should be cycled around textfield 1-3. Now, I'm trying to set the caret index to the last letter of the textfield. What is wrong with the code?
Code:
public function myTabKeyDown(event:KeyboardEvent):void
{
[code]....
View 3 Replies
Dec 6, 2010
ReferenceError: Error #1069: Property gotoAndStop not found on flash.display.AVM1Movie and there is no default value.at Shell_fla::my_playbtn_43/pauseAll()I am getting error for the following code
pause_btn.addEventListener(MouseEvent.CLICK, pauseAll)
function pauseAll(evt:MouseEvent):void
{
[code].....
View 5 Replies
Jan 27, 2010
I have narrowed this error down to the following code, but i cant see the problem...
Code:
ReferenceError: Error #1069: Property ENTER_FRAME not found on flash.events.Event and there is no default value.
at sample_fla::MainTimeline/frameEventHandler()
ActionScript Code:
addEventListener(Event.ENTER_FRAME,frameEventHandler)
function frameEventHandler(Event){
var collisions:Array = collisionList.checkCollisions();
[code].....
View 9 Replies
Feb 15, 2011
The first line of this code is throwing ReferenceError #1069. "Property focusMask not found on ObjectButtonSkin and there is no default value." The "skin" variable is of type MovieClip, and the actual object instance is of type ObjectButtonSkin (which extends MovieClip).
[Code]...
This was never a problem before, so I'm not sure why this is happening. The ObjectButtonSkin class is not marked as dynamic or anything else, so perhaps that's the problem? One site suggested I should be using "()" instead of "[]" to access the property, but that doesn't seem right.
View 1 Replies
Sep 30, 2009
what is error 1069?, the line in red drops error, any clue?.....
Code:
myloader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderFunction);
//event listener sub buttons control loaded movie
function loaderFunction(evt:Event):void {
[Code].....
additional info about the error: Property content not found on flash.display.SimpleButton and there is no default value. at MethodInfo-2()
View 3 Replies
Sep 30, 2009
what is error 1069?, the line in red drops error.
[Code]...
Property content not found on flash.display.SimpleButton and there is no default value. at MethodInfo-2()
View 2 Replies
Sep 4, 2009
I've been looking at the following example for populating a PupUpMenuButton [URL] and would like to add icons to each menu. Ideally, I would specify the icon in the xml and assign it in a similar way to using labelFunction for the text. The only information I've found via google is to create a menu as follows
(seems I can't include more than one url, but it is an example that creates a menu object using the following function):
private function initMenu():void {
menu = new Menu();
menu.dataProvider = xmlList;
menu.labelField = "@label";
menu.iconField = "@icon";
}
but I would really prefer to build it all from the XML file.
View 1 Replies
Jan 18, 2011
I am trying to create a popupmenubutton, with images and label as its nodes. But I am unable to embed the icons. It gives me and error(given below). Thou the label alone are working fine.
<mx:PopUpMenuButton id="menu_file" labelField="@label" itemClick="{menuClickHandler(event);}" visible="false"
height="20" left="0" top="0" width="15" alpha="0.5" cornerRadius="5" useHandCursor="true"[code].....
This gives me an error: Initializer for 'Embed': unrecognized compile-time directive.
View 2 Replies
Jul 23, 2009
I have PopUpMenuButton. I want to make it so that a mouseover (over either the button or the "V" part) pops open the menu. I don't care about the button click.I tried to do a My_PopUpMenuButton.dispatchEvent(new MenuEvent(MenuEvent.ITEM_CLICK)) when another button was clicked, but that didn't work.
View 2 Replies
May 17, 2011
am having an issue with a project I am working on in Flash Builder.Following is my stack and code example. Could someone please tell me what I am doing wrong?ReferenceError: Error #1069: Property page4 not found on WOAPPv2 and there is no default value.
at WOAPPv2/dragDropHandler()[/Users/martinw/Documents/Adobe Flash Builder 4/WOAPPv2/src/WOAPPv2.mxml:165]
at flash.events::EventDispatcher/dispatchEventFunction()
[code]........
View 1 Replies
Oct 21, 2011
I have this sample of Popupmenubutton, I want to know how to enable & disable popupmenubutton elements at run time?
[Code]...
View 0 Replies
Mar 1, 2010
I'm trying to use the flex profiler to discover where the performance problems in my app are. However, when I run the app, I get this error message. I don't get this when I run regularly or in debug mode.
ReferenceError: Error #1065: Variable ContextMenuClipboardItems is not defined.
at flash.ui::ContextMenu/initLinkAndClipboardProperties()
at flash.ui::ContextMenu()
[code]......
View 1 Replies
Mar 17, 2010
I have a text field which I would like to bind to a dynamic object.
<mx:TextInput id="ti4" text="{selectedObj['someProp']}" valueCommit="{selectedObj['someProp'] = ti4.text}" x="1011.5" y="835"/>
If the property doesn't exist I get a reference error - Is there any way to fail a little more gracefully?
View 1 Replies
Nov 4, 2010
I have this error when running my application on debug mode :
ReferenceError: Error #1056: Cannot create property root on MyClass.
The problem is that MyClass doesn't contain any root property and i don't know how it get it,
I have isRoot property at the Java Class with setRoot setter and isRoot methods,
at the flex side i have isRoot as public without getter and setter.... could the problem be just convention names compatibility
View 1 Replies
Aug 22, 2011
Ok, I need some help on this one. I upgraded from Flash Builder 4 to Flash Builder 4.5 and have switched my project to the 4.5.1 sdk. I use an ant script to build my project, so I modified it to use the appropriate flexTasks.jar, mxmlc, etc...
Now, if I start out with a blank bin-debug folder, then build and run the app everything works fine. However, if I then make a code change and build (without deleting the bin-debug) then run the app I get a runtime error:
[Code]...
View 1 Replies
Jul 15, 2010
I have a gui class, The functions optional value getting error. If i am not passing the fillcolor and other optional values. Error: ReferenceError: Error #1069: Property fillColor not found on String and there is no default value.
[Code]...
View 1 Replies
Jul 13, 2011
I wrote a flex demo, customized spark TextInput skin with rounded corners and a search icon in it, like mac os x search box, it's running good in browsers (by Flash Player browser plug-in) either .html or .swf, but error by flash player directly.
[Code]...
View 2 Replies
Jul 18, 2010
having an error 1069 Property_transitionManager not found in subMenu and there is no default value.at fl.transitions::TransitionManager$/start()at Painel3/onClick(Heres my code:
Code:
package {
import com.greensock.TweenLite;
[code].....
View 2 Replies
May 7, 2010
Error #1069: Property data not found on flash.display.SimpleButton and there is no default value.what will be the solution of this problem.
View 1 Replies
Oct 21, 2010
I'm using FileReference to download an image directly from Flash. Works fine in my standalone SWF, but it throws the following error when it is loaded into another SWF:
ReferenceError: Error #1069: Property save not found on flash.net.FileReference and there is no default value.
Here's the code I'm using:
public function downloadImage():void {
var imageData:BitmapData = new BitmapData(photoFrame.width, photoFrame.height);
imageData.draw(stage, new Matrix(1, 0, 0, 1, -photoFrame.x, -photoFrame.y));
var jpgEncoder:JPGEncoder = new JPGEncoder(85);
var saveFile:FileReference = new FileReference();
saveFile.save(jpgEncoder.encode(imageData), "myImage.jpg");
}
View 2 Replies
Dec 1, 2009
I'm trying to export a movieclip in my library as it's own .SWF
but whenever i open up the .swf it produces, it gives me the following error:
ReferenceError: Error #1065: Variable allen2drums is not defined.
otherwise, the movieclip works fine. is there any way to quell this error?
View 3 Replies