[Flashcoders] List component for touchscreen

2010-04-26 Thread Glen Pike

Hi,

I am looking at a project which uses a list of data for a 
touchscreen PC.  Sometimes the data-sets for the lists get quite large.  
Can anyone recommend the best way to handle this - using Flash AS3.  I 
will need to have quite chunky skins for fingers rather than a mouse.


I also want to look at implement some simple gesture type controls 
to scroll the list and pick items.  I keep finding lots of multi-touch 
stuff, but only need single touch for now.  Are there any API's or 
frameworks that might handle this?


Thanks

Glen
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List component transparentBackground?

2010-04-13 Thread kennethkawam...@gmail.com
If you are using Flash IDE, at least you can do this manually. To see
the effect go to Library > Component Assets > ListSkins > List_Skin
and CellRendererSkins > CellRenderer upSkin then change the background
fill alpha to 0.
-- 
Kenneth Kawamoto
http://www.materiaprima.co.uk/

On 13 April 2010 16:21, Carl Welch  wrote:
> Is it possible to make the List Component's background color transparent.
>
> I googled and found this but it doesn't appear to work:
>
> list.setStyle("backgroundDisabledColor", "false");
> list.setStyle("borderStyle" , "none");
>
> is there something else I need to do? or is it even possible.
>
> thx.
> --
> Carl Welch
> http://www.carlwelch.com
> 805.403.4819
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] List component transparentBackground?

2010-04-13 Thread Carl Welch
Is it possible to make the List Component's background color transparent.

I googled and found this but it doesn't appear to work:

list.setStyle("backgroundDisabledColor", "false");
list.setStyle("borderStyle" , "none");

is there something else I need to do? or is it even possible.

thx.
-- 
Carl Welch
http://www.carlwelch.com
805.403.4819
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List component

2007-06-07 Thread Cary Ho
Actually, I got the listener going, but I dont know how to get the List 
itself to update the labels :P


[EMAIL PROTECTED] wrote:

Try using a listener to listen to "change" of the list so when the list
changes it gets updated.

var listenerObject:Object = new Object();
listenerObject.change = function(eventObject:Object) {
// Your code here.
};
listInstance.addEventListener("change", listenerObject);

That's taken from the Help files.

-Gerry

  

Hi guys,

I have a list component that I add objects to. I use the labelFunction
field to set the label.
It works fine, but if I change the object name, the List doesnt update.
Is there a way to get the list to update the the labels after object
changes?

TIA
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

  


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] List component

2007-06-07 Thread gerry
Try using a listener to listen to "change" of the list so when the list
changes it gets updated.

var listenerObject:Object = new Object();
listenerObject.change = function(eventObject:Object) {
// Your code here.
};
listInstance.addEventListener("change", listenerObject);

That's taken from the Help files.

-Gerry

> Hi guys,
>
> I have a list component that I add objects to. I use the labelFunction
> field to set the label.
> It works fine, but if I change the object name, the List doesnt update.
> Is there a way to get the list to update the the labels after object
> changes?
>
> TIA
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] List component

2007-06-07 Thread Cary Ho

Hi guys,

I have a list component that I add objects to. I use the labelFunction 
field to set the label.
It works fine, but if I change the object name, the List doesnt update. 
Is there a way to get the list to update the the labels after object 
changes?


TIA
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] List component redraw bug

2007-04-18 Thread Merrill, Jason
>>I've seen this before, but can't remember what caused it 
>>though (let alone what fixes it).
>>It sounds like a masking/font problem.
>>
>>Can you reproduce it in a seperate fla?
>>Got a sample we can take a look at?

Thanks, I'll see if I can reproduce it in a separate .fla.  The List
component is placed on a Window component if that makes any difference.
I'm using the component's default skins and font.  I don't have a public
webserver to throw a screenshot up on for you to see, but I can send you
a screenshot offlist if you're OK with that.  

Thanks,

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] List component redraw bug

2007-04-17 Thread Muzak
I've seen this before, but can't remember what caused it though (let alone what 
fixes it).
It sounds like a masking/font problem.

Can you reproduce it in a seperate fla?
Got a sample we can take a look at?

regards,
Muzak

- Original Message - 
From: "Merrill, Jason" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, April 17, 2007 10:33 PM
Subject: [Flashcoders] List component redraw bug


> Has anyone seen the v2 List component bug where sometimes items in a
> list will render OUTSIDE the list?  Is there a fix or workaround?  I can
> send a screenshot offlist if it's not clear, but basically my list
> component show a series of data, but at the bottom, after the list is
> scrolled down, some of the data remains drawn on screen and outside
> (below) the list component - like text that has been cut in half
> horizontally.  Anyone ever seen this or found a fix?
>
> Jason Merrill


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] List component redraw bug

