Make A Button With Picture?

Sep 3, 2010

I'm trying to make a button with a picture I made in photoshop.. but the problem is that the background is transparent, I just want the main part to be clickable.
 
Here is an example.. I just want the purple part to be clickable. The box around that is the actually whole image. So how can I fix this?

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Make A Picture Gallery And Use Buttons That Move You From Picture To Picture And Backwards?

Apr 22, 2002

I want to make a picture gallery and use buttons that move you from picture to picture and backwards, but I don't want to tell button 1 to go to frame 2 and button 2 to got to frame 3 and so on (I hope you know what I mean)Can I use on button on a separate layer with the same action set? I tried something like that, but it didn't work:

on (release) {
thisframe =+1
}
[code]........

but it didn't work. I'm kind of new to any action script other than gotAndPlay, easy functions and all that.

View 2 Replies

ActionScript 3.0 :: Make Every Picture Go To A URL When The Picture Is Clicked?

May 27, 2011

I made a simple picture slideshow with a timer, prev/next buttons, pause/play buttons and jump buttons. Everything went good so far.Now i'm trying make every picture go to a URL when the picture is clicked but only the link on the first frame goes to the URL when clicked the other 5 buttons do nothing when click.(FYI: I made alpha 0% buttons in a layer above pictures)I tried two different codes but both have no effect.

as layer

Code:
stop();
var nextImage:Timer = new Timer(3000);
nextImage.addEventListener(TimerEvent.TIMER,playNext);
nextImage.start();

[code]....

View 1 Replies

Make A Picture Available To Be Used As A Fill For A Shape?

Jun 4, 2009

How do I make a picture available to be used as a fill for a shape?

View 2 Replies

Make A Picture Gallery Run Automatically?

Feb 16, 2010

I have a gallery that shows pictures when yo hit a next and previous button, but id like to make it go automatically.[code]...

View 6 Replies

ActionScript 2.0 :: Make A Picture Gallery?

Nov 28, 2005

I just tried to do a picture gallery.But It has to have around 21 pictures.In 3 sections(this is around 7 pictures per section)

I would like to look like file 1. It must have 21 buttons (on which when you click to see the picture bigger) on the same window,now there are only 13.[url]...

View 1 Replies

Make A Video/picture Gallery In Flash?

Jul 31, 2009

how to make a video/picture gallery in flash? If not in flash then something else. I just need like a video gallery that i can put into flash!

View 11 Replies

ActionScript 3.0 :: Make The Picture Aligned In The Page?

Mar 16, 2009

I made the this tutorialhttp:[url]....and align the movie clip instance to the stage.The problem is when I test the movie the picture is loaded like the movie clip instance is the top left "insertion point" so the picture is not centered. How can I fix this to make the picture aligned in the page?

View 11 Replies

Make A Picture Show Up On Hover Over / On Click?

May 1, 2009

I have inserted in an image and a button and tried both ways.  When you click on the image I want a picture to appear.  I am using this on a map of a building I want to be able to show pictures of what you would see if you were in the building.  The only problem I am running into is that when you click where the picture shows up it will appear.

View 15 Replies

ActionScript 1/2 :: Make A Some Object Or Picture Got To A Color?

Jun 30, 2010

i am VERY new at adobe flash an i am trying to get a layer or a symbol or something (im not sure what the objects in flash are called) to go to a given color does anyone know how to do this? im trying to track motion from a webcam feed with a person wereing a blue colored shirt.

View 14 Replies

ActionScript 3.0 :: Make A Tween To Picture So That It Zooms Out?

Sep 4, 2009

I'm trying to make a tween to a picture so that it zooms out and back in to the center and back. There appears an error of placement depending on z coordinate: the picture moves a little bit towards top-left corner of the stage. How can I make it move to the center of the stage?

View 3 Replies

ActionScript 2.0 :: Make An Eraser Which Will Reveal A Picture?

Aug 20, 2005

get the zip file which will be very helpfull. I made some screenshots in photoshop for help.

1). map jpg: That's the map

2). the map is covered with a black layer

3).the user changes (somehow) the _alpha property (before starting revealing the image) to -let's say- 60% and reveals with the eraser the path of the map up to some point.

4).the user sets the _alpha of the cover back to 100% in order to get the picture shown in the example.

