Colour Mixer? Help Im Thick
Is there an easier way of colouring things with a fade style from top to bottom then doing it verticaly and rotating it? Im sure there must be. Just me being dumb im sure
FlashKit > Flash Help > Flash Newbies
Posted on: 07-26-2003, 02:08 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Help Am So Thick
am trying create a countdown digital dumber counting down from 2000 and looping back when it gets to 0 however am still learning action scripting can anyone point me in the right direction? or give us a sample script?
I Must Be Thick, I Think
i just cant seem to grasp how to get a simple value checked before a button action takes place.
I'm attempting to set a variable on the 1st frame of my movie, and then have my MC's change this state as they are running eg - on/off or true/false etc. I also need some buttons to check the state of my MC's before either playing from a certain label, or doing something else.
i have made a small demo movie, trying to illustrate what i am doing. (or trying to do)
It does not currently work, but i have placed the code i am trying to use in the areas i think it needs to go. I have just been concerened about MC_1 and can probably work the rest out if helped with an example.
If anyone could tell me why it wont do what i need, i would greatly appreciated any help.
Exported as flash7 from Mx2004. As 2.0. on a mac.
thanks
chunk
Thick Lines?
Is there any way to make the lines you draw in Flash thicker? (like in photoshop)
thanks.
Menu Help I Am Thick:)
Hi
Please can sombody check the attached file, i have been working for 4 hours following the MACromedia Tutorial for the drop down menu.
I have followed it 4 times but i just get a blank screen. I am putting the XML file in the same folder as the Movie file.
I just get nothing???????
Please Help Me With A Thick Moment
I've an Apache setup but with my docroot setup as c:web
and get include errors(see below). Please let me know what I need to change as my mind is turning to mush.
Warning: main(flashservices/io/AMFInputStream.php) [function.main]: failed to create stream: No such file or directory in C:webflashservicesappGateway.php on line 29
Fatal error: main() [function.main]: Failed opening required 'flashservices/io/AMFInputStream.php' (include_path='.;c:php4pear') in C:webflashservicesappGateway.php on line 29
Any help would be great, thanks
Martin
Basic Problem But I'm Thick
ive got a movieclip with buttons in it,
on pressing any button it triggers a fade animation then stops(it also loads an image).
i only want this fade to happen on the 1st press of any of the buttons. then i want the buttons to load images only after the 1st press.
my code runs the fade everytime.
on (press) {
_parent.loadbox.loadMovie("image.swf"); // load image
_parent.play(); // tells the main timeline to play the fade
}
Help On Thick Outline On Animation
hey guys, dis is my first thread i hope i can get a reply back....
this might be hard to explain but..
im trying to put a thick black outline on a symbol which has already been animated on.
for example 2 overlapping circles are moving around in many variations inside a symbol. i am lookin to take the silhoutte of the 2 shapes and put an outline for every frame....
any suggestions are more then welcome.. the closest thing i managed to come up with is creating 4 duplicate symbols of the animations and sticking them under the original animation.. nudging each one to a different direction and changing the animations to pure black. this caused a bad resault on corners of the animation.
if there is a way to smooth edges on a symbol then that might fix my previous method..
hope somebody has an answer and thank you very much.. awsome forum
Really Thick First Char In String
how can i get the first character in a string. I know you can splice a char and remove chars.... but i just want to get the first char, and maybe the second
please help
Thick Diagonal Scanlines
hey,
what I am wanting to do it have the normal diagonal scanlines, but instead on the line being 1 px thinck, be say 100 px think, and i cant seem to get it, ne help?
thanks
Easy Soud...but I'm Being Thick Today
my word...soo easy to do but can i get it working today??? nope
how do a work a mute button on my site which will turn the sound off (when pressed once) and then on again (when pressed again)
i think i'm thinking in too complicated a way
anyways....somebody give us a hand please
thanks
Join The Dots - Thick Lines?
Is there is a way to thicken the line in a Join the Dots type game attached. The reason I want this is I am trying to create something for children and it will look better with thicker lines.
In case my example doesn't attached there is an example of the game at http://www.the-stickman.com/tutorial...llaneous.shtml
Thanks
Newtoo
Square Corners On Thick Rectangle
Hi I have flash 8 and I want to make a movieclip of a square with a thickness of 10px, no fill color, and square corners. I can draw the square ok, I choose square from the "cap" option in the properties inspector. When I convert the square to a movieclip it defaults to round corners. Can anyone help me with a way around this?
Thanks,
Matt.
Unwanted Thick Border Around A Button/jpeg
Hello everyone,
Before clicking on my site, you may want to turn your speakers down as their is a blast of music at the start.
Here's the link http://www.caveataudiens.net/
and the problem is if you click on the 'music' section, you'll see there's a clickable album cover. For some reason though, top and left side of the cover has a particularly thick black line: the orginal jpeg does not have this, and if you click the button, the next page has a picture of the album cover that has the exact same problem.
Forgive me if I'm doing something really stupid, but can anyone tell me why Flash has added this thick border and how I can get rid of it.
Many thanks
Floyd
Omg I Feel So Thick It Hurts .. C Problem Agin ....
i blimmin had it working and all ....
sorry i should explain .. its the c word again .. yes carousel ...
i had it working .. then i showed off .. now i cant see for the life of me what i have changed ...
the pictures are uploading, the tooltips are showing up ...
ITS NOW NOT ..... ERR CAROSELLING AGAIN ... i mean not moving ... just stat images ...
debugger tells me that once the curser hits the screen its - var angle=nan
please can someone tell me what ive changed or deleted .... ive studied it hard .. then my brain melted and revolted ... now im a bit tipsey
Code:
import mx.utils.Delegate;
var numOfItems:Number;
var radiusX:Number = 250;
var radiusY:Number = 75;
var centerX:Number = Stage.width/2;
var centerY:Number = Stage.height/2;
var speed:Number = 0.05;
var perspective:Number = 70;
var home:MovieClip = this;
var tooltip:MovieClip = this.attachMovie("tooltip", "tooltip", 1000);
tooltip._alpha = 0;
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function() {
var nodes = this.firstChild.childNodes;
numOfItems = nodes.length;
for (var i = 0; i<numOfItems; i++) {
var t = home.attachMovie("item", "item"+i, i+1);
t.angle = i*((Math.PI*2)/numOfItems);
t.onEnterFrame = mover;
t.toolText = nodes[i].attributes.tooltip;
t.icon.inner.loadMovie(nodes[i].attributes.image);
t.icon.onRollOver = over;
t.icon.onRollOut = out;
t.icon.onRelease = released;
}
};
function over() {
home.tooltip.tipText.text = this._parent.toolText;
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y-this._height/2;
home.tooltip.onEnterFrame = Delegate.create(this, moveTip);
home.tooltip._alpha = 100;
}
function out() {
delete home.tooltip.onEnterFrame;
home.tooltip._alpha = 100;
}
function moveTip() {
home.tooltip._x = this._parent._x;
home.tooltip._y = this._parent._y-this._parent._height/2;
}
function released() {
trace(this._parent.tooText);
}
xml.load("rgxml.xml");
function mover() {
this._x = Math.cos(this.angle)*radiusX+centerX;
this._y = Math.sin(this.angle)*radiusY+centerY;
var s:Number = (this._y-perspective)/(centerY+radiusY-perspective);
this._xscale = this._yscale=s*100;
this.angle += this._parent.speed;
this.swapDepths(Math.round(this._xscale)+100);
this._xscale = this._yscale = this._alpha = s*100;
}
this.onMouseMove = function() {
speed = (this._xmouse-centery)/3500;
};
thank you in advance, please help my red wine infested brain
Simple Movie Clip Reverse Problem... Im Thick
Hi All,
im trying to make a scrolling movie clip with a up button and a down button
this is my actionscript on the up button.....
on (press) {
tellTarget ("test") {
prevFrame();
}
}
on (release) {
tellTarget ("test") {
stop();
}
}
this works but only one frame at the time. the problem is i want it to play all the frames back untill i let go of the button...
any ideas?
thanks people
CD
16 Bit Colour Mode Problem With Alpha Fades On Colour
Please help me out. I have tried many other forums and people, but no one can give me an answer. Hopefully you can.
Have a look at a site I designed for a school.
http://www.brineleas.co.uk in 32-bit mode this is great, now try 16 bit colour mode and you will see my problem.
Please help if you know how
Trev:
Mixer Control
HI,
Anybody knows how to controle a windows sound mixer? I need to control speeker`s volume and microphone volume.
tnx.
Sound Mixer
hi,
im still new to action scripting and very new to audio, i found this fla here on FK and i love it, now it currently has 4 sounds being utilised and i wanted to know how to add 4 more sounds to this mixer but cant for the life of me work out how...
any and all help would be greatly appreciated..
thanks in adnvace - dave
file is 4 meg ---> Http://www.flashkit.com/downloads/mo...io%20mixer.zip
Color Mixer
I have a SWF with quite a number of different graphics I've created using the color mixer, both with linear and radial settings. There are probably about 10 of them.
Is there any way to set an object memory in Flash MX so that if I want to change on objects radial color settings slightly, Flash will remember what the original settings were and display those rather than whatever settings the last image created may have used?
What I am looking for would even carry across different projects. So if I open an old FLA from months ago and want to change the Radial settings slightly, I could just click on the object and Flash would open the color mixer with the settigns of the object.
Is this possible?
I know I can "save swatch" but my guess is there is a limited number.
Audio Mixer?
Yo
Im new here and Im wondering if anyone knows where i can get a good audio mixer.
thanx in advance
Music Mixer?
this could possibly be my n00biest question ever but does anyone kno where to get a good music mixer
all the ones i tried are crap.
plz help
thx in advance
Color Mixer
In the color mixer I have like 5 different colors and I only want like 2 but I dont know how to get rid of the other 3.........I know this is probably an easy question but how do I make it so there are not soo many colors?
Audio Mixer.
Hi All,
Wonder if anyone can help.
I have created a working mixing desk, that looks like the type of thing used in recording studios. It has 8 tracks with a slider, eq and pan on each track.
Each track has a play and stop button and will start/stop an audio file.
The problem is at present if more than one track is playing I am unable to use the sliders to control individual tracks (which would enable the whole thing to behave just like a real mixing desk), at present all sliders control all currently playing audio at the same time. There is also a master slider for control of the overall audio. It looks good and nearly works.
Hope this makes sense!
Need help to get this finished.
Thanks.
Color Mixer
Okay, after much searching and pulling out of hair, I have failed ot find what I'm looking for. So I came here in hopes that someone knows somewhere I can look.
Anyway, I am looking to make a color picker - a simple color picker, like you would find to change font color. I need a small clickable box that opens up a color pallete with like 50-75 different colors (In fact, if someone knows how to make flash get a color from a color-swatch-bitmap that would be great). When you select a color on this pallete, it should close the pallete and then show the color you picked in the small clickable box. It should be simple, no? Well the only ones like that I have found cost $40 and up. I am just looking for a simple one or a good tutorial on how to make one.
Thanks a ton guys!
Audio Mixer
I want to create a simpler version of
http://www.ujc.org/Israelvideomixer/
I know how to drag & drop. I know how to create an image that when clicked on - plays a sound.
What I dont know is - when they are on the time line how to get them to play in the order that they are placed there.
Can anyone suggest tutorials or help in anyway?
Video Mixer
hi
im looking into how to build a video mixer, so a user can "edit" clips togetehr. Kind o flike eyespot etc. I was wondering if someone coul dhelp expalin at a high level how such a thing i sacheived. ie how do eyespot create theirs so i thas transtions etc? Surely this is all server side?
any pointers woul dbe great.
Sound Mixer
Hi all,
Is it possible to mix several audio streams?
I want to play several audio tracks simultaneously, but several factors that are at times, the audio tracks are out of sync, such as latency Sound.play method, the for loop, the spec of users PC, FLash Player version, operating system etc ...
Thank you for your contribution, and sorry for my bad English
Music Mixer
Hey everybody,
Does anyone know where I can find a flash music mixer? I need a music mixer that can save to mp3 or wav and send the saved file to a mail address. This is urgent! I'm willing to pay for it, so please, please help!
Mixer GUI Mp3 Player.
Let me explain, as some of you may be questioning what I'm asking about.
Well imagine a mixer, it has slides, knobs, buttons, LCD screen, etc...
Imagine creating a flash mp3 player with a GUI like that. XML reads for the mp3 files, and the knobs would adjust like VST plug-ins.
If anyone has ever used FLS or any other program similar you'll know what Im talking about.
The songs would be displayed in the LCD lit box. The start/start/pause would be buttons.
The volume controller would be a cool slider, as well as the balance controls, etc...
Am I crazy or can this be achieved?
I'd have to do a lot more reading to understand it all though
Track Mixer
Hi y'all
I'm trying to create a sound/track mixer in FlashMX. So far so good, I got one track working, but when I add multiple tracks they all seem to react to one slider instead of seperate sliders. Any help would be great, tnx
code:
//create the soundclips (2 atm, linkage : loop01, loop02)
for(i=1;i<3;i++) {
_root["sound"+i] = new Sound();
soundName = "loop0";
soundName += i;
_root["sound"+i].attachSound(soundName);
_root["sound"+i].start(0,9999);
}
_root.onEnterFrame = function() {
for(j=1;j<3;j++) {
with(_root["track"+j]) {
//calculate levels according to knob positions
_root["sound"+j].setVolume(95-volume._y);
_root["sound"+j].setPan((this.pan._x+4)*8);
}//end 'with'
}//end 'for'
} //EOF
How To Make Music Mixer Like......
have u guys seen the muisc mixer at http://www.yulia-nau.de/eng.htm
and soundlabs.com
they are very complex especially soundlabs one.
but can i make basic music mixer
what u technofreeks think about it
waiting to hear from u .....
bye
adnan
Sound Mixer And Record
Dear all,
how to do music mixer and recording in Flash?? (Flash 5 or Flash MX)
something like this:
http://www.paulfrank.com/cartoons/yeti.html
Thanks for your G R E A T H E L P!!
Bitmaps And Color Mixer
Heya,
Ok so I want to fill an area with a bitmap (from the color mixer) but the bitmap is filling it by tiling the area in small boxes? The graphic is plenty big enough... Why is this happening? better yet how do I fix it?!
Thanks in advance to all that reply,
AMCGator
Advenced Sound Mixer, HELP
Enyone knows how to make two sound channals in swf?In first channal it will be sound object (mp3) and in second embeded.video.sound. I need to make a mixer which could change the volume of each channal. Right now I can change the global volume but I dont know how to define a sounds to change separetly a volume of mp3 and video?
HELP
Sound Mixer Simulation, Help
Hi,
Im trying to simulate a sound mixer, 6 channels, Volume and Pan controllers.
Im loading sound with the attach sound and when all of the sounds are loaded i use the "start" action to each channel
s.start (To all 6 of them)
My problem is that they don't synchronize very well.
Is there a way to make them play toghther on the beat ???
Color Mixer - Linear
Is there a more convenient way of rotating a linear fill? I'd like to find a way to make a linear fill vertically without rotating the object, unless there is none. Thanks in advance.
Color Mixer Problem...
when you pull up the color mixer in flash and select linear you can then go down to that line below and click to add another gradient box and select a color for it. But now I want to delete these things and have just the two at each end of the line.
Why can't I just delete any that I click on the gradient line. Flash appears to not let you do this and this appears just completely idiotic. How do you get rid of extra gradient selectors on the gradient line in the color mixer?
thank you...
Custom Color Mixer
Hi;
I'm wondering how to make a color mixer just like the one that Flash o Photoshop have.
It's possible since I saw one working in a logo design site and now I need my own for a design tool that I'm making to put in my site.
But really don't have any idea how to make one.
Any ideas would greatly be appreciated!
Online Music Mixer
hi
i need to create an online music mixer where users can mix some songs and sounds then they can save their mix on the server ...
any ideas ???
Color Mixer Problem
I forgot how to change the alpha setting of a import picture in a flash document. SOS thats a color mixer atribute
Flash Music Mixer
I saw some cool audio mixers in flash, like you select the beat, melody etc. . . and put them on one track and play them and you can even email the mix to yourself. Anyone got any idea or has a tutorial for something like that ?
Building A Sound Mixer
Hi.
I am starting a new project in Flash, which is going to be a sound mixer. I will have sound loops and the user will be able to play with the volume of each loop.
Since I need the loops to be in perfect sync, I am thinking of playing them all from the start and mute them. When the user "activates" one loop, and mute will be off, and then he/she will be able to play with the volume.
Does anyone have any idea about how many sound files Flash can handle at the same time without breaking down the processor?
Thanks,
Uri
Colorblind Color Mixer
Anyone here colorblind? Anyone like to have a color picker that's a little more intuitive?
I was just wondering if there was a demand for such a thing, and if so, is it possible to develop our own design panels for flash? I know we can create our own tools, but do panels fall in that same category?
Color Mixer And Overflow
for some reason my overflow in my color mixer shows pictures instead of words like reflect? How can i change it
you can see the image at http://www.chrisallen.us/overflow.jpg
A Little Help With Reflections And The Color Mixer
Ok, I'm new to this. I think I searched all the tutorials and none of them cover this. I don't get how to use the color mixer. I experimented a lot and I still cant really figure it out.
I seen a lot of flash artists change the color of a charcter's face in different parts. They also use the color mixer to create a reflection effect.I don't really get how they do that. Any help would be appricieted.
A Little Help With Reflections And The Color Mixer
Ok, I'm new to this. I think I searched all the tutorials and none of them cover this. I don't get how to use the color mixer. I experimented a lot and I still cant really figure it out.
I seen a lot of flash artists change the color of a charcter's face in different parts. They also use the color mixer to create a reflection effect.I don't really get how they do that. Any help would be appricieted.
Video Mixer Export?
Hi Guys
Some of you may have already seen the Motorola Moto Studio where you can create video animations for your Motoroal phone.
The mixer is created in Flash obviously but what I was curious about was as to how they then export the compiled clips into one single movie file that a person can use on their phone or any where else for that matter?
Anyone with any ideas on how this is done please reply. As I am working on a similar project at the moment and it would be great to incorporate this kind of functionality into the project.
Thanks in advance
Streamer
|