2007-04-17 Thread Merrill, Jason
Has anyone seen the v2 List component bug where sometimes items in a
list will render OUTSIDE the list?  Is there a fix or workaround?  I can
send a screenshot offlist if it's not clear, but basically my list
component show a series of data, but at the bottom, after the list is
scrolled down, some of the data remains drawn on screen and outside
(below) the list component - like text that has been cut in half
horizontally.  Anyone ever seen this or found a fix?

Jason Merrill
Bank of America  
GT&O Learning & Leadership Development
eTools & Multimedia Team


 
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] List Component - Custom Display Settings

2006-11-10 Thread R�kos Attila

HDC> I'm developing an application that simulations an e-mail
HDC> application, similar to Outlook. I'd like to use the List
HDC> Component to hold all the e-mails and have unread e-mails bold,
HDC> e-mails that need follow up in red, and completed e-mails as
HDC> plain text. I have been reading through some docs, but can't seem
HDC> to find anything on changing the font of individual items in the
HDC> List Component.

HDC> Is it possible to change the appearance of single items in a List
HDC> Component?

Look up for the CellRenderer API in the docs.

 Attila

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] List Component - Custom Display Settings

2006-11-10 Thread R�kos Attila

HDC> Is it possible to change the appearance of single items in a List 
Component?

Look up for the CellRenderer API in the docs.

 Attila

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] List Component - Custom Display Settings

2006-11-10 Thread Holth, Daniel C.

Hello,

I'm developing an application that simulations an e-mail application, similar 
to Outlook.  I'd like to use the List Component to hold all the e-mails and 
have unread e-mails bold, e-mails that need follow up in red, and completed 
e-mails as plain text.  I have been reading through some docs, but can't seem 
to find anything on changing the font of individual items in the List Component.

Is it possible to change the appearance of single items in a List Component?

Thanks!
-Dan

This e-mail and its attachments are intended only for the use of the 
addressee(s) and may contain privileged, confidential or proprietary 
information. If you are not the intended recipient, or the employee or agent 
responsible for delivering the message to the intended recipient, you are 
hereby notified that any dissemination, distribution, displaying, copying, or 
use of this information is strictly prohibited. If you have received this 
communication in error, please inform the sender immediately and delete and 
destroy any record of this message. Thank you.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] List component (v2) setting the style of specific items?

2006-06-19 Thread Charles Parcell

Is it possible to set each individual items style in a v2 List Component?  I
have to imagine that it is possible but I am not finding the magic word in
the docs.

Charles P.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] List Component --- Multiline

2005-12-09 Thread John Giotta
You will have to use a Custom Cell Renderer.
Here is a simple tutorial:
http://www.communitymx.com/content/article.cfm?cid=B4AED
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] List Component --- Multiline

2005-12-09 Thread azsl1326-email
 Hello All ---
 
 Can someone tell me how I might be able to have the List Component use more 
than one line (i.e. multiline / wordwrap) for a single entry. I have a limited 
amount of horizontal space and thus can not have it scroll horizontally 
indefinitely.
 
 Thanks for the assistance.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-07 Thread John Giotta
@Al: Thanks for the tip! If all else fails.
@Ryan: Can you point me to one of those tutorials?
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-07 Thread John Giotta
I found a nice tutorial at CommunityMX by Joey Lott, but I notice that
when I mouse over the cell that it sometimes shifts the cell content.
Plus, when the thumbnail's height is taller then the text it gets
through off.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-03 Thread Ryan Matsikas
I'm not saying the components aren't good, I've not used them myself, but
maybe he can't afford it. They do cost money.

Also if we let the components do everything for us, it makes us lazy
developers. What he needs to do can easily be accomplished in a short amount
of time (depending on skill).

At the end of the day it's his call (or his bosses), I was just giving him
another option.

Cheers,
Ryan

On 12/2/05, Al Veldhuis <[EMAIL PROTECTED]> wrote:
>
> Hey Ryan,
>
> I know. I know. Its not a hard thing to write but what I generally work
> on is an Intranet where bandwidth isn't an issue, but developing speed
> is. So the components are a simple and quick way to get the job done
> effectively. And to be honest, as far as components go, Ghostwire
> components are top-notch.
>
> Al
>
> Ryan Matsikas wrote:
>
> >or instead of buying another component set why not just write a more
> capable
> >row renderer.. there's plenty of tutorials.
> >
> >On 12/2/05, Al Veldhuis <[EMAIL PROTECTED]> wrote:
> >
> >
> >>Hey John,
> >>
> >>Just as a suggestion, check out the ghostwire components at
> >>http://ghostwire.com  They have a list component that I believe is
> >>capable of what you are looking to do. I believe you can use either
> >>symbols or external files with their list component.
> >>
> >>Just a possible suggestion.
> >>
> >>Note: I do not work for them, I just use their components regularily.
> >>
> >>Al
> >>
> >>John Giotta wrote:
> >>
> >>
> >>
> >>>The List Component allows you to set linked symbols as Icons for each
> >>>
> >>>
> >>list item.
> >>
> >>
> >>>I'm looking to use external thumbnails as my icons, but it tends to
> >>>prove difficult due to the nature of how these symbols are attached.
> >>>
> >>>Does anyone know if I'm able to retrieve the 'icon' path and perhaps
> >>>with some class registration set the content to load a thumbnail?
> >>>
> >>>Ideally, I'd like to able to say
> >>>List.ListItem.icon.loadThumbNailSrc(), just of course not in so many
> >>>dot notations.
> >>>___
> >>>Flashcoders mailing list
> >>>Flashcoders@chattyfig.figleaf.com
> >>>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>>
> >>>
> >>>
> >>>
> >>>
> >>___
> >>Flashcoders mailing list
> >>Flashcoders@chattyfig.figleaf.com
> >>http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>
> >>
> >>
> >___
> >Flashcoders mailing list
> >Flashcoders@chattyfig.figleaf.com
> >http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> >
> >
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-02 Thread Al Veldhuis