View 2 Replies

ActionScript 2.0 :: Make Text Field With Picture Within?

Jul 23, 2007

how to make text field with picture within like that

pic pic pic | txt txt txt
pic pic pic | txt txt txt
pic pic pic | txt txt txt

[code].....

View 1 Replies

ActionScript 2.0 :: Make A Picture Fade Into The Distance?

Apr 7, 2002

A while ago pom helped me with some script to make a picture fade into the distance. This is the script he gave me

onClipEvent (enterFrame) {
i++ ;
_xscale = _yscale = 100*Math.cos(i/60) ;
}

After seeing "dansflash2001" last weeks site of the week, it got me wondering how did he achieve his button effect. When you clicked on one of his buildings the whole site faded into a miniture version. Then when the small version was clicked it reappeared in it's normal state. I'm probably a mile of with the code pom gave me as it wasn't made for that effect anyway. Does anyone know how to achieve the effect Dan used?

View 7 Replies

ActionScript 1/2 :: Make The Slideshow So That Each Picture Transitions Into Each Other, Instead Of From White?

Jan 8, 2010

Forgetting about my last post: This code currently makes it so each picture will fade from white. What I'm trying to do is make the slideshow so that each picture transitions into each other, instead of from white.
 
p = 0;this.onEnterFrame = function() {    filesize = picture.getBytesTotal();    loaded = picture.getBytesLoaded();    if (picture._alpha<100) {            picture._alpha += 10;        }};[code].....

View 3 Replies

Make An Interactive Picture Scroll With Reflective Floor?

May 17, 2010

I WAS WONDERING HOW TO MAKE AN INTERACTIVE PICTURE VIEWER IN fLASH LIKE WHAT APPLE HAS IN LEOPARD AND SNOW LEOPARD.  FOR EXAMPLE, WHEN THE PICTURE IS IN FRONT OF YOU AND YOU CAN SEE OTHER PICTURES BESIDE IT BUT THEY ARE FURTHER AWAY AND YOU CAN SEE THE REFLECTION ON THE FLOOR OF IT  IS THIS A POSSIBILITY IN fLASH?

View 2 Replies

ActionScript 2.0 :: Make Visible The Webcam's Picture On The Stage?

Aug 18, 2009

I have problems with webcam streaming in AS2. In AS3 I can make it visible on stage with a Camera.get call and a Video object. Because of some reasons in one of my works I have to use AS2. Can anyone provide me a working code to make visible the webcam's picture on the stage? I use the following code, but it doesn't work:

var cam = Camera.get();
//it's okay I can see the real camera name in the name property
var vid:Video;
vid.attachVideo(cam);
//... and nothing happens on the stage Why?
trace(vid) returns "undefined" Why?

View 0 Replies

ActionScript 2.0 :: Make Picture Fade After Interval Completes?

Sep 30, 2009

I want the part labeled fade to happen after the interval completes. Right now it does it right away.[code]...

View 1 Replies

Make Game Keep Picture Quality When Browser Resized?

Sep 6, 2011

How do I make my flash game keep picture quality when browser is resized.I built a flash game combining using actionscript and whenever the player or browser is resized it loses quality. This really annoys me...Is there a way so, if the browser for example is made smaller the game's picture still keeps its display quality

View 1 Replies

ActionScript 3.0 :: Flash - Make A Mask And Apply It To A Picture

Aug 12, 2010

im going crazy with the simple matherfather task. i want to make a mask and applay it to a picture but i need to do it in actionsript. so what i do is create all necessery objs. at stage, acces them in class. set movie's clip mask and it's working but not the way i want. i want to have empty hole inside of mask which is a movie clip. that is not possible until i make a empty hole connected to the edge of mask with empty space. only then its showin the empty hole (and the connecting empty space aswell and) [URL]

View 3 Replies

Professional :: Make Lines In A Picture Uniform Width (stroke)?

Jan 3, 2011

Pretty much said it in the title. I have drawn a cartoon in flash (cs4) and because of zooming in and out my lines are different widths (thicknesses?)

Is there any way I can select the entire image (just lines) and somehow "uniform" them?

View 1 Replies

Professional :: Make Use Of A Bitmap Picture, Size 1920 X 1080?

Feb 23, 2011

I make use of a bitmap picture, size 1920 x 1080, as my stage background.  That image never moves ... well I may add mask to it later on, I'm not sure yet.

Nonetheless, since it is static, is it a good idea to cache it as bitmap? is it only for vector artworks?

View 1 Replies

ActionScript 1/2 :: Make MC (picture) Transition Each Time A New Photo Is Called

Jul 2, 2011

I've been trying to figure out a way to add a transition script to my existing AS2 code so I can make my MC (picture) transition each time a new photo is called. Using Flash CS4 and calling images through an XML document. The code works perfectly right now, except it only uses the "fade alpha" technique as an image transition. I need to use a different transition method. I prefer something a little funky if possible, but ultimately I need something like the built in "Blinds" compnent to work. Here is the current code:

[Code]...

View 13 Replies

ActionScript 2.0 :: Make A Space In Dreamweaver Where People Upload A Picture?

Feb 4, 2009

I want to make a space in dreamweaver where people can upload a picture, the picture then stays there for that particular person as ,lets say for example a 'cookie', can i make this in flash sing as2 or can i do it in dreamweaver, i have added a simple picture showing what i would like.

View 0 Replies

Professional :: Static Picture Of The Button?

Jun 10, 2011

I have some problems with editing my flash file. Currently, I have a small flash application  in a folder, containing various kinds of files such as AS, SWF, FLA, HTML. What I want to do is to change the text inside one of the buttons in the application. After doing some reasearching, I realized that I should probably make some changes to the FLA file(Quiz.fla for example) since Quiz.fla is the only FLA file in the folder. Therefore, I opened it using Adobe Flash CS5.5, what what I found out is that the Quiz.fla file  is really different from other FLA files. It only shows a plain background when I open it, without showing the actual interface of the flash application. It does contain all the buttons and contants under the Library section on the right side of Adobe Flash . When I try to change the text inside the button then save-publish, the newly published SWF file  would just be a static picture of the button I've changed and everything else is gone.

View 7 Replies

ActionScript 3.0 :: How To Turn A Picture Into A Button

Mar 14, 2011

I'm working on this app and I can't figure out how to turn an image into a button, and I can't figure what type of image does it need to be(PNG/JPEG, or something else). Also I'm using flash builder. e I can't find anything about this on the internet.

View 2 Replies

ActionScript 2.0 :: Make Flash Game Keep Picture Quality When Browser Resized

Sep 5, 2011

How do I make my flash game keep picture quality when browser is resized.I built a flash game combining using actionscript and whenever the player or browser is resized it loses quality.Is there a way so, if the browser for example is made smaller the game's picture still keeps its display quality

View 4 Replies

ActionScript 2.0 :: Make Xml Gallery That Dynamically Resizes According To The Picture's Width And Height?

Oct 9, 2007

i am trying to make this xml gallery that dynamically resizes according to the picture's width & height. the function resizer() is hardcoded with fix values. i have tried to assign it from the array like below but it works wierd, the border just keep increasing in size.

Code:
menuHolder["but"+i].onRelease = function() {
imageLoader.loadClip(this.path,gallery.imageHolder);
gallery.imageBorder.tween("_width",this.width,1,"easeOutExpo");

[code]....

View 2 Replies

ActionScript 3.0 :: Make A Frame Around A Picture That The User Uploads Using Only 1 Image Repeating It?

Dec 3, 2010

I am trying to make a frame around a picture that the user uploads using only 1 image repeating it and scaling it accordingly so that it is as big as it should be in reality arround that picture. My problem is that when I scale the result until some point all is well and than it smears somehow. I've been trying to fix this for 6 days now and I am desperate. I am posting the code that I use tho create the frame parts and a picture of the result after I scale it with scaleX and scaleY.

Code:
public class frame_part extends MovieClip {
public function frame_part(duplicationBitmap_org:Bitmap, neede_pcs_num_height:Number, order:String, rotation_num:int) {
super();

[code]....

P.S. The image that I use for the frame is 400x500 px and is duplicated 208 times.

View 4 Replies

Scroll A Cursor Over An Object/picture/button?

May 18, 2009

i'm going to be workin on a simple website. i need to be able to scroll a cursor over an object/picure/button/whatever and have it change to what i desire when the cursor is over it. is there some simple code to do that or a tutorial to show me how?

View 3 Replies







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