Return-Path: X-Original-To: apmail-flex-dev-archive@www.apache.org Delivered-To: apmail-flex-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C2575111ED for ; Fri, 15 Aug 2014 23:44:54 +0000 (UTC) Received: (qmail 32745 invoked by uid 500); 15 Aug 2014 23:44:54 -0000 Delivered-To: apmail-flex-dev-archive@flex.apache.org Received: (qmail 32708 invoked by uid 500); 15 Aug 2014 23:44:54 -0000 Mailing-List: contact dev-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list dev@flex.apache.org Received: (qmail 32689 invoked by uid 99); 15 Aug 2014 23:44:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2014 23:44:53 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of flexcapacitor@gmail.com designates 209.85.219.44 as permitted sender) Received: from [209.85.219.44] (HELO mail-oa0-f44.google.com) (209.85.219.44) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2014 23:44:27 +0000 Received: by mail-oa0-f44.google.com with SMTP id eb12so2557928oac.31 for ; Fri, 15 Aug 2014 16:44:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=9NHJ5Gflmt81CVw8YSWmAjwSY6yNI9LpYhOceZTP2Ms=; b=uMmcbdB79SSO0cS/ahXNXQanslZ1IrDicxnFB9bSoR9WNY2KHCLLnPjTuxl4DOjqq/ ANbToVJRshYbkxUW/iLk9V00gM/J9WLpDuwBGf6CjOYd5E66LiGIiIa8jKySe0SAJGnA ElX1EJkT3fkU9kYH00JGf0Y8atfp7qtICNcKMYDU87acxkdZcDady6selskp8xM/8360 aKGe9JoqvzAhidfNEBjJG+Gd7Q3w4YUTpIT48ovJ5Js5fVEErUxUyVTvr68nXNyQ+bfC /NlFkrZI4fmLbsiPStxXKM/mrT6kaWwUGSFKKL4coLpfSsx/j2vwT+NcD056ZXIpPZ/n 9z3w== X-Received: by 10.60.220.169 with SMTP id px9mr22860577oec.67.1408146266147; Fri, 15 Aug 2014 16:44:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.76.82.73 with HTTP; Fri, 15 Aug 2014 16:44:06 -0700 (PDT) From: jude Date: Fri, 15 Aug 2014 18:44:06 -0500 Message-ID: Subject: Is there an any value in metadata enumeration To: dev Content-Type: multipart/alternative; boundary=001a1133e0e4fc51160500b399cb X-Virus-Checked: Checked by ClamAV on apache.org --001a1133e0e4fc51160500b399cb Content-Type: text/plain; charset=UTF-8 I want to provide a list of options for a property to be enumerated by Flash Builder but I also want to allow the user to type in any value as well. Is there a way to do this? For example, I have a property called, "eventName" and I want to provide a few of the popular event names but I also want the user to be able to enter their own event name as well. [Inspectable(enumeration="click,mouseDown,doubleClick,*")] public function set eventName(value:String):void {} If I want to enumerate "click" or any other value is possible can I do something like this: enumeration="click,*" or enumeration="click," --001a1133e0e4fc51160500b399cb--