ActionScript 3.0 :: RSS Link - Scrollable List Of Items?

Jul 27, 2009

For the RSS I made a scrollable list of the items from the xml to show the time+title - this is working fine. Now when I click on the title it show on the text area (logText) the description. Now what I want is to add a link behind the description. I have tried with .link but it shows the whole link tag and not clickable link to the page...
function selectLog(evt:Event):void {
logText.htmlText = rssXML.channel.item[evt.target.selectedIndex].description;
Would be nice to have the link working.. like "read more".. clickable link... behind the description.

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Items And Text To Become Scrollable

May 9, 2010

i have this web sore I'm trying to work on just trying to keep it basic but user friendly my main problem i am having is it carry's over the images to the next frame they disappear after 3 or so minutes but then when you drag another item into the cart it erases what has been dropped in before

so really what I'm looking to do is i want to be able to keep my pictures, text, drag and drop capabilities, and so on i just want to be able to put it all into a scrolling box

that way the user can scroll through and add items without having images over laying on the next page after they were added to the cart and so on any way to see what I'm working with

see it here [URL]

View 2 Replies

ActionScript 2.0 :: Vertical Scrollable Movieclip With Drag Items?

Jun 27, 2010

I have a vertical movieclip that has 20 graphic symbols that need to be dragged onto an area to the right on the stage.

The issue I am having is I need to make the movieclip scroll vertically. If I use the scrollpane component, the draggable items get masked and disapear when dragging them outside of the scrollpane component.

I tried using a custom scrollbar, though the draggable items that are dropped, are then scrolled vertically with the main movieclip...

View 1 Replies

Flex :: Make List Items As Tool Tips For Combo Box Items?

Dec 1, 2009

How to make list items as tool tips for combo box items?

View 2 Replies

Flex :: Force The List To Load All The Items, Not Only The Visible Items?

Aug 15, 2010

I'm creating a facebook application in flex. I'm actually working on the friends component that shows your friends who are using the application. now, each friend has a profile image.

I created the component using a s:List element.

In the Skin Class of the element i configured the requestedColumnCount to 3, which means it shows 3 friends. i added buttons to scroll left and right in the list.

Whenever I scroll to see a different friend, for a half of a second i see no image because the List component is loading the image in order to view it.

is there a way to make the list preload all the elements so i won't have this kind of problem ?

View 1 Replies

Flex :: Vertical, Scrollable List Of Panels?

Jan 29, 2012

I'm using Adobe Flex Builder 4.5, and I'd like to create a vertical, scrollable list of panels for an AIR application. How do I do that?

View 1 Replies

ActionScript 3.0 :: Scrollable List Menu For Mobile - Tap Against Swipe

Jan 9, 2012

I have built simple scrollable list menu for my mobile app - this is just a simple table with 1 column and there is a small jpg and description text in every row. This is built using the ScrollPane component (with scrollDrag enabled) - and within scrollPane every table row is simply a button object. This all scrolls and works just fine.

When you scroll the list - and when you let go your finger to scroll further it thinks that you've clicked and it opens the link. I am using onClick event at the moment (but also tried TapHandler) and they all do the same thing, they work but you can accidentally open unwanted menu item. How to separate swipe from just tap event in the code, so user doesn't accidentally opens the link?

View 0 Replies

Flex :: 4.1: <mx:List> Had RowCount Properly For The Limit The Displayed Items. <s:List> Doesn't

Aug 11, 2010

I'm using flex 4.1 to write an application. i read in the documents that has the rowCount property to set how many items to display. the does not have that property. how can I limit the list to display 3 items ?

View 3 Replies

Flash :: List Component - Change Pointer Icon To Hand For List Items?

Nov 9, 2010

I am working on an older Flash project created in CS3 ActionScript 2.0 How can I make the pointer cursor change to the hand when hover over a list item?_root.slidePanel.myList'myList' is the list. I have traced out the contents of the List MC and it has a child MC called 'content_mc'. I assumed this was the object containing all of my list items but the only members of this MC I can see (when tracing them out) are 'setRGB' and 'searchKey'.

View 1 Replies

Flex :: 3: Scrolling Of List Items With In A List Via Scroll Wheel

Dec 31, 2009

Here is a snip from within my code:

[Code]...

The 'recommendations' dataProvider is an ArrayCollection of String, which are generally sentences about as long as this one. By setting the variableRowHeight and wordWrap properties as shown, if a sentence is too long to fit on a single line, everything works fine- the row expands and the messages show on two lines, or occasionally three.

The space allocated for this panel within the entire canvas means if the total text size of 'recommendations' exceeds six lines, I need for the entire list scroll. This is also working just fine. The trouble is when using the mouse wheel to do the scrolling- Flex scrolls both the entire list and the single item where the mouse is hovering. Often this results in only the second half of a sentence being visible. Non-programmer friends I have asked to look at this noticed this, and tell me it as a problem. If a user does not notice the dual scrolling, and sees only a fragment of a sentence, it will be perceived as an error in the application.

[Code]....

View 1 Replies

Actionscript 3 :: Get A Navigation Through The List Items In A List Component Of Flash?

Mar 23, 2012

Why I have to press 2 times the arrow key down to get a navigation through the list items in a list component of Flash?

Theres any workaround for this? I have a listener for keyboard event that checks if keyCode is equal to 40 if it is then I use 'stage.focus = list', but I have to press 2 times key arrow down to start navigating through list items.

View 1 Replies

ActionScript 1/2 :: Create Scrollable List Of Custom Drawn Buttons With Scrollbar?

May 27, 2009

I need to create a scrollable list of buttons. Only vertical scrolling is enough. The main thing is that, the buttons and scroll bar should be custom drawn. One and two dimension of button layout support is needed.

View 3 Replies

Flex :: Using Drag & Dop Into List Get List Items?

Nov 23, 2009

while i using drag & drop from listbox1 to listbox2 ,how can i get all the items of listbox2 in flex

View 1 Replies

Flex - Use A Different ItemRenderer For Different List Items?

Aug 3, 2010

I have a Flex list and a custom ItemRenderer. I'd like to be able to have some items in the list use a different ItemRenderer (say, depending on the class of the item). Is this possible?

E.g.: <s:List dataProvider="{_systems}" itemRenderer="myItemRenderer"/>

Most items in _systems use myItemRenderer. But if element 3 of _systems is "specialSystem" the renderer would be "specialItemRenderer".

View 2 Replies

ActionScript 3.0 :: Y Position Of Items From A XML List?

Sep 4, 2009

i want to alter the code in a way that every time 5 items are in a row the next 5 will be in another row with Y +200

Quote:

# var scroller:MovieClip = new MovieClip();
# this.addChild(scroller);
# scroller.y = 30;

[code]....

View 5 Replies

ActionScript 3.0 :: Add To A Display List That's Already Has Items On It?

Nov 23, 2009

How do i add to a display list thats already has items on it?

this is what I have already

ActionScript Code:
public function LotteryDraw() { 
// get the display list positions for each MC and text field...
var startButton = this.getChildAt(0);

[Code].....

View 2 Replies

ActionScript 2.0 :: List Items Appearing One By One?

Aug 29, 2005

i would like to have a list being appeared in wich the items appear gradually one by one.generating the list isn't a problem, but letting the items fade in after each other ?in a later fase these item would become button for in a menu. my current code, probably a mess:

title = new Array("house DC","residence GRK","offices J","youth hostel","house VDV","concordia");
var fadespeed="10";
dupMovie = function () {
for (i=0; i<title.length; i++) {
option.duplicateMovieClip("option"+i, i);

[code]....

View 7 Replies

ActionScript 2.0 :: Get A List Of The Items In The Library?

Jan 18, 2006

if there is a way to get a manual text list (or an array or really just anything I could use to get an overview) of items in the library of an FLA...?

I have about 60 movieclips of different flags in my FLA- they all are "linked" to be used in Actionscript- so they have names there but are not named otherwise (as instances on the stage, for example).

Is there a way to get a list of them? I don't want to have to type them all out manually, if there is another way

View 3 Replies

ActionScript 3.0 :: Link Items To Webpage?

Jul 9, 2009

I'm building an rss reader in flash. I have the rss displaying with no problem, the problem is, I need each title to open the web page to a particular site.The link is the same for every header, so I assumed it wouldn't be that hard, but since I'm very new Flash and followed a tutorial to get this working[code]...

View 2 Replies

ActionScript 3.0 :: Disable Individual List Items?

Sep 25, 2007

This is driving me crazy, it seems like it should be simple but I haven't been able to find any documentation on it anywhere. I have a List() that I've created and populated with a DataProvider. I want it so that when you click on a list item that item becomes disabled (in the same way you set list.enabled = false). Since I haven't found out how to disable the list, I have something like this which just removes the entry:

[Code]....

View 3 Replies

ActionScript 3.0 :: Flash Cs3 - Disable Particular List Items?

Jan 11, 2010

I am working in Flash Cs3.I am having a List component in my application.I added 10 items into my list component. Now out of those 10 items, i want to disable particular list items like Item 4, Item 8, Item 9. How to do this using flash cs3 or flash 8.0.

Item1 -- Enabled state
Item2 -- Enabled state
Item3 -- Enabled state[code]...........

View 3 Replies

ActionScript 3.0 :: Implementing Simple List With 6 Items?

Jan 19, 2010

i want to implement a simple list containing 6 items in action script 3.0. The screen shall show 4 items at a time and it has to get the key presses just to move UP?DOWN in the list.

View 1 Replies

ActionScript 3.0 :: Creating Menu For List Items?

Sep 12, 2010

I have been working on making a menu for list items. The file below has an animated menu. If you click on Artificial Intelligence on frame 60, it jumps to frame 61 (a specific section for that list item). How do I make the Artificial Intelligence button on frame 61 jump back to frame 60? I dont know where to add the action script for the function. I need to add a similar script to all 9 list items, do they go on one actionscript file? if so what location? [URL]

View 2 Replies

ActionScript 3.0 :: Removing Items From List Component?

Oct 27, 2008

Below is a function set that's used to get info from an XML source(s) and populate a List Component (videoList). Works great. The second function loads data from a separate XML source and populates the SAME List Component. When the second function is called it loads the data in addition to the existing data into the List Component. I want it to REPLACE the data. How would I accomplish this?

public function getXMLdata(event:Event):void {
var campXML:XML = new XML(xmlLoader.data);
var vid:XML;
for each(vid in campXML.vid) {

[Code].....

View 3 Replies

ActionScript 3.0 :: Linking List Items To Button

Dec 21, 2010

How do i link the items in the list to a button?

View 5 Replies

ActionScript 3.0 :: Align List Component Items?

Jul 24, 2011

I created an isntant of a list component on stage called "myList" and added 8 items to it.I need to align the labels in this list to the right or center.It's on the main time line and not in a seperate as file (if it matters...).I tried using setStyle but it failed (not the solution or I used it wrong).

View 3 Replies

Flex :: Vertical Gap Between List Items Not Working?

Mar 18, 2010

I have a list item with buttons in it like so:

<mx:List contentBackgroundAlpha="0" baseColor="0x333333" leading="10" id="weekButtonList" width="260" borderVisible="false" dataProvider="{_data.mappoints.week.@number}" itemClick="onWeekClick(event);" >

[Code]....

No matter what I do, these buttons have a vertical gap inbetween them. I have tried everything from setting the "vertical-gap" property to negative and positive numbers as well as changing the padding-bottom and padding-top on them. I want the buttons to be right up against eachother vertically. I have also tried "button-height" and padding on the List component...still nothing. How do I control this?

View 3 Replies

Flex :: Enumerating Spark List Items?

Mar 31, 2010

How to enumerate items of Spark List component after setting dataProvider property?

I mean accessing them as DisplayObject instances.

View 1 Replies

Flex :: Hide A List Component When It Contains No Items?

Apr 28, 2010

I have a List of items which is based on the contents of the "category" that a user selects

When the user changes selection, I change the dataProvider of the list be be the contents of the current category.

Sometimes the list contains items, sometimes it does not

Is there a way of hiding the list when it has no items?

I know that I could do this when setting the dataProvider, but it seems like there should be an event or something else that I could be using.

View 2 Replies

Flex :: Retrieve The Sum Of Items From A Sharepoint List?

Aug 26, 2010

Is there any way to get the sum of items based on some filters from sharepoint list? I was trying to access the GetListItems method. But this returns all the items in the list. That makes the data heavy. My requirement is to get only the sum of items. For example items created in a specific year.I am trying to populate a chart in flex from the sharepoint list. Accessing all the items and then calculating the sum in flex will not work always where the list contains more items.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved