Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MXML Navigate #162

Open
SandersAlex opened this issue Jan 16, 2018 · 0 comments
Open

MXML Navigate #162

SandersAlex opened this issue Jan 16, 2018 · 0 comments

Comments

@SandersAlex
Copy link

SandersAlex commented Jan 16, 2018

When working with "mxml", you can not go to the definition Ctrl+click from MXML (F4 is worked). For example:

IconButton.as

package com
{
	import spark.components.Button;
	
	public class IconButton extends Button
	{
		public function IconButton()
		{
			trace("IconButton: constructor started...");
			
			this.buttonMode = true;
			this.useHandCursor = true;
		}
		
	}
}

PagedDataGroup.mxml

<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx"
               xmlns:comp="com.*"
               currentState="horizontal">
	<fx:Declarations>
	</fx:Declarations>
	
	<s:states>
		<s:State name="horizontal" />
		<s:State name="vertical" />
	</s:states>
	
	<comp:IconButton id="previousButton" />
</s:Group>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant