Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








MX 2004 Scroll Bar Component... Where Has It Gone?


I have dynamic text that in FLASH MX I would assign a name and then drop the SCROLLBAR component tell it which DYNAMIC TEXT field to work with and BADA-BING!!! i had scrollling text...


i cant find the SCROLLBAR COMPONENT IN MX2004 and the help section stinks... leaves off the COMPONENT LOCATION it seems...

thanks for you help in what is probably a dumb question...

-manny




FlashKit > Flash Help > Flash ActionScript
Posted on: 04-04-2005, 06:42 PM


View Complete Forum Thread with Replies

Sponsored Links:

Is There A Scroll Bar Component In MX 2004 Proffesional
Hi again.
Is there a scroll bar component in Macromedia Flash MX 2004.
If there is what is it called.
If there is not can someone tell me how to make one.

THANK YOU ALL VERY MUCH

View Replies !    View Related
Is There A Scroll Bar Component In MX 2004 Proffesional
Hi again.
Is there a scroll bar component in Macromedia Flash MX 2004.
If there is what is it called.
If there is not can someone tell me how to make one.

THANK YOU ALL VERY MUCH

View Replies !    View Related
Customizing Scroll Pane Component MX 2004
Can anyone give me a heads up on how to customize the scroll pane component in MX 2004? I used to be able to go into the component folder in my library and change anything I wanted in MX. Now I see with MX 2004 that the folder doesn't move into the library after adding an instance to the stage. What have I overlooked? How can I change the appearance? Basically I want to get rid of the outline of the pane. Thanks for the help.

View Replies !    View Related
Scroll Bar Component Doesn't Scroll When Dynamic Txt Is Used?
I have a dynamic text box with the Flash UI component "Scroll Bar" attached to it. It works and scrolls fine when you enter text directelly into the dynamic box but when you use the loadVariables command to load an external txt file into it, it fails to scroll the text?
Is there a way to get it to scroll?

thx Bk9

View Replies !    View Related
Scroll Component Dont Scroll
my scroll component dont scroll

please can you look why?

thanks

jan

View Replies !    View Related
MX 2004 Scroll Bar
On MX 2004 i used the scrollbar component to add a scroll bar. I was just wondering if there was any way to change the way the scroll bar looks, as i do not want to have the macromedia one. Is there any way of doin this??

View Replies !    View Related
Scroll Bar In Flash Mx 2004 Pro
my first post

I am making a scrollable text in my flash mx 200 pro. I've already made everything except the scroll bar. the dude in the learning videos is using flash mx , but I only have mx2004pro version which i downloaded to try. in the components library he's got this scroll bar component which he can just drag onto the stage and work with it. In my components I have lots of stuff but I don't have that scroll bar thing.
so, the question is, am I doing something wrong here? or the mx2004pro version just doesn't have this scroll bar component in it? and if it comes with no scroll bar , where can i get one to import in into my project.
All help is greatly appreciated.
thx

View Replies !    View Related
Help Me Scroll - Flash Mx 2004
Is there anyway on the good green earth that flash mx 2004 can change the scroll bars color in the scroll pane! I've tried and failed, people giving me good advice but thats for flash mx not mx 2004. Help me cuz my site CANNOT be completed unless i get this outta the way, help me please. I just wanna make the borders of the scroll pane transparent and i wanna change the scroll bars to blue.

View Replies !    View Related
This Is How U Do A Proper Scroll In MX 2004
Many of u would have seen my various threads asking 'how to do a scroll text in MX 2004' many people gave me good advice with reguard to the scroll pane and all that fluff, but that stuff wont work with mx 2004.

So after experimenting and actually paying close attention to some persons advice i fig it out. This is how u do it...

use the font tool write yur text, change from static to dynamic text, right click it and make it 'scrollable' make two buttons and add this action script in the up button..

on (release) {
my_txt.hscroll += 1;
}

the part wit my_txt will change depending on what u name the instant. the down button will be..

on (release) {
my_txt.hscroll -= 1;
}

SIMPLE!!!

U cud draw a box around it manual, u cud trurn on off the border... u cud make it pink for crying out loud!!

I would like to take this oppertunity to thank all those who made this possible... ME lol

just joking... serious alot of peps give me advice i dont think i replied in one of the post but THANKS FOR ALL THE HELP

View Replies !    View Related
UI Scroll Bar In Flash 2004 Pro
This is a newbie question, but is still a little strange.

I have a flash movie that calls a PHP script which opens a text file and then reads the text contents back into a dynamic text box. When the movie first loads there is some animation before the text box is needed, so I placed the dynamic text box on frame 100 along with the actionscript to call the PHP script.

Well, this part works just fine, but I realized that the contents of the text file will change and there may be a need for the text box to have a scroll bar.

I read a couple of web pages about the 7.2 update to Flash bringing back the UI scroll bar component, so I decided to try it out. Everything I read says I basically drag the component to the page and release it and it will snap to the text box. It also will automatically update it's target property to match the instance name of the dynamic text box. Both of those things appeared to happen. However when I publish the file and put it on the web, I get a non-moving white box on the right side of the text box. What am I doing wrong? Is there another step that I missed? Is there anything I have to do with components specifically when I publish the movie?

I would really appreciate an answer to what is probably a silly question to the experienced folk around here, but it is really holding me up on my project.

View Replies !    View Related
Mx 2004 Scroll Dynimic Textfield
Hello,

For my website i created a guestbook. In the guestbook i have to use a scroller to scroll a dynamic textfield but i can't get the settings for the scroller right ! Is there a component in Mx 2004 that let you scroll dynamic textfields ? Or could somebody explain to me what to do ...

you can see my book at http://www.unixcore.com/~morreke/morre

then click on guest book ...

View Replies !    View Related
Customising Scroll Bar Colors In Mx 2004
mx2004

Im trying to customise the colors of the scroll bar in a list component. How do I do this?

I need a reference to the scrollbar somehow, like:

myList.scrollbar.colorproerty...

Flash help has a link in the scrollpane description "see Using styles with the ScrollPane component" - but its broken!!!! How do i do this???

Thanks,
Tim.

View Replies !    View Related
Attachmovie In A Mx 2004 Scroll Pane
ok well im new to MX 2004

all im trying to do is load a movie clip in my library into a scroll pane.

i can load an external swf easily.
but i cant seem to figure out how to a movie clip in my library

i have attached my simple fla.

ive tried this

on (release) {

scrollpane.contentPath = attachmovie(mymovie, mymovie, 1);
}


using this works for an external

on (release) {

scrollpane.contentPath = "test.swf"
}

View Replies !    View Related
MX 2004 ScrollPane - Scroll Bar Transparent
Using Flash MX 2004 Pro

I want to set the scroll bar in a scroll pane to have an alpha of 25 yet still have the content that is scrolling to 100

i removed the border using
scrollpane_mc.border_mc._visible = false;

but i dont know what to direct the _alpha = 25
since i cant find any list of object names linked to the scroll pane components. is there someplace where i can view the parts in a scroll pane

in flash mx. it was in the library but no longer in 2004

Adam

View Replies !    View Related
Flash 2004 MX Scroll Panel Help
I am using the scroll Panel component from 2004 MX and it seems that sometimes the scroll panel spills out the text and the actual scroll bar is gone. It seems to only happen when I look at the site on a PC. IT does not happen very often but it happens. What can I do to prevent the text from spilling over??

Please help Attached is a jpg of waht i am talking aobut.

View Replies !    View Related
Why Text Scroll Bar Is Not In Flash Mx 2004?
Hi,

Is there any reason for this.
why text scroll bar is not in flash mx 2004?

thanks,
atul

View Replies !    View Related
Why Text Scroll Bar Is Not In Flash Mx 2004?
Hi,

Is there any reason for this.
why text scroll bar is not in flash mx 2004?

thanks,
atul