Hey Ryan,

I know. I know. Its not a hard thing to write but what I generally work 
on is an Intranet where bandwidth isn't an issue, but developing speed 
is. So the components are a simple and quick way to get the job done 
effectively. And to be honest, as far as components go, Ghostwire 
components are top-notch.


Al

Ryan Matsikas wrote:


or instead of buying another component set why not just write a more capable
row renderer.. there's plenty of tutorials.

On 12/2/05, Al Veldhuis <[EMAIL PROTECTED]> wrote:
 


Hey John,

Just as a suggestion, check out the ghostwire components at
http://ghostwire.com  They have a list component that I believe is
capable of what you are looking to do. I believe you can use either
symbols or external files with their list component.

Just a possible suggestion.

Note: I do not work for them, I just use their components regularily.

Al

John Giotta wrote:

   


The List Component allows you to set linked symbols as Icons for each
 


list item.
   


I'm looking to use external thumbnails as my icons, but it tends to
prove difficult due to the nature of how these symbols are attached.

Does anyone know if I'm able to retrieve the 'icon' path and perhaps
with some class registration set the content to load a thumbnail?

Ideally, I'd like to able to say
List.ListItem.icon.loadThumbNailSrc(), just of course not in so many
dot notations.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

   


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-02 Thread Ryan Matsikas
or instead of buying another component set why not just write a more capable
row renderer.. there's plenty of tutorials.

On 12/2/05, Al Veldhuis <[EMAIL PROTECTED]> wrote:
>
> Hey John,
>
> Just as a suggestion, check out the ghostwire components at
> http://ghostwire.com  They have a list component that I believe is
> capable of what you are looking to do. I believe you can use either
> symbols or external files with their list component.
>
> Just a possible suggestion.
>
> Note: I do not work for them, I just use their components regularily.
>
> Al
>
> John Giotta wrote:
>
> >The List Component allows you to set linked symbols as Icons for each
> list item.
> >
> >I'm looking to use external thumbnails as my icons, but it tends to
> >prove difficult due to the nature of how these symbols are attached.
> >
> >Does anyone know if I'm able to retrieve the 'icon' path and perhaps
> >with some class registration set the content to load a thumbnail?
> >
> >Ideally, I'd like to able to say
> >List.ListItem.icon.loadThumbNailSrc(), just of course not in so many
> >dot notations.
> >___
> >Flashcoders mailing list
> >Flashcoders@chattyfig.figleaf.com
> >http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> >
> >
>
>
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] List Component

2005-12-02 Thread Al Veldhuis

Hey John,

Just as a suggestion, check out the ghostwire components at 
http://ghostwire.com  They have a list component that I believe is 
capable of what you are looking to do. I believe you can use either 
symbols or external files with their list component.


Just a possible suggestion.

Note: I do not work for them, I just use their components regularily.

Al

John Giotta wrote:


The List Component allows you to set linked symbols as Icons for each list item.

I'm looking to use external thumbnails as my icons, but it tends to
prove difficult due to the nature of how these symbols are attached.

Does anyone know if I'm able to retrieve the 'icon' path and perhaps
with some class registration set the content to load a thumbnail?

Ideally, I'd like to able to say
List.ListItem.icon.loadThumbNailSrc(), just of course not in so many
dot notations.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] List Component

2005-12-02 Thread John Giotta
The List Component allows you to set linked symbols as Icons for each list item.

I'm looking to use external thumbnails as my icons, but it tends to
prove difficult due to the nature of how these symbols are attached.

Does anyone know if I'm able to retrieve the 'icon' path and perhaps
with some class registration set the content to load a thumbnail?

Ideally, I'd like to able to say
List.ListItem.icon.loadThumbNailSrc(), just of course not in so many
dot notations.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders