Where Can I Find The List Of All
free componantes in macromedia site?
FlashKit > Flash Help > Flash MX
Posted on: 09-03-2003, 04:19 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Where Do I Find A List And Description Of Var Types
when you type in - var varName:[ ] - after the colon you get a drop down menu.
This menu has things like "adobe" and "EncryptedLocalStore"
Where do I find a list of what these things are and what they do?
Thanks,
Keyboard Key Codes - Anyone Know Where I Can Find A List?
Does anyone know where I can find a list of all the key codes for keys on a keyboard? I've always looked for one but I've never been able to find one. It would be highly useful !Does anyone have one or know where I might be able to get one ?
---------
EX: W:87
S: 83
Z: 90 (That's about all I know )
--------------------
Thanks,
Fargate
Where Can I Find A List Of Features For The Calendar Component?
I am trying to present the use of flash to a client and they have requested a "feature list" for the capabilities of the calendar component with Flash and/or Flex. I have looked all over the Adobe site and searched on the board and can not find anything.
Any help is greatly appreciated!
Thanks!
My 'find' Won't Find Empty Lines And } Now
on 750 buttons I'm trying to go from:
{
Sound01
}
}
}
to:
{Sound01}
by deleting the empty lines and these } using find & replace - and when I hit replace all - it says none found, even though I copy directly from button code...
Is possible this happened by earlier having copied code from AS window - pasting it onto main stage to hold it while busy doing something else - then later double-clicking it and copying it into the find/replace window - which strangely puts little squares in wherever there was a carriage return??? Help please.
Load Xml Data(list Of Names), Use List As Buttons In Flash Possible?
Hi, basically I have a quiz game that I made, the quiz is done but I want to keep track of how many times a person has failed the quiz. I have an XML file that has a list of names. I want to take those names, put them in a quiz game (at the beginning) as a "list" of some sort and let the user be able to choose their own name (which is of course already in the XML file). This name will be used to keep track of how many times they have tried the quiz.
I have successfully loaded the XML file (names) into an ARRAY in Flash but how can I output them to the screen AND let the user be able to choose those from the list? as a button? This will add the count after they clicked their name to +1 and then save it to somewhere(where is best?). I will attach the zipped files (there are 4, the fla,swf,2 XML files[quiz/names]). If anyone can help me ASAP it would be awesome.
Chnage The Font Of Selected Item Color In A List Mx:List
Hi,am Trying to change the font (bold and color) of a selcted item in List..But it is changing the complete list's font..
Here it is my code..
<mx:List id="businessFunctions" left="10" right="10" bottom="10" top="208"
dataProvider="{processList}"
itemClick="select();"
horizontalScrollPolicy="auto"
labelField="@name"/>
ActionScript COde:
private function select():void
{
businessFunctions.setStyle("textSelectedColor","#D 3E9F5");
businessFunctions.setStyle("fontWeight","bold");
var page:XML = businessFunctions.selectedItem.page[0];
var pageID:String = page.@id;
var processID:String = businessFunctions.selectedItem.@id;
server.submit(pageID, processID, RequestMessage.BEGIN);
}
Here i need toc hange the selected item color only..
Separate The List Items With The Separator And List Is Dynamic
Hi,
I am getting the list items dynamically ,and hv to draw a separator after the every group of list items.For this I have to embed a script function after every group.How can i do this Actionscrip 3.0 Any help?
Ex:
Group 1:
ABC
DEF
GHI
TODO-----Here we need to draw a line
Group 2:
123
456
789
TODO-----Here we need to draw a line
Group 3:
abc
def
ghi
Here I have da code:
for each(var group:XML in event.responseMessage.rawXML.group)
{
var pageSection:PageSection = new PageSection();
pageSection.text = group.@name;
pageContents.addChild(pageSection);
trace("***********Group Name: "+group.@name);
// once the section has been added, iterate through it's children and render each field.
// for each(var field:XML in server.currentPage..field)
for each(var field:XML in group.field)
{
var formElement:FormElement = AppCode.FieldRenderer.renderField(field, pageSection);
/* check for null, if for some reason we encounter an unknown control type
* the formElement will not be instantiated so we should skip over it.
*/
if(formElement != null)
{
/* formElement.field = field;
pageSection.addChild(formElement); */
formElement.setRuleDetails = this;
formElement.communicator = this.communicator;
if(event.responseMessage.pageType == PageType.UPDATE || event.responseMessage.pageType == PageType.ADD )
formElement.readOnly = false;
fieldList.push(formElement);
}
}
//Add Separator b/n groups
TODO...Here we need to call a function which draws a line.....}
Plz help me if u have any idea?
Debug > List Objects + List Variables ...
I am testing my flash movie within the flash application. I go up to the toolbar while testing and select 'Debug > List Variables' and then 'Debug > List Objects'. This displays all the variables and all the objects in the trace window. Fairly straight forward!
What I want to do is access these variables and objects at runtime while viewing my flash movie within the browser. So I can make a text field in my movie and populate it with these variables and objects BUT how do I access these from the flash movie ? There must be a way to get the output from 'Debug > List Variables' and 'Debug > List Objects' at runtime and dump it all into a text field on screen.
Can anyone assist please,
Thanks,
Stephen.
Converting Bulleted List To Numbered List
I'm trying to put out a list of questions for a test. I'm also using a stylesheet to format the way the text is displayed. This is the way the list should look like:
1. question#1 text.............................................. ......
2. question#2 text.............................................. ......
If more than one line of text per question, it continue on the next line indented. The text for each question needs to be looking like a block of text. The same way a bulleted list displays.
This format can be created by using the <ol>, <li> tags in HTML. But Flash doesn't recognize any style formats for the <li> tag. Only a bulleted list is printed out. How can I format that list into a numbered list? or if not how can I create the same output, keeping in mind that I have to use a stylesheet? Thanks.
Debug > List Objects + List Variables ...
I am testing my flash movie within the flash application. I go up to the toolbar while testing and select 'Debug > List Variables' and then 'Debug > List Objects'. This displays all the variables and all the objects in the trace window. Fairly straight forward!
What I want to do is access these variables and objects at runtime while viewing my flash movie within the browser. So I can make a text field in my movie and populate it with these variables and objects BUT how do I access these from the flash movie ? There must be a way to get the output from 'Debug > List Variables' and 'Debug > List Objects' at runtime and dump it all into a text field on screen.
Can anyone assist please,
Thanks,
Stephen.
(Flash MX Or 8) List/List Component Issues
Hello all.
I recently completed Kirupa's "Creating a Listbox" tutorial, (http://www.kirupa.com/developer/mx/listbox.htm) but have been having a difficult time modifying the event attributes of each list item. Basically, I want to click on an item and have an object on the stage move to a unique xy coordinate. I can get the object to move already (object._x = object._x +10, but unfortunately ALL items on the list execute this script command. I've tried fooling around with the code to get each item to do a unique movement but...well, clearly I haven't succeeded yet.
I'm a Flash nooby and help in the form of specifics would be greatly appreciated. If you can provided modified code from the tutorial to move an object to a unique positions that's even better.
Thanks.
David
List Component. Help. Looked Everywhere. Button And List.
Trying to use a list component and a button. When user selects something from list component and clicks button it takes them to new page, if user doesnt select something from list and hits button, (this is where my question lies) I want it to do nothing and setFocus to list component.
Here is how I am going about it now: New if statement (however it still transfers user if nothing is selected from list component) How can I get it to not transfer? I have tried rewritting this many ways, searched all over the nets, and Nada.
Code:
var arUrl:Array=["/browsecategory.aspx?cat=1","/browsecategory.aspx?cat=2","/browsecategory.aspx?cat=3","/browsecategory.aspx?cat=4"];
var provider:Array=[{label:"Option 1",data:0},{label:"Option 2",data:1},{label:"Option 3",data:2},{label:"Option 4",data:3} ];
mcList.dataProvider=provider;
var obj:Object={};
obj.click=function(eo:Object)
{
var count:Number=mcList.selectedItem.data;
getURL(arUrl[count],"_blank");
trace("count="+arUrl[count]);
}
but.mcSubmit.addEventListener("click",obj);/////here is where I am sending off
if(mcList.selectedIndex == undefined) {
setFocus.mcList;
}
So this thing works perfectly, however if user hasnt selected anything how can I get it to not transfer and setFocus?
I have tried setting if to check it for - 1 (since starts at 0) set to 0? Any ideas please help. Thanks in advance MT
'list' Event Of List Component
oops i mean 'change' event of list component
Hi guys/gals. Ive made an xml/list component driven mp3 player as can be viewed at http://www.flashmatics.co.uk/blog/sa...mp3player.html
When someone selects a new song from the list that songs starts to play. Everything is working fine.
I now want to add an extra bit of functionality i.e When one song finishes i want the next song to start playing. But this means I have to tell the list component that a change has occured as well (even though there has been no user interaction to cause this 'change'). How would I go about this. Here is a snippet of relevant code.
Code:
mySound.onSoundComplete = function():Void{
//from here i need to tell the component a change has occured and to move it
//to the next song in the menu
}
//create a listener for the list component
var compListener:Object = new Object();
list_comp.addEventListener("change", compListener);
compListener.change = function(info:Object):Void{
//how do i get this to move to the next track?
}
Thanks for any help in advance. I dont actually need the whole code or anything but rather a point in the right direction..cheers
HELP Symbols List To Text List?
Is there a way to get a list of all the symbols in the library into a text file quickly and easily?
Thanks in advance!
-Ted
Loading XML List Into RMP List Component
I have several XML lists to load into a RMP List Component List Box.
I was told the code should be like:
myButton.onRelease=function(){
myList.load(String(search.text));
}
So I made a button and named the instance "myButton"
Add the list component called "myList"
The XML files are named test1.xml, test2.xml etc.
I tried variations of:
myButton.onRelease=function(){
myList.load(String(test1.xml));
}
Result....
Nota
I think I may need a Listener or I am not sure...
Can anybody please advise me what I am doing incorrectly?
List's "CellRenderer_upSkin" Displays In List Items (BUG?)
Hi Everyone,
I'm having a huge issue with with the CellRenderer_upSkin displaying on the a list component's items:
http://www.davestewart.co.uk/temp/combobox.gif
It's supposed to display a border round the entire list, but bizarrely, it's also used for each of the list elements... so effective end result is that the up state has a huge border.
I'm sure this shouldn't be happening. Has anyone else seen this behaviour?
This is my first production job using AS3, and I'm falling at the first hurdle which is very annoying.
Cheers for any help,
Dave
List Box To Control A List Box
hi guys and gals...here is my doubt...
// Sets the change handler for the Component named 'dropDown'.
listBox.setChangeHandler("SelectItem");
}
// This is the Change handler it tells the the movie what to do when someone clicks on an item.
function SelectItem(){
DataBox= listBox.getSelectedItem().data;
}
the above code is for the listbox change handler to display the code of an item whose clicked in the listbox.....heres what i want to do ....i want this item which is clicked to again query the msaccess database and return results from another table into a second listbox......
for eg...when blue is clikced in a listbox1..it should return types of blue in a second listbox2....pls help me to achieve this ......
thanx in advance
Can Someone Tell Me Where I Can Find...
Can Someone tell me where I can find a site with a promo box(s) on it? you do know what that is right? plz I need to know asap. thank you all, and merry christmas!
Tony
Find The VAR
I'm looking for the way to..
var max = #
what would be the actionscripting command?
thanks.
d.
Trying To Find Tut [ HELP ]
Awright troops i need some help here. I haave an idea and I have been stumped @ the first block
I saw a tut some months back, it was to do with collsion dection. The tut used a COLLISION DECTION MAP. It looked like somthing below.
xxxxxxxxxxxxxxxxxxxxx
xxxoxxooooxxxxxxxxxxx
xxxoxxxxxoooooxxxxxxx
xxxooooooxxxxoxxxxxxx
xxxxxxxxoxxxxoxooooox
xxxxxxxxooooxoxoxxxox
xxxxxxxxxoxxxoooxxxox
xxxxxxxxxoxxxxxxxxxox
xxxxxxxxxooooooooooox
With x being the border and o being the only area available , this is somthing that i want to setup. Does anyone recognise this tut?
Cheers
Cant Find The Bug :
I created a preloader with a percentage display. The dynamic text "loadingdisplay" displays the percentage loaded.
I cant find a little bug in this code though. I was tracing the loadingdisplay-variable to find out why it is always showing 67% - from 0 bytes loaded to all loaded.
Can anyone check the code for me plz?
_____________________________________
if (_framesloaded>=_totalframes) {
gotoAndPlay("Scene 1", 1);
} else {
loadingdisplay = "";
loadingdisplay = Math.round(_framesloaded*100/_totalframes)+"%";
trace(loadingdisplay);
gotoAndPlay(_currentframe-1);
}
_____________________________________
I Really Need This....where Can I Find It?
Hello,
i am working on a flash web site and i arrived to the conclusion that i need a funtion which i can use this way:
MC.fall();
fall would be a function to simulate the falling of a MC with gravity and bouncing. Does anyone has such function?
Another question:
can i put an enterFrame inside an if statement?
thanks,
Miguel
Cant Find It.....
Hey guys,
i need some kind of help here...
i want to create a menu, for a site im working on, that was posted as a tutorial here at flashkit (i thought)...
ive put an description in the image ive attached to this thread...
the explanation *when you choose for option 3 it slides to the right, next to option 4, and then the image (for option 3) appears...
if someone could reach me a hand here, or know where to find that tutorial, i would be very helped...
any help would help me,
thnx
Can't Find
there was a fla movie with a computer that opened with a red button, then opened the screen with an apple..it had a search engine and everything..I can't find it here and wondered if anyone knew the fla or author ?
maryann_mancini@yahoo.com
Someone Knows Where To Find This
Hello..I have a client who is dead set on having a banner on her site that has the effect of water when the mouse is moved across the banner(not ripple effect). I know I have seen a tutorial somewhere on how to do this but for the life of me I can't remember where. Can anyone point me in the right direction?
CAN't Find It...
grrrrrrrrrrrr..
i made a new movi , 100 * 100 and want to make a picture-move from the outside of my document.. but everytime i test the movie the size changed - and the "outside-world" can be seen also..
how do i stop this??
i have searched the board - but didn't find anything-
paraf
Im Sorry But I Cant Find?
can anyone give me the path or link of animation master and Light weaver...
i just want the trial or demo anything...
thanx
Please - How To Find If NaN?
I'm trying to check for a textfields value, if it's NaN or not.
Nothing works - please help me somebody!
Code:
var tallet = parseInt(text_txt.text);
trace(tallet);
if(tallet!= NaN){
trace("Not NaN!");
}
Could Someone Please Tell Me Where To Find
the program that allows you to take out movie and sound clips from swf files? I had it awhile back, and i lost it when i reinstalled. I've seen some mind-boggling tricks in flash lately, and I would like to see how they were done.
thanks in advance, and have a nice day! =D
Where Can I Find ?
Hey does any one know where I can find a very simpleTutorial with pictures as giudes on
How to make a preloader Using "Frames" instead of "Bytes"
How Do I Find A Certain SFX?
OK, i dont know how you would explain this. Lets see if i can. Ok you know the sfx on the 'hero' shows, where when there is a transition, it fades to neon colors, and the logo zooms in and zooms out. Ugh, its like diddly-diddly-diddly-didly-duh.
Kind of a bouce, cartoonish loop.
I think this was on the original batman show. I dont know.
If anyone understrands what i mean, please send a sfx, or point me in the right direction, or tell me how i should go about finding it.
SHeesh, i am crazy
Thx
-nanascalala
Can't Find Something
Hi
Does anybody know where i can download free video's which explain the features of flash MX 2004, about some of the effects and things like that. also the actionscript.
Thanks
Please Help To Find A Bug
Hi all,
Thanks for reading this.
I have the following problem:
On a site, I have a main.swf .
Inside that, on level 1, another SWF is loaded, let's call it child.swf.
The child.swf has in it:
several movieclips, containing graphics, some are on stage from authoring time ( I put them there manually), some are put there by attachMovie.
several textfields, mostly dynamic text.
a button, which reacts on the mouse and with a keylistener on the "v" and on the "V".
All works well, but sometimes, ( and I can't find what triggers it, it seems to happen randomly, and only once in a while meaning I can play the swf 20 times without anything going wrong) something goes wrong.
What I can see from the screendump sent to me is:
- All the dynamic textfields from child.swf and main.swf are still there, visible and functional (holding there values)
- All the movieclips and all the static textfields from child.swf containing the graphics are gone,
- besides that child.swf still works properly (but offcourse you can hardly see what you are doing), so the actionscript still works
- main.swf is still fully functional, still has all the textfields (which are all dynamic) and graphics visible.
This happens on more then 1 pc, so I take it it has nothing to do with the OS or pc. One of those pc's has the latest flashplayer installed. All swf's are made with FlashMX2004.
This only seems to happen with this one child.swf, with all the other child.swf's this hasn't happened, yet.
Any idea's ? Really, anything ??
Thanks!!
PM
I Can't Find It
something like http://www.botschilde.com/ that effect
i searched everyware but i can't find it
Where I Can Find ?
Fill Panel in Macromedia Flash MX v.6.0...
In tutorials for Macromedia Flash MX
i saw that fill panel but i can't find
it anywhere....
Where is it.... Help
Thanks
Where Can I Find...
Hi,
Where can i find templates in Flash ?
Well what i want is a site already done that we just have to change the lawout.
I know, i'm trying the fast way :P
rhercules
Help Me Find My...........
help me find
i was searching the moves section when day when i came across a nice
trick
the move says look at these 2 pic they are not the same look closely
when u start to concentrate on the pictures trying to find the difference
between them suddenly a loud scream and horrible picture of a monster appear
nice trick is it .
has anyone seen it
i forget to download it and misplace it , searched but nothing
i am mainly after the sound and the monster pic ( i can do something like it)
please help me find it may be you will have better luck than me
searched for days tried every word i could think of ....differ, scream ,pictures , monster
thanksssssssssssssssssss
Help Me Find A Way To Do This :)
Hello to all,
i need some hints about a project that could end up being used in a lot of places.
I need a way to have an swf file play locally (or through an http server) and load content (either by means of loadmovie into it) or any other way around i dont know yet. I want this content to change periodically to suit changes, like product changes, new catalogues etc.
The problem using loadmovie is that when a movie has been loaded, it keeps it in the temporary files so it could ignore the change in the content.
Any way to ensure such new files are loaded for sure?
thanks for any insight
Trying To Find
hi about 2 months ago i saw amessage some where in here about how to do a scroller text .a guy had refered to a site that he had liked and put up alink to it and asked how it was done .the site was like a dj site some where in europe the guy add music to flash sites ..i really like his work but lost his www.address.com. can anyone rember it ....as i looked for over a week now and still cant find it ...thanks for your help guys
Can't Find AS In This Fla
I have an fla (attached link) that when tested seems to be looking for other swf files - but when checking out the fla, I can find where that AS is. I am writing an xml banner ad rotator that plays swf after swf, but this thing is fudging it all up - can someone tell me how to fix this?
http://naturaltalent.cc/xml2/flex4/FLAs/home-main.fla
I posted this in the wrong section before.
Help Me Find A....
I NEED A VIDEO ACTIONSCRIPT TUTORIAL.
A TUTORIAL IN VIDEO FORM ABOUT ACTIONSCRIPTING.
Like the ones in www.freeflashtutorials.com
I hope the actionscripting thing starts from the VERY beginning
Who Knows Where To Find...?
Who knows where to find a free version of Macromedia Flash 8? I have the trial version because im broke (lol) and i cant find a free version. So what is a good place to find it? Any suggestions?
|