fdplugin-quicknavigate icon indicating copy to clipboard operation
fdplugin-quicknavigate copied to clipboard

MXML Navigate

Open SandersAlex opened this issue 8 years ago • 0 comments

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>

SandersAlex avatar Jan 16 '18 09:01 SandersAlex