View Replies !    View Related
MX 2004 Scroll Bar For Text Input
hello i have a contact form and i have this message area that isn't a component it just input text

how do i get a scroll bar for it?

View Replies !    View Related
2004 Component Help
I'm trying to develop my first component. I created an fla and developed and tested the component there. It works great. However, after I export the compiled swc and import it into another movie, a strange thing happens. All the graphics are square red blocks instead of the gradients or bitmaps that I had originally.

Any ideas?

Thanks for any help.

View Replies !    View Related
MX 2004 Component ......AGAIN
Hi there ok I downloaded the MX 2004 pro trial thougth I would try it...hmm I have an "old" flash MX .fla with some components in it, listboxes that I populate with some arrays now when I publish this file in MX 2004 the listboxes are filled with my arrays ...Good, but all empty spaces are filled with "undefined" wich kinda ruins the look of it....Ive tried to change the publish settings back and forth from v.6 to v.7 no dice....allso everytime I place a new component it will show in my workplace but not in publishing...just a white square I have seen others with this problem ..I allso messed around with the live preview but not the answer..
At last I load a txt file with some html formatting, usually it will display in a little dyn. textbox but now it chooses to start up a new page and display its "raw" HTML...I know its alot but if someone has just some answers to some of it or to why the nice people from macromedia SUDDENLY HATE ME FOR NO REASON!!!!!

sorry about that..

Thanks

View Replies !    View Related
XML Component MX 2004
Hi all, any way to detect of an XML file has loaded completely when using the component? I can see how this works with AS loaded XML but not through the component!?!?!?

Thanks

View Replies !    View Related
Scroll Pane Not Working Flash MX 2004
Hi Folks

I have an existing movie but now I want to add a Scroll Pane. I tried Importing several premade scrolls to my library [one at a time] but when I drag it to the place I want it in my movie [frame location] it don't work.

I see the up/down arrow and all the components but clicking don't do anything.

I even created one myself using a few tutorials but only see a white space and no scrolling text information.

I even tried to type in an existing swf file in the content path as well as use the full path location to where my text file or swf file is on my hard drive but in either case the movie never shows.

Any help appreciated.
Thanks
Dave

View Replies !    View Related
Dynamic Data Into Scroll Pane (MX To 2004)
I'm creating a list of products with images/text/etc.. Basically, I'm looping through and taking a symbol out of the library that has a place to put the product image and name, then stacking them vertically. Now what I want to do is insert them all into a scrollPane. I used to do this in Flash MX by using setScrollContent() function. MX 2004 does not have this. Is there an easy alternative? I know you can use contentPath to place other files and symbols from the Library in it, but how do I insert a movieClip that I've just created on the stage like I could in regular MX? Thanks.

View Replies !    View Related
Problem With Component In MX 2004 Pro
Hi, for some reason the component in this fla will not work if I try and publish as player 7 and action script 2.

For some reason it is not recognising the methods?

Please help, I've just bought 2004 pro - and can't seem to start leveraging the benefits...

I've attached the file as version MX. To see the error you just need to publish as version 7 and see the degug...

It would be amazing if you know why this only works as MX...

http://www.3ainteractive.com/zpane.zip

M@)

View Replies !    View Related
2004 Component Question
I placed a component on stage and then I clicked on the icon in the library to go to the component script but then there was popup saying: Do you want to place an instance on stage. For symbols there is no problem. Any ideas?

View Replies !    View Related
Where's The Scrollbar Component? (2004)
I cant seem to find the scroll bar component in MX 2004..

what's the big idea?

View Replies !    View Related
MX 2004 TextArea Component
Does anyone know how to load an external .txt or .html file into the textArea component found in Flash MX 2004, or do I have to load it into a Dynamic Text Box?

View Replies !    View Related
2004 Pro Progressbar Component Help
I seem to be having trouble with the progress bar component. Does anyone know of good tutorials or source files? Also, can this component work on like the 30th frame, and not the first? Any help would be appreciated.

Thanks

