• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

The first experience. Help me !

Explorer ,
Oct 18, 2013 Oct 18, 2013

Copy link to clipboard

Copied

Hello everyone.

I use Adobe Configurator to create a panel in Photoshop. The forum came across a post that panel with great features can be created in Flash Builder.

Prompt please link where you can find a description and examples.

Thank you very much!

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 20, 2013 Oct 20, 2013

Copy link to clipboard

Copied

Panels can be created using Flash Builder and Adobe Extension Builder. They are two separate products.  The current versions are for HTML5.

I use Flash Builder 4.5 and  Extension Builder 2.1 to create using ActionScript. Great product but hard to find good simple example to follow.

Most of the example I found through Adobe Extendscript Toolkit.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 22, 2013 Oct 22, 2013

Copy link to clipboard

Copied

I use Action Script, but would like to be able to lock the buttons on the panel created. Could you give a reference to the clear lessons on the packages Flash Builder and  Extension Builder for created tools panels?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 23, 2013 Oct 23, 2013

Copy link to clipboard

Copied

Are you looking for HTML5 or ActionScript examples?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 23, 2013 Oct 23, 2013

Copy link to clipboard

Copied

hm... may be that is good idea, i'm look  widget HTML in Configurator, but don't uses... give me please links for examples 🙂

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 25, 2013 Oct 25, 2013

Copy link to clipboard

Copied

LATEST

Here is an example to use absolute positioning.

Changed:

<s:Form x="0" y="39" width="206" height="86" backgroundColor="#A9A8A8">

</s:Form>

<s:Label x="12" y="43" color="#FFFFFF" fontSize="10" text="Size"/>

<s:Label x="48" y="43" color="#FFFFFF" fontSize="10" text="Position"/>

    

To:

<s:Form id="form1" x="0" y="39" width="206" height="86" backgroundColor="#A9A8A8"

          skinClass="spark.skins.spark.SkinnableContainerSkin">

<s:layout>

          <s:BasicLayout/>

</s:layout>

<s:Label x="12" y="3" color="#FFFFFF" fontSize="10" text="Size"/>

<s:Label x="48" y="3" color="#FFFFFF" fontSize="10" text="Position"/>

</s:Form>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines