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

como hacer de un listbox un Font Picker ?

New Here ,
Nov 05, 2015 Nov 05, 2015

Copy link to clipboard

Copied

Buenos días a todos, me gustaria saber como puedo hader que en un listbox, las fuentes que se listan aparecieran con su fuente original, para hacer mas facil su identificación, a modo de font picker. os dejo una imagen con el listbox al que hago referencia,

sshot-6.png

algo parecido a esto,

http://www.codeproject.com/KB/WPF/325753/xamlfontchooser_menu.png

Estoy utilizando ExtendScript.

     Gracias de antemano.  un saludo a todos.

TOPICS
Actions and scripting

Views

365

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
Adobe
Community Expert ,
Nov 05, 2015 Nov 05, 2015

Copy link to clipboard

Copied

dlg.msgPnl.grp6a =dlg.msgPnl.add('group');

dlg.msgPnl.grp6a.orientation='row';

dlg.msgPnl.grp6a.alignment='fill';

dlg.msgPnl.grp6a.st1 = dlg.msgPnl.grp6a.add('statictext',undefined,'Font');

fontlist = new Array();

  for (var i=0,len=app.fonts.length;i<len;i++) {

  fontlist =  app.fonts.name;

  }

dlg.msgPnl.grp6a.dd1 = dlg.msgPnl.grp6a.add('dropdownlist',undefined,fontlist);

dlg.msgPnl.grp6a.dd1.selection=1;

Capture.jpg

JJMack

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
New Here ,
Nov 05, 2015 Nov 05, 2015

Copy link to clipboard

Copied

LATEST

Gracias por responder JJMack, pero no se trata de listar las fuentes, eso ya lo hago con el dropdownlist y el listbox, lo que quiero es que en la lista del listbox me aparezcan con la fuente original de cada elemento, no con la global que le aplica el programa. Un cordial saludo y quedo a la espera de recibir alguna orientación.

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