View Replies !    View Related
MX 2004 ProgressBar Component Help
I seem to be having trouble with the progress bar component. Does anyone know of good tutorials or source files? Also, can this component work on like the 30th frame, and not the first? Any help would be appreciated.

Thanks

View Replies !    View Related
Loader Component (MX 2004)
Is there some sort of Timeout setting on the Loader component? It seems to randomly timeout and give me -1 for the bytesTotal when I try to load movies with actionscript. Is there a way around this?

View Replies !    View Related
Loading Jpg's With New MX 2004 Component?
Is it possible to load serveral jpg's at the same time with this component without putting 1 component for each picture on the stage?

I need to preload 40 jpg's and display them in the same spot on a beat, so each picture will be displayed for about a second and then the next one and so on..

Or is there a better way to do this?

Thanks in advance!

Greetz,

Bianca
from The Netherlands

View Replies !    View Related
Window Component (MX 2004 Pro)
Hi
Im having a bit of a hard time trying to edit the appearance of the 'Window' component (MX 2004 Pro). I would like the component to be totaly transparent, but yet still be able to see the contents of it. If this is not possible, how about just making the title bar dissapear/transparent? If this is still not possible - does anyone know how this component works, so i could make a version for myself?
Sorry if the answer is blatantly obvious, but im sorta new to Flash.

Thanx in advance,

KungFuSheep

View Replies !    View Related
List Component In Mx 2004
Hi All,

Sorry if I put this in the wrong place!! I am a newbie

I have edited a List box component in Flash Mx 2004 Pro, and I need to make the background of the component, so that I could place the list on my own design.

Could anyone help me out!!

Thanks in Advance!!

View Replies !    View Related
MX 2004 TextArea Component
I'm pulling in some XML to appear in the MX 2004 textArea component. No problems there. What I need to know is how to make the text in the component appeare as embeded font outlines (softer rather than sharp, like it does in a static text box). I've tried using actionscript to define the components style, but no dice on the font outlines.

Any ideas?

View Replies !    View Related
Combo Box Component In Mx 2004
Is there no way to change the color of the 'rolled over' text in the combo box component?

I looked over the list of styles that can be applied to a component and the rollover text color is not listed.

View Replies !    View Related
Where Is The Scrollbar Component In 2004 PRO?
I cant find the scrollbar component in MX 2004 Professional... did they get rid of it in this version?

View Replies !    View Related
HELP MX 2004 Loader Component
Hi there,

I'm trying to load an external swf into a loader compenent in Flash MX 2004. I've noticed on some other threads there seems to be some confusion on what this is. This component can load a jpg or swf into itself. The really cool thing is that it will load the external swf into whatever size the loader is sized to. Anyways I had it working at one point but when I lost the file I have been unable to recreate it.

Right now I have this code at the beginning of the movie:

_root.introLoader.loadMovie("intro.swf");

I have the loader named with the instance name of "introLoader". However I noticed that when you drop the component on the stage it says "mx.controls.Loader" on it. I'm confused as to whether I should reference the instance name I created or the Loader name.

Has anyone had any success using this component? I'm not sure if it came with MX 2004 or if I downloaded it as an extension.

Thanks alot!

View Replies !    View Related
Windows Component 2004
Hi does anyone know if the window components of the 2004 MX version can be made so the user can resize it by dragging bottom right hand corner like the one in Ghostwire components?

Any help appreciated

View Replies !    View Related
Serious Component Misbehaviour Mx 2004 (bug)
Hello flashers,

Need to go live with my site asap. But components acting weird.

Separate swf files loading into a 'holder' or 'home' swf. All components show halo when clicked on when they are loaded into this 'holder' swf. This is so undesirable and is inconsistant as they dont do behave this way when seperate swf are loaded by themeselves.

I have never noticed this before as I havent loaded components in movie b,c,d into the home a movie before, seems totally stupid that they would behave this way.

cheers in advance

H

