1 <?xml version="1.0" encoding="utf-8"?>
3 xmlns:mx="http://www.adobe.com/2006/mxml"
4 xmlns:potlatch2="net.systemeD.potlatch2.*"
5 title="Edit Relation" width="350" height="400"
6 showCloseButton="true" close="PopUpManager.removePopUp(this);">
8 <potlatch2:TagViewer width="100%" height="100%" id="tagViewer"
9 creationComplete="checkRelation()"/>
12 import net.systemeD.halcyon.*;
13 import net.systemeD.halcyon.connection.*;
14 import net.systemeD.potlatch2.*;
15 import mx.managers.PopUpManager;
17 private var _relation:Relation;
19 public function setRelation(relation:Relation):void {
21 // if ( tagViewer != null )
22 // tagViewer.setEntity(_relation);
25 public function checkRelation():void {
26 if ( _relation != null )
27 tagViewer.setEntity(_relation);