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


Similar Posts:


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 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 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

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

Actionscript 3 :: Drag An Object In A Line That Is Not Vertical Or Horizontal?

May 10, 2011

I would like to drag an object in one line. I already know how to do this in a horizontal or vertical line

Here's how I do this

private var handle:Sprite;
private function init():void
{
handle = new Sprite();

[Code].....

But I want do drag my object in a line that isn't horizontal or vertical.
For example, I would like to drag the object from the top left corner to the bottom right corner, in one straight line.

I tried to rotate the bounds rectangle, but it seems that you can not rotate a Rectangle.

How do I drag an object in a non-vertical (or non-horizontal) line?

View 1 Replies

ActionScript 3.0 :: Scrollable Movieclip - Add Easing

Aug 17, 2011

i have ths scrollable movieclip that i want to add easing to by do not no how... Can someone share there knowledge into showing me how to do this? Im sure i need tweennano lite or something like that right?

[Code]...

View 3 Replies

ActionScript 3.0 :: Custom Scrollable Movieclip Using Buttons?

Apr 3, 2009

how to create a custom scroll bar without using the UI components. Unfortunately, the author has deleted the video but still provides the source files which I have began to pick apart. Although this scroll bar works great, I am working on a movieclip of scrollable thumbnails that only uses buttons to scroll and not the scrollbar it self. it seems as though the buttons control the movie clip based on the position of the scroll bar/scroller.

Here is the url of the tutorial page (the source files can be downloaded): [URL] I have also attached the code that is used to control the scrollbar.

provide the code that would only use the buttons to smoothly control the timeline? Or show some altercations of the code that would make this work properly.

View 2 Replies

ActionScript 2.0 :: Drag Items In ScrollPane?

Oct 10, 2006

How do you assign drag properties to items added to a scrollPane? [code]...

View 1 Replies

ActionScript 2.0 :: Flash 5 - Rotating The Drag Items?

Feb 23, 2010

I have a scene where you drag things around with the mouse. What I have now is;

Code:

on (press) {
startDrag ("");
}

[code]...

What I need to know how to do, is allow the rotation of the objects. I want it set so

[code]
on (press, keypress "r") {
rotate_my_object ("25") ;
}
[code]

I know that's not the right code. Basically, that's what I want. When you "press" to drag, if you press "r" while dragging, it will rotate the "object" 25%.

View 9 Replies

Flash :: Drag And Drop Items Between Different Objects?

May 17, 2009

It is possible to drag & drop items between different flash objects?

View 1 Replies

ActionScript 3.0 :: Drag And Drop Multiple Items To One Target

Jul 15, 2010

I'm trying to create an interactive game where multiple movieclips can be dragged onto a single target. I understand that the target and the movie clip have to have the same name, like "book_mc" has to have a target of "targetbook_mc", but is there another way to do this so that "book_mc" and "pencil_mc" can both have the same target?

View 4 Replies

ActionScript 3.0 :: Drag Select And Move Multiple Items?

Jul 4, 2011

I'm currently creating a word game where I would like to place tiles, but if possible I need it to be possible to drag select groups of tiles (preferably with a visible selection box as you drag) and move them around all together.. is there a simple way to implement this and still have the tiles snap to a grid ?

View 1 Replies

Flex :: Get Selected Items Drag & Drop Component?

Dec 2, 2009

How to get all the selected items from in this below code selectedContsList ?

<mx:DataGrid id="dg" dataProvider="{cNumbersList}" allowMultipleSelection="true" dropEnabled="true" dragMoveEnabled="true" >
<mx:columns>

[code].....

View 1 Replies

Flex :: Drag And Drop - Prevent Dragging For Certain Items?

Mar 22, 2010

how would you prevent dragging for some items of your List or DataGrid?

Let's say I had a list with two items: 'Tom' and 'Jerry'. Only 'Tom' should be dragable, not 'Jerry'.

Ideally I had a 'isDragEnabled(item:Object):Boolean' function, which is being queried by the drag source.

My difficulties start with the fact that the 'dragStart' event handler has a null value for the dragSource, so right from the start I find it hard to find out what the drag-start is about..

PS There have been a few discussions on preventing or canceling a drop, but I haven't seen much about preventing the drag start, hence this question.

View 3 Replies

Flex :: Drag And Drop (list Items To Canvas)

Jun 27, 2011

I just started using Flash Builder 4 (yesterday infact).

I have two lists and a canvas. When dropping a list item onto the canvas, i want to trace what item it is (the label and data) and which list it came from. From there, i want to add an image to the canvas according to the dropped item.

Here's my current code

private function componentDragEnterHandler(event:DragEvent):void {
DragManager.acceptDragDrop(Canvas(event.currentTarget));
DragManager.showFeedback( DragManager.COPY );
}

[Code].....

View 1 Replies

Flex :: Default To Copying / When Drag And Drop Your Items?

Jun 10, 2009

Why is it that, when I enable dragging-and-dropping in a TitleGrid, items are copied when they are dragged instead of moved?[code]When either of those items is clicked-and-dragged, it will get copied instead of moved.This is especially confusing because TileList is a decedent of ListBase, which DataGrid also descends from..But DataGrid does the right thing when dragging and dropping items.

View 1 Replies

Hide Drag And Drop Items Once They Have Been Dragged Into Place?

Mar 31, 2012

I have made a flash application and in this flash application I have included a jigsaw puzzle. The application is wrote on one timeline and certain frames are used as different pages within the application.

The problem is once the jigsaw drag and drop are moved the pieces are displayed on all frames instead of just the one jigsaw puzzle frame I created.

How can I make these drag and drop items not be shown on the other frames?[code]...

View 1 Replies

ActionScript 3.0 :: Drag A Group Of Items And Get The Object Information?

Nov 3, 2009

I have a container which is a sprite. In that container I have added several movie clips. Now I am trying to drag that container over the other containers and have them move out of the way for the one being dragged.

so here is how I create the containers:

ActionScript Code:
for ( var x:int; x < _GroupsArray.length; x++) {
//create a container
var tmpGroup:DAILYGroup = _GroupsArray[x];

[Code]....

1. Is there a way that I can get my group object from the target?

2. The container seems to come apart when I drag and drop certain areas. Is there a way to keep the different objects together?

View 2 Replies

ActionScript 3.0 :: Create Drag/drop Shifting Items?

Jan 19, 2010

What would be a good way to create a grid of images in which one can be dragged to a new position and the other images will shift to make room for the image dragged? Looking at making a little program that will reorder an XML file by visually dragging the items to where I want them.

View 0 Replies

ActionScript 2.0 :: Resetting Multiple Drag & Drop Items

Mar 1, 2011

Basically they drag letters into a box to spell words.I have managed to get the letters to drag to the box but I would like the child to be able to reset all of the letters to their original positions.

View 5 Replies

IDE :: Reset Drag And Drop Items Without Restarting Movie Clip?

May 11, 2009

Sounds strange, but let me explain. What the user sees: Loading the page, color swatches fade in and slide over into place, row by row. Once in place, user can drag and drop swatches around, place side-by-side, etc. The script necessary to attach to a button so that all swatches can be reset back into place where they were, and not generate a replay of the initial movie clip from the beginning. (a goto and play is not what I'm looking for) Here's my code so far:

[Code]....

View 2 Replies

Actionscript 3 :: HitTestObject / StopDrag Stops Drag On Two Movieclips Even Though Function States One Movieclip To Stop Drag

Apr 27, 2011

I have a function that states when movieclip1 is dragged and hits a line then it stops the drag, however it seems to stop the entire drag function in the swf on the other movieclips even though they arent called in the function.[code]

View 1 Replies

ActionScript 2.0 :: Dynamic Column Of Items - Handle The Drag And Drop Part

Feb 21, 2004

I basically want to be able to drag any item out of that list, and when doing so, have it that item automatically go to the bottom, and have the remaining items scroll up. I can handle the drag and drop part of it, but I'm confused on how I could get the remaining column of items to dynamically move up depending on which item is taken out. I'm thinking mayble along the lines of an array?

View 5 Replies

ActionScript 2.0 :: Vertical Scrolling Movieclip?

Jan 28, 2005

just graduated from college in graphic design and I am trying to make a flash portfolio page to showcase my work. I have everything done so far except that I am having problems with this one bit of actionscript....I have been at it for weeks, looking at diff. tutorials, but I just can't seem to get it.I have a movieclip ("strip") and I want to it scroll up and down depending on where the mouse it, I also want it to duplicate so that it never stops scrolling...just keeps on looping. I am working this off of another tutorial that I found, but I am having trouble getting it acclimated to my flash.

//initialize
onClipEvent(load){
percent_increment = .075;

[code]......

View 1 Replies

ActionScript 3.0 :: Flip Horizontal Or Vertical MovieClip?

Feb 3, 2008

how I can flip horizontal or vertical MovieClip? Can skew it?

View 5 Replies

ActionScript 2.0 :: Panning MovieClip With Vertical Scrolling

May 8, 2008

I'm looking for a code that basically does: [URL] with vertical scrolling as well. I know there's [URL] which is great - but I can't use scrollRect because the movieclip I'm scrolling is dynamically refreshed with externally loaded content and resized with a zoom slider I made. The Kirupa one works well, except I need a Y, and I need its boundaries to be within a mask. The mask has a set size, while the content may change in size (due to the zoom slider).

View 1 Replies

ActionScript 2.0 :: Movieclip Vertical And Horizontal Scrolling?

Jul 24, 2008

Is there any script available to scroll a movie vertical and horizontally by adding a mask. The visible area can be scrolled vertically and horizontally.

View 3 Replies

ActionScript 1/2 :: Drag A Text Movieclip Onto A Picture Of An Object Movieclip

Mar 26, 2010

I Have the drag and drop working where you drag a text movieclip onto a picture of an object movieclip but having some problems. I know its something to do with the hitTest function but when i drop the word "cow" onto the picture of a dog it actually says this is correct by displaying the word cow above the picture of the dog when instead it shouldnt allow me to drop the text onto the picture which doesnt match.

Basically i need to know how to seperate the drag hitTest function for the DogPic/DogText so that it has its own function to detect a hit. At the moment you can see in the below code I have 1 hittest fucntion detecting both collisions when they need seperate functions I tried making a seperate function for each but it didnt work

[Code]...

View 4 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







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