Sending Loadvars Into A Scrollpane Component
Hi all - not sure about this one - I've got a scrollpane component which loads a movieclip which has a couple of input boxes.
I've got a loadVars that loads in some variables that I want to populate into the scrollpane movieclip.
I've tried referencing the scrollpane.movieclip_name.inputBox_instanceName = _root.myLoadVars.variable; and various other methods, but without success - any ideas any one?
trace(scrollpane) - gives me _level0.scrollpane trace(movieclip_name) - gives me undefined
ta
f
FlashKit > Flash Help > Flash ActionScript
Posted on: 03-07-2005, 10:59 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Sending The LoadVars Info
when i send the variables i make in a loadvars Object from a form the send function requires me to launch another window that has the cgi script to catch the information that i am posting.
question i use _blank and it opens the window. how can i make it so the window is never seen when the button is pressed from the swf file?
code:
loadVarsObjectName.send("thepage.cgi","_blank","PO ST");
Confusion With LoadVars() And Sending To PHP
Hi all
I am having trouble with a project I am working on. Unfortunately I cannot share the FLA but I can tell you the code.
Anyway, it is basically a Flash "customiser" for a label maker, where they enter their name, choose images/phone etc and they get a dynamic preview. What I have in it is a checkbox that the person clicks if they want semi-Permanent labels over permanent ones.
The Flash files are designed to post to a PHP form and it is a beast of a thing that I inherited (and am redoing), but I am a little stuck on the whole LoadVars() thing.
what I have done is create a variable vsemiPermanent:Boolean that has a default value of false.
Then, within the checkboxes, I have had the "on" state say:
on (release) {
vsemiPermanent = true;
nextFrame();
}
and the off state says:
on (release) {
vsemiPermanent = true;
prevFrame();
}
Now, when I trace the value of vsemiPermanent after buttons are checked they are toggling "true" and "false" in the output window but the PHP Programmer I am working with says that it is defaulting with a "false" value
and the checkbox is not sending the value.
Is this an addressing issue? Or should I be doing something with LoadVars() to send it?
The file already has a LoadVariablesNum() method in it to retrieve prices from the database, and the "submit order" button sets the final varibales (from a function) and uses a getURL("addtoorder.php","_self", "POST"); to add to the shopping cart.
This is NOT my code and that is half the problem. I think i am missing something and I think it is that I perhaps need to put that vsemipermanent variable either into the getfinalvars function or send it seprately but I am confused as hell.
Does this make *any* sense?
Sending Email Using LoadVars And CGI
Hi There,
I'm am trying to send an email form, from flash to my web hosts cgi scipt (mailgate). I am unsure how to translate the html code given by the host to use in actionscript and where to put the hidden variables to make this work. My action script reads-
stop ();
function sendForm () {
my_lv = new LoadVars ();
my_lv.name = _parent.t1_2.text;
my_lv.company = _parent.t2_2.text;
my_lv.email = _parent.t3_2.text;
my_lv.the_message = _parent.t4_2.text;
my_lv.send ("http://mailgate.server-mail.com/cgi-bin/mailgate","POST");
nextFrame ();
}
send_btn.onRelease = function () {
if (t1.text == "" || t2.text == "" || t3.text == "" || t4.text == "") {
status_text.text = "Please complete the entire form ...";
} else {
status_text.text = "Thank You. Your message has been sent.";
sendForm ();
}
};
and the html given is:
<FORM METHOD="POST" ACTION="http://mailgate.server-mail.com/cgi-bin/mailgate"> <input type=hidden name="recipient" value="sales@acme.com"> <input type=hidden name="subject" value="Enter Subject"> <input type=hidden name="redirect" value="http://www.acme.com/feedback.htm"> Your Email address: <input type=text name="email"><BR> Your Full Name: <input type=text name="realname"><BR> Tell me what you think of me? <TEXTAREA NAME= "comments" ROWS=3 COLS=50>Type Here</TEXTAREA> <INPUT TYPE="SUBMIT" VALUE="Send Comments"> </FORM>
Currently, if I press submit, it opens another browser window and asks for a recipient to be specified.
Any help would be greatly appriecated. Thanks
Sending Email With LoadVars Using ASP.NET
Hi there,
I'm having a bit of a problem with the connoction between my flashmovie and a ASP.NET mail script.
I have the following actionscript:
Code:
var email_lv:LoadVars = new LoadVars();
email_lv.onLoad = function(success) {
if (success) {
_root.TEST.from_txt.text = "";
_root.TEST.email_txt.text = "";;
_root.TEST.message_txt.text = "";
}
};
_root.TEST.btn.onRelease = function () {
email_lv.from_txt = _root.TEST.from_txt.text;
email_lv.email_txt = _root.TEST.email_txt.text;
email_lv.message_txt = _root.TEST.message_txt.text;
email_lv.sendAndLoad("tipenven.aspx", email_lv, "POST");
};
And the following ASP.NET page:
HTML Code:
<%@ Page Language="C#" ClassName="WebUserControl3" %>
<%@ Import Namespace="System.Web.Mail" %>
<script runat="server">
private void send_msg(object sender, System.EventArgs e)
{
string from_txt = Request.Form["from_txt"];
string email_txt = Request.Form["email_txt"];
string message_txt = Request.Form["message_txt"];
MailMessage mailMsg = new MailMessage();
mailMsg.From = "kontakt@plusidentity.dk";
mailMsg.To = email_txt;
mailMsg.Subject = from_txt + " sender dig en julehilsen.";
mailMsg.Body = message_txt;
mailMsg.Body += from_txt + " Siger:<br>";
mailMsg.Body += "<br>-------------------<br>";
mailMsg.Body += "<a href='http://www.dengodejul.dk'>www.dengodejul.dk</a>";
mailMsg.BodyFormat = MailFormat.Html;
SmtpMail.SmtpServer = "backup-mx.zitcom.dk";
SmtpMail.Send(mailMsg);
}
</script>
My problem is, that there is no connection between the to scripts, and the actionscript never goes inti the "succes" and resets the textfields...
I've attached the files I'm working on....
Am I missing something??
/JBOY
Sending Data With Loadvars To Php , Undefined
Hi,
I've looked around on the net and can't get an answer to my problem..
I need to send data from my flash to php.
here's the code from my flash file
on (press) {
dataSender = new LoadVars();
dataSender.nom = nom.text;
dataSender.prenom = prenom.text;
dataSender.email = email.text;
dataSender.send("../update.php","_self","POST");
trace( dataSender.toString() );
}
they come up undefined in my php file.
Also, when I load my swf with the url http://www.avocadotraiteur.com/fr/swf/intranet.swf the submit buton works, but when the swf is loaded through another swf when you click on submit nothings happens any idea?
Http://www.avocadotraiteur.com click on french then intranet in the bottom menu to see the difference
thank you so much in advance..
Sending Xml As Continuous String With Loadvars
i'm trying to send some xml using sendAndLoad but it's not going through properly.
if i send a simple variable through ie..myLoadVars.thisXML = "whatever" - then it gets through fine.. but when i try to send an xml string through it doesn't!
so it's not the process but the data itself..
think it might be the breaks in the xml... so i want to strip the breaks from the xml so it's a continuous string
so instead of:
<xml>
<child></child>
<child></child>
</xml>
it's "<xml><child></child><child></child></xml>"
any ideas???
Limits On Sending Data With LoadVars
I was wondering if anyone had found out that there is a limit to how much information can be sent with LoadVars. I guess that limit could be the number of properties of the loadVars object, or size of the properties being sent. thanks.
Sending Loadvars Object Through Projector
Hi !
I am trying to find a way to send a LoadVars Object from my Projector file to a PHP script. Something like this:
myLoadVars.sendAndLoad("http://domain.org:8080/myScript.php", receiverObject, "POST");
At first I thought it was a SandBox issue, but it doesn't seem to be the case. The variables are simply not getting thru. The projector is running on a Mac.
Any ideas?
--
Joseph Decarie
LoadVars And URLEncoded Text--sending To A Server That Doesn't Get It
Hi People,
I'm having a problem. I have a shopping cart that collects all the quantities people have ordered and uses arrays to wrap all the info up nicely into a tight little package ready to process at PayPal. Essentially, it ends up as one line of properly formatted text, like this:
Code:
&cmd=_cart&upload=1&business=martin@rosacordis.com&item_name_1=cool_item&quantity_1=1&amount_1=40&item_name_2=cool_item02&quantity_2=2&amount_2=30
that gets loaded into the URL https://www.paypal.com/cgi-bin/webscr?
and you can see that it works with this link: https://www.paypal.com/cgi-bin/websc...=2&amount_2=30
The problem comes when I pull the text into a LoadVars to send off for processing. The same text becomes URLEncoded and looks like this:
Code:
%26cmd%3D%5Fcart%26upload%3D1%26business%3Dmartin%40rosacordis%2Ecom%26item%5Fname%5F1%3Dcool%5Fitem%26quantity%5F1%3D1%26amount%5F1%3D40%26item%5Fname%5F2%3Dcool%5Fitem02%5FPoster%26quantity%5F2%3D2%26amount%5F2%3D30
Which doesn't work at all. Why? PayPal won't recognize the URLEncoded bits for Ampersand or equals. If you replace all instances of %26 with & and all instances of %3D with "=" it works just fine.
I know I can unescape the text, but I don't know how in combination with a LoadVars--or, can I avoid this problem by sending some other way? I'm definately open to suggestions.
Thanks!
Problem Sending Variable With LoadVars.send (scope Perhaps?)
I think I'm probably missing something obvious, but I'd be very grateful for any assistance!
I currently have the following code in a movie clip:
var my_lv:LoadVars = new LoadVars();
my_lv.overall_score=_root.overall_score;
my_lv.send("score.php", "_blank", "GET");
(ultimately I'll want to send the variable without opening a popup window, just doing it this way for now so I can see what is -or is not!- going on)
The problem is that sending this variable results in undefined:
score.php?overall%5Fscore=undefined (URL loaded)
If on the other hand I use the AS code:
var my_lv:LoadVars = new LoadVars();
my_lv.overall_score="88888"; //arbitrary number
my_lv.send("score.php", "_blank", "GET");
it all works perfectly.
_root.overall_score is definitely defined in the movie, it's successfully displayed in a text box in the same frame as this code appears.
Hopefully someone can point me in the right direction!
Many thanks,
Andrew
Loading Component Inside Scrollpane Component
Hello,
Can anyone help me out in adding a scrollpane on to the screen through actionscript and after that adding any component inside the added scrollpane component.
Thanks in advance.
[Component] Targeting Flash 6 ScrollPane Component
Hey All,
Been a while... hopefully somebody can provide some insight into what I am missing here.
I have a Flash 6 ScrollPane - yes, I know it's old, but it is also easy to do custom skinning. I had data loading into it from the library by using createEmptyMovieClip and then attachMovie to grab an MC from the library.
This all worked fine until I had to place the ScrollPane into a MC in the library, dynamically attach it to the stage and then assign the content. Now I can only get my content MC to display on top of the ScrollPane, not in it. Here is a sample:
ActionScript Code:
function showPop(popType) {
popContainer = _root.createEmptyMovieClip("popWindow_mc", 350);
popWindow = popContainer.attachMovie("pop", "pop_mc", 1);
popWindow.pop_sp.boundingBox_mc._visible = false;
popScrollClip = popWindow.createEmptyMovieClip("scrollClip_mc", 400);
popScrollContent = popScrollClip.attachMovie("scrollMC_disclaimer", "scrollContent_mc", 1);
popWindow.pop_sp.setScrollContent(popScrollClip);
};
"pop" is the linkage name of the MC that contains the ScrollPane and "scrollMC_disclaimer" is the linkage name of the MC that is the content to be scrolled.
Any ideas as to what I am missing? Any help is greatly appreciated. Thanks in advance!
LoadVars Sending Data To PHP As Part Of A Loop... Changes Not Hitting MySQL
I've got a loop I'm running through assigning an array from an array of arrays to a set of variables and then sending those variables to a php script to update a mySQL db table. problem is, the changes are rarely going through to the db.
i'm assuming it's 'cause i'm swamping my php script. any suggestions? can i add some sort of return value that comes back from the php script allowing the loop to continue?
first time writing a flash app like this so any advice would be GOLDEN. thanks!
steve
Sending Component Variables To PHP
Hello everyone,
I have the following problem which I already postes here but I didn't get a respond. So here my second try:
I have a flashform from which I am sending variables from Input textfields and Components to a PHP site. There I am validating the variables (correct date, correct email, ...). If an error occurs I am sending the a message to a dynamic textfield in flash! So far so good. The user now can coorect the values and when I hit the submitt button again Flash sends only the variables from the textfields but NOT from the components!! Here is the actionscript I use to send the variables:
on (release) {
state = state.getValue();
birday = birday.getValue();
birmonth = birmonth.getValue();
biryear = biryear.getValue();
sex = sex.getValue();
mailing = mailing.getValue();
loadVariablesNum("checkform.php", 0, "POST");
}
Does anyone has an idea why the component variables are not send again??? The button with the actionscript is on frame 2 and the movie is stopped there but I don't see why that should interfere with sending the variables!
Any help someone can offer is appreciated. I am hitting a dead and with my knowledge of action script.
THX in advance.
nogo
Collecting Value Of Component & Sending To Javacript
I need to some help here... I've been trying to find information on doing this but have not found any out there.
I need to collect the value (true or false) of a bunch of checkboxes in a swf and then send those values to html (probably with javascript in the html). There would likely be a submit button that would send the info, but I would like to just update the file on the fly, based on user action.
Would I use a getURL("javascript: ----")
or a send(loadVars)
I'm not sure where to go with this? Any help would be greatly appreciated!!
Thanks!
Help Sending Variables Using Ui Component Drop Down
Hi Guys, I am after some advice on using the component combo box. Please forgive my ignorance. I have a form build in flash which sends variables to a php file for inclusion to a DB and to email the results. This works fine however I want to include a dropdown menu with different locations, once the user selects the location the email is sent to a specified email address based on the selection. I have no problem with the php and this works fine if I just include a text field and type the location in but I want to include a drop down menu to ensure the correct data is sent. I am new to Flash and am having problems.
The easiest solution I can see is by using the component combo box but I cant find and usefull help on this. Can someone point me in the right direction or even tell me if I am going down the correct route? The field needs to be assigned a variable name like location and passes the location name based on user selection to the script but I just cant get my head round it.
Thanks
Alan
Sending Variables Using Component Combo Box
I also posted this in newbies but have had no response
Hi Guys, I am after some advice on using the component combo box. Please forgive my ignorance. I have a form build in flash which sends variables to a php file for inclusion to a DB and to email the results. This works fine however I want to include a dropdown menu with different locations, once the user selects the location the email is sent to a specified email address based on the selection. I have no problem with the php and this works fine if I just include a text field and type the location in but I want to include a drop down menu to ensure the correct data is sent. I am new to Flash and am having problems.
The easiest solution I can see is by using the component combo box but I cant find and usefull help on this. Can someone point me in the right direction or even tell me if I am going down the correct route? The field needs to be assigned a variable name like location and passes the location name based on user selection to the script but I just cant get my head round it.
Thanks
Alan
Sending Vars From Within A Scroll Component
In have a bunch of buttons in a MC which is the called up by a scroll component.
An instance of one of these buttons placed at root level has this code, and send its variables just fine:
on (press)
{
var item = new CartItem("Simples 01", 55, 1);
additem(item);
}
One they are inside the MC used by the component, this same code fails.
These variable are referenced by script at root level:
function CartItem(name, price, qty)
{
this.name = name;
this.price = price;
this.qty = qty;
}
How can I modify so that the variables get sent properly to the root?
Thanks!!!
sumsum
Problem With Sending Datefield Component Value
Hi All,
Thank you in advance for reading my thread.
I am trying to send a date value from a datefield component to an asp page.
But so far i have been getting a undefined error when the asp page returns the sent data from the form.
The code:
(actionscript 2.0)
function onSubmit() {
formData = new LoadVars();
formData.dateNew = dateNow.getValue();
asp code:
<%
reply_date = Request.Form("dateNew")
returnToFlash ="&reply_date=" & Server.URLEncode(reply_date)
Response.Write returnToFlash
%>
I am new to flash & actionscript and any kind of advice will be extremely helpful.
ScrollPane Component
Hi Folks
Got this one Problem with the ScrollPane. I've got one Movieclip as Content. Inside this MC another MC is placed which creates dynamically textfields as many as an array has values.Just as shown in the Script below. Well it all works fine but the big Probelm is that the Scrollpane doesn't react on the Content there are not shown any Scrollbars, although the Textfields are overlapping the Size of the ScrollPane.
Has anybody an Idea how this could work?
ActionScript:
----------------------
list=[several values];
function buildList() {
var Content = display.getScrollContent();
trace(Content);
spacing=30;
var i =-1;
while (++i<list.length) {
name="infoBar"+i;
y=i*spacing;
Content.list.attachMovie("infoBar",name,i),
Content.list[name]._y = y;
Content.list[name].sentence.text=list[i];
}
}
buildList();
Help On ScrollPane Component
Hello,
My project is to create a bird eye view of a map with zoom in and zoom out facility using ScrollPane Component.
What i am doing is .... passing the map movieclip as a parameter to 'scroll content' and creating a panel with few buttons when on clicked will increase the size of the map movieclip (using the ._xscale and ._yscale method).
The problem is that when i increase the size of the map movie clip using the buttons scroll properties of the ScrollPane Component dont change.
anyone can help me on this...
Regards,
Sid
[Edited by Sid☼ on 08-05-2002 at 07:10 AM]
The ScrollPane Component
Hello ,
Can anyone explain or point me to a good tutorial on how to use this, i want to put a few movie clips or pictures in a ScrollPane component
How To Set Up ScrollPane Component
I have searched and been through the help files, to figure out how to get the scroll pane compnonent to work, maybe I am tired??????
It says to add the your MC to the Scroll Content in the Properties box, if so, how do you add multiples? meaning how to seperate them? While putting these names in is it the linkage name assigned to the MC?
Basically is there any Action Script to go along with this? A tutorial would be nice.
Scrollpane Component
Place a button inside a movieclip. Use the scrollpane component to display the movie clip. The buttons don't work???
Anyone have any info on this?
I want to create a scrolling menu of thumbnails using the scrollpane component, but if the buttons won't work...
thanks
ScrollPane Component?
Hello everyone,
I'm trying to setup a table(consisting of a number of text boxes) in FlashMX. I'd like to make this table scrollable.
I convert my table(containing text boxes) into a movieclip, and then attach a ScrollPane component to it. Uptil here, it seems ok. When I test the movie, the movieclip scrolls, but it is also displayed outside the scroll area.
I've experienced this with text boxes only. As long as I put a movieclip(e.g. containing a .jpg image) into the scrollbox, there is no problem, i.e. it shows the image only inside the scrollarea.
You can check out the attached file.
Any ideas??
Thanks,
Omer
Scrollpane Component
i can't work out how to make the background of the scrollpane component transparent. it is always white, even if the background of the movieclip it is scrolling is transparent.
does anyone know how i can make it seethrough, or some other way of scrolling a movieclip? (what i am actually trying to do is scroll up and down a list of buttons)
cheers
-bart
Help With Scrollpane Component
I have a form inside a scrollpane component. the form has input text fields and combo boxes. the problem is that I cannot tab through the text fields and combo boxes, it seems that hte scrollpane it's self gets the focus?
has anyone else had this problem?
ScrollPane Component
I noticed that the if I use the ScrollPane component and try to publish using the Flash Player 5 the component does not work. Do these components only work if somebody has the Flash Player 7? Is there a way to make the Scroll Pane or Text Area components work in the Flash 5 Player?
Thanks
Scrollpane Component?
I have a Movie clip that scrolls within the scrollpane component.
In this movie clip, i have radio buttons but only one of them shows up.
Why..ohh..whyy does only one of the radio buttons show up?
Scrollpane Component
hi, i have flash mx 2004.
can someone please tell me how i can edit the scrollpane component.
Scrollpane Component
Hello all,
I would like to scroll an MC using the scrollpane component. I've searched many forums for an answer but I haven't been able to find anything that explains how to use this component. I'm using FlashMX 2004 Pro.
Can anybody explain it to me or show me the way to a good tutorial?
thanks
ScrollPane Component: Help
Hi, I am hoping that someone can help me with this. I am trying to creat a basic scroll pane which will contain text. I have followed these steps so far:
1. I made the .swf file (sampletext.swf) that will be the content of the scroll pane
2. In a new movie clip, I dragged the ScrollPane component from the components menu to the stage.
3. In the scroll pane's properties panel, I named the instance "biotext"
4. In the parameters tab, I typed "sampletext.swf" in the contentPath field.
5. In the movie clip's timeline, I selected the 1st frame and typed in this code in the actions panel:
scrollListener = new Object();
scrollListener.scroll = function (evt){
txtPosition.text = biotext.vPosition;
}
biotext.addEventListener("scroll", scrollListener);
completeListener = new Object;
completeListener.complete = function() {
trace("sampletext.swf has completed loading.");
}
biotext.addEventListener("complete", completeListener);
That's all I have done. I am not sure what else to do.
SOS,
Sabrina
Scrollpane Component
I would like to remove the box around the scrollpane component. Is that possible and how.
Thanx
k
How To Use The Scrollpane Component?
Hey Everyone,
Quick question. How to I complete the following task? Is the Scrollpane the best way?
In the website listed below you will see text that fits in a space below the navigation. The client wants additional text there. I want to keep the large S (i think it is called a drop Cap) and have it scroll with the rest of the text.
I want to add scrollable text to the following website David Furman Architecture
I created all the text in flash including the large "S" at the beginning. This is composed of 3 text boxes. I want this to be scrollable. Can I make this a movie clip and place this into a scrollpane?
If so, how do you do it?
Thanks for your help,
THS2000
Help For Scrollpane Component
Hi All,
I am using the scroll pane component for flash mx 7.2 well I have used it successfully but there is a problem when I open the fla and publish it by pressing ctrl+Enter is works fine that is it displays the scrollable buttons but the problem is when I try to play the stand alone swf it doesnt display anything (neither the scroll ar nor the buttons clip) plz help me out of this...
And another problem is I am at my office at the moment and I cant upload the fla file from here .I'll be very thankful if anyone solves the problem..
Using ScrollPane Component
I am having trouble with the scrollPane component. I placed this code in a movieclip with linkage name of "container_mc" Then I placed an instance of the scrollPane on the stage and set the content path to "container_mc". When I test the movie, my code executes but the scrollPane does not work.
code:
MyLoadVars = new LoadVars();
MyLoadVars.load("temp.txt");
MyLoadVars.onLoad = function(success) {
if (success) {
trace("loaded");
//trace(this.Folder0);
for (i=0; i<=24; i++) {
//trace(i);
//clip = "clip"+i;
_root.attachMovie("Folder_mc", "clip"+i, i, this.getNextHighestDepth());
_root["clip"+i].name.autoSize = true;
_root["clip"+i].name.text = this["Folder"+i];
_root["clip"+i]._x = 20;
_root["clip"+i]._y = 20+(i*20);
//trace(this["Folder"+i]);
_root["clip"+i].i = i;
_root["clip"+i].onRollOver = function() {
trace(this.name.text);
//trace(this._width);
//_root.scrollPane.redraw(true);
scrollPane.redraw(true);
};
}
} else {
trace("not loaded");
}
};
[F8] Add ScrollPane Component
Attached is the image of what I'm trying to do. I want to add a scroll bar to the thumbnails on the left - which will be buttons to produce the larger image on the right.
When I open the Components panel and click the UI Components and drag a scrollPane comp9onent onto the stage and then select the parameters tab I'm confused about the contentPath. My thumnail images are six buttons lined up vertically in one movie clip. I don't have them moving; they are all in one frame and the mc is titled "thumbs." But if I put just "thumbs" in the contentPath field nothing shows up in the scroll box. It says you can put a .jpg, .swf, clip, or movie in there so if it were just one image I guess it would be thumbs.jpg. But it's a movie clip. So I'm not sure what the full path name is. I tried writing the entire path:
Macintosh HD:Userswner:documents:blog:site:dogs.fla:thumbs but that didn't work.
I hope this is enough info for someone to help me. Thanks.
Alex
ScrollPane Component
Hi Everyone,
I have movieClips in a scrollPane that I am using as buttons. What I want to do is when the main timeline reaches a frame have the color of the button change. I can get it to work outside the scrollPane. But when I attach it to the scrollPane I can get the path right to control the movieClip inside tyhe scrollPane. I gave the movieClip and the scrollPane instance names.
For example the path I was using is myScrollPane.myMovieClip.myButton.chenges color.
Any help would be greatly appreaciated.
Thanks
Mike
Help With ScrollPane Component
I have a very large diagram on a flash project, so I decided to use the ScrollPane component to display it
I used a pair of buttons to scale the movieClip inside the ScrollPane,although the drag function worked just fine, the scrollbars didn't adjust to show the contents properly.
Is there a scriptable property of the component that I must change to correct it?
Scrollpane Component
I am working on the "Scrolling Dynamically Loaded Text" tutorial and i have gotten to the part were you drag the Scrollbar Component from the component window.. I am using MX2k4 and the component is not there just the scrollpane component.. when i drag this onto the text box as instrucked it does not snap as the tutorial sayes it should but rather make a box and truns the tex box into a dotted line box ... please help what am i doing wrong
New Scrollpane Component - Max It's Use
Hi
Anybody here know how to use the new scrollpane on dynamically created movieclips? This can easilly be done using the previous version of the scrollpane component using the setScrollContent() class. I tried using the mySP.contentPath = "myPath"; but it doesn't do it. What I'm trying to achieve is to attach movie clips to the stage and have them scrolled by the scrollpane. I don't know what to do I can seem to make it work. Please help?
ScrollPane Component
I am using a gif in the scrollpane component, when I scroll to the right it seems to chop off the end of the gif.
Is the a limit as to how wide the gif can be?
Thanks for your help.
John
ScrollPane Component
Hi,
I have problem working with the Flash Mx 2004 Pro ScrollPane Component.I would like to scroll the contents combinations of text and image.
1) I have created a new symbol and add the desired text and graphic (named symbol 1)
2) Later I add scrollPane Component and enter the contentpath as Symbol 1
3) Everything went smoothly accept that I coudn't get the content to align correctly in the container - the content are always align to the left no mater how I resize the scrollpage container.
How could I work this arouns, Can anyone please help me.
Using The ScrollPane Component
hi everyone, i am a new kirupa user and i have just recently been using mx 2004, i am wondering if anone could help me with a problem....i am trying to use the new scrollpane feature in mx 2004 and i am wondering what how to call a library item into the window......not sure where to put the code or what to call the item in the library to get it into my scrollpane window.
much love and thanks for ya help peeps, have a good day!
mr blair
How To Us Scrollpane Component?
I just need some help with how to make a scrollbar in flash work on images as well as text. I sore the scrollpane component and was wondering if thats how i do it - but im still not sure...
Scrollpane Component Help
Hi - i have used the scrollpane component and it works fine with my movieclip that i have attached to it. Although i was wondering is there a way to skin the scrollbar of the scrollpane component at all????
I know you can do it with the scrollbar for a dynamic text box but can u do it with the scrollpane component??
ScrollPane Component.. MX
ScrollPane Component.. MXis there a way when using the ScrollPane Component to have the background transparent.. so you do not have the white background, but in turn.. you still have the scroller? the vertical scroller.
is this possible.. please help.
i do not know what to do.. i am trying to make a scroller for some book cover images.
if anyone has anyother ideas on how to do this. that would be great...
thank you.
its greatly appreciated.
Help With The ScrollPane Component Please
Hi and thank you for reading my thread.
I have used the scrollpane component in a flash animation in order to integrate it into a website so that I can scroll text in a smaller area. The problem that I have is that with scrollpane, you import an image into your library which you can then scroll in the animation. Now the actual problem is that I need certain text in the scroll area to be a hyperlink to another site. You can include hyperlinks in an image.... Any ideas how I could solve this? Or maybe another way of doing the same thing I am trying to do with the scrollpane?
You can see what I mean here:
http://www.ahproyectos.com/haus/haus.htm
Its a website I am designing and in the scroll section in the middle, I would need to set hyperlinks for the images etc...
Thank you all for your help!
Scrollpane Component
Is it possible to change the background color of a scrollpane. I've got the compnent working great, but I'd like to NOT have the back of the scroll pane be transparent. Is it possible?
THanks,
Jamie
|