View Replies !    View Related
2004 Component Literature
Any good recommendations about books for MX 2004 Components? I've read mixed reviews on the 'Training from the Source' books, wondering if there is anything else out there you guys recommend.


c

View Replies !    View Related
Tree Component In Mx 2004
Is there any way to set a node in selected state in the tree component.

eg : when I click a button, the page 2 should be tree item 2 should be highlighted. Can hte setFocus do it ?? Im not sure

Any ideas ??

View Replies !    View Related
[mx 2004] Xml & Accordion Component?
Hey all - I'm trying to create an expanding panel accordion using XML and found something that should work - but it's an old topic and the files weren't attached. I tried it on my own - but just can't seem to get it to work. Link below:

http://suzanhill.wordpress.com/2005/...om-a-xml-file/

Also - if you have any idea how to make the panel that expands accept HTML that would be FAAABULOUS!!!!

Thanks in advance!
fleurdelisgrrl

View Replies !    View Related
Serious Component Misbehaviour Mx 2004 (bug)
Hello flashers,

Need to go live with my site asap. But components acting weird.

Separate swf files loading into a 'holder' or 'home' swf. All components show halo when clicked on when they are loaded into this 'holder' swf. This is so undesirable and is inconsistant as they dont do behave this way when seperate swf are loaded by themeselves.

I have never noticed this before as I havent loaded components in movie b,c,d into the home a movie before, seems totally stupid that they would behave this way.

cheers in advance

H

View Replies !    View Related
2004 Component Literature
Any good recommendations about books for MX 2004 Components? I've read mixed reviews on the 'Training from the Source' books, wondering if there is anything else out there you guys recommend.


c

View Replies !    View Related
Problem With Component In MX 2004 Pro
Hi, for some reason the component in this fla will not work if I try and publish as player 7 and action script 2.

For some reason it is not recognising the methods?

Please help, I've just bought 2004 pro - and can't seem to start leveraging the benefits...

I've attached the file as version MX. To see the error you just need to publish as version 7 and see the degug...

It would be amazing if you know why this only works as MX...

http://www.3ainteractive.com/zpane.zip

M@)

View Replies !    View Related
[HELP] Creating Component In MX 2004
I am trying to create component in MX 2004 and export it to SWC

In the Component Definition, whenever I insert the class name into AS2.0 class field, I cannot put parameters, they just simply get removed.

Why?

View Replies !    View Related
Need Script For Flash Mx 2004 Image Navigation Scroll
I have went through sites, downloaded the samples for scrolls. I have copied and paste the scripts, even typed in the scripts and nothing works. Can ya help me?

View Replies !    View Related
MediaController Component In Flash MX 2004
Hi there!
Does anybody have any idea how to add a path to the media controller component so it'll play all the songs in a specific directory? There's nothing in the Help file of Flash about it... I tried to do the same thing with the MediaPlayback component, but all I could do is to play only one lousy song and not all the songs in the folder... Any ideas? Something?
Thanks!

View Replies !    View Related
Media Component Scrubing MX 2004
I have been trying to use the media playback component, and was very impressed with it, especially the cuepoints. One issue that I noticed was that when you move the playhead in the player it stops the video instead of scrubbing it. Also I was wanting to change the status text from "streaming" to "playing", I tried doing this in the component FLA but can not find where the text variable is being set to say "streaming." Does anyone know a solution to this? I have been pulling my hair out for 2 days.

Thanks in advance

View Replies !    View Related
MX 2004 Component Customization Problems
I'm having problems customizing the components.. in flash MX you could easily edit the images / buttons used in them.. but it seems that feature was taken out of 2004.

I cannot get a text field to change the color of the scroll bar that is auto-placed when used and such.

Any help would be nice.

Thanks In Advance

View Replies !    View Related
Flash Mx 2004 Component Skinning
Does anybody have a link to a good tutorial on how to link skin elements to your component and then how to apply different skins and colors to the component ?

i know this for flash mx , but with flash mx 2004 i feel kinda stupid, the skinning system has changed a lot.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved