ActionScript 2.0 :: XML Gallery Dynamic Border?
Jun 27, 2005
Just thought I'd see if this is possible with the XML Photo Gallery.1. Is it possible to create a dynamic border for the loaded image depending on the size of the image being loaded? 2. Is it possible to move the Y position of the caption text box depending on the height of the loaded image? ie if the image is 200 pixels high, then the text box should be positioned at 220 pixels.The current code I have which loads the images then automatically scrolls through them is:
Code:
delay = 6000;
// -----------------------
[code].....
View 1 Replies
Similar Posts:
Jul 31, 2005
I have a cool xml gallery designed by Scotty. I was wondering what actionscript could I use to add a gray border around each thumbnail and whenever the user rolls over the thumbnail, the border turns to white? Has anyone done this sort of thing before with an XML gallery? [code]...
View 1 Replies
Oct 23, 2009
I have added 3 staggered backgrounds behind each picture that act as a tri-color border around the image, named borderOuter, borderMiddle, borderInner. When i click on the thumbnail, i would like the border to disappear. [code]...
View 2 Replies
Dec 15, 2005
Currently I am using the gallery that has been posted on a link on Kirupa.com where it uses XML and loads in my case .swfs into a border that resizes according to the size of what is loaded. The reason I am using .swfs is because I plan to somehow make it so that the artwork being loaded can be zoomed in on once they are loaded, how I am not sure quite yet. Anyway, I was wondering if anyone could please tell me why that sometimes the .swfs load once or twice and then when clicking on other artwork thumbnails they do not load at all. THis just happens for the swfs and not when I would use the jpegs instead of swfs. The swfs just do not seem to be loading as planned, sometimes one or two load sometimes none. Was wondering if someone knew why this is happening and could please give me some help if possible, maybe pertaining to actionscript?[code]
View 1 Replies
Jul 20, 2007
get a border onRollOver in my thumbnails gallery. I've tried the photo and thumbnails gallery and played with stringy's files to accomplish this but still haven't been able to get it to work.
View 14 Replies
Feb 3, 2009
I'm have set up a photo gallery using the 'Kirupa Xml and flash gallery tutorial' and I wanted to use this but implement the border resizing function featured in the galleries on in the 'Howd he do this? Resizing slideshow' thread.
Here is the code for my gallery:
Code:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
[Code].....
View 4 Replies
Feb 16, 2007
I'm encountering a weird glitch when I try to use a more complex image border: the image container and the text caption both jump into place at the last moment. A bad effect. All I've done is add two more variables, "w2" and "w3" to the code:
Code:
var w = container._width+spacing, h = container._height+spacing;
var w2 = container._width+space2, h2 = container._height+space2;
var w3 = container._width+space3, h3 = container._height+space3;
border.resizeMe(w, h, id);
border2.resizeMe(w2, h2, id);
border3.resizeMe(w3, h3, id);
The only way I can find to keep the border shapes in correct proportion is to create 3 different border clips and apply the "resizeMe" easing function to each of them.
View 3 Replies
Mar 26, 2004
My question is related to putting a border around an image. I am dynamically loading images from an xml file and they appear as thumbnails. I want to put a 1 or 2 pixel black border around the image when I load it. The problem that I see is that some of the images are portrait and others, landscape. I hope there is a way to do this in AS? I have searched the forum but nothing.
View 3 Replies
Jul 1, 2004
I have a dynamic border with a loader and buttons and whatnot. It works for the most part, but when the images have not loaded on the persons machine before, there is an occasional glitch preventing it from displaying properly(the border shrinks to nothing, the loading bar goes to aobut 10px, etc.)
[Code]...
View 3 Replies
Mar 26, 2004
My question is related to putting a border around an image. I am dynamically loading images from an xml file and they appear as thumbnails. I want to put a 1 or 2 pixel black border around the image when I load it. The problem that I see is that some of the images are portrait and others, landscape.
View 3 Replies
Jul 1, 2004
I have a dynamic border with a loader and buttons and whatnot. It works for the most part, but when the images have not loaded on the persons machine before, there is an occasional glitch preventing it from displaying properly(the border shrinks to nothing, the loading bar goes to aobut 10px, etc.)Here is the gallery thing (only 1 - 11 are uploaded)I assume it's some kind of issue with loading, as in resizing before loading properly or something...but to me the code looks fine. The big problem with this error is it's extremely hard to troubleshoot as i have to upload the SWF, and clear my cache everytime.
View 3 Replies
Feb 12, 2004
Is there a way to set the border of a box to be set in actionscript, as well as set a glow property.I am going to be resizing the box using actionscript so if I have it as an image or in the mc it will be resized and that would be no good.
View 10 Replies
Mar 27, 2012
Im adding video windows to a video object inside mxml file
videoMovie = new Video(120,80);
Now would it be possible to apply a rounded border of 2px on this somehow?
I know you can use
<s:controlBarContent>
<s:Label text="cornerRadius:" />
<s:HSlider id="slider"
[Code]....
On regular objects but cannot find out how to do this with dynamically added ones :(
View 1 Replies
May 2, 2006
Anyone know if there is some actionscript that could draw a border around a movieclip?
View 3 Replies
Jul 24, 2008
I need to know that how to create a border to dynamic MovieClip.
I wanted to give a border to thumbnails which is coming through xml
View 1 Replies
Apr 9, 2004
I have a background with a border that is behind dynamic images. I am trying to resize the background to custom fit each jpg that is loaded. However, I cannot get the width/height from the movieclip the jpgs are loaded into and I can't get the width/height from the jpgs.
Here is what I tried:
setProperty("_root.serve_contents.photo_button.pho to_background_image.subpages.photo_examples_bg", _height, getProperty("examples/photo/event/amcel_medium.jpg", _height));
[Code]....
View 1 Replies
May 25, 2010
I'm using evt.target.borderColor = 0xff00000 to successfully change the color of a dynamic text filed that is the target Now I'm trying to change the border size. borderSize isn't being accepted, so I was wondering if there is an attribute to change the border size of a text field? My internet searches are coming up with nothing that works.
View 1 Replies
Oct 18, 2003
How would I make a dynamic text boxes border a certain color, along with background color.
View 1 Replies
Feb 1, 2004
Here's my latest attempt at rendering a dynamic rectange (w/ width, height, border_width, border_color & background_color) I'm trying to render a dashed border, and can't seem to get the code right...
I've reworked my logic about five times, and can get the dashes to render right (almost) but the fill color disappears. It's rendered using actionscript. You can see the issues if you change the border width... Anyone mind taking a look to see what I'm doing wrong? It seems like the moveTo function isn't behaving right when I get to the end of each line.
[Code]...
View 3 Replies
Apr 14, 2010
I have a skin that's base clas is GraphicRectangularBorderSkin (from degrafa). I'm using it as a panel skin. I'm using Degrafa 3.2, Flex 3.2. It throws a #1502 error (thrown when a script runs too long) every time. If I remove the line changing the em variable, the error goes away.The class is basically (although I paraphrased for the sake of clarity):[code]
View 1 Replies
Jun 15, 2007
im trying to do a dinamic link for my dinamic thumbs gallery. But i dont know how to propagate it. here is my function for my show next button PHP Code:
[Code]...
View 1 Replies
Oct 18, 2003
How would I make a dynamic text boxes border a certain color, along with background color.
View 1 Replies
May 16, 2010
How do I center text in within the border of a multiline Dynamic text field?
View 3 Replies
Feb 3, 2009
create a dynamic gallery or slideshow. I know xml very well but its not enough How can I control xml in flash in slideshow??.
View 1 Replies
Feb 12, 2009
Anybody knows create dynamic photo gallery same as http:[url].....
View 4 Replies
Mar 17, 2009
I'm trying to build a Flash gallery that would load a variable amount of images and create a scrolling gallery, with pop-up previews of each image. Essentially, something like this (left/right scrolling arrows, hovering popup preview) but I want it to be AS3 as that's what I'm focusing on learning. I'm quite new to this and not from a coding background, so pardon my question if it's redundant but I've searched for something non-XML based and couldn't find it. If someone could explain to me why XML-based dynamic galleries are better then perhaps I could convince my web-developer coworkers, but for now they've requested a stand-alone Flash app. We need a generic gallery we can use on various sections of our site.
I really appreciate your help. If the pop-up preview and the dynamic loading are 2 different tutorials, fine by me, I just don't feel I have the knowledge or resources to pull this off on my own yet.
View 1 Replies
Nov 28, 2006
If you take a look at my flash movie you will see that I have draggable movie clips, which contain dynamic text fields. These text fields contain text drawn in from a simple xml document. The problem I have is that the text in the text fields is hedged right next to the border of the autosized text box. This makes them look untidy and in the worst case difficult to read. I wonder how I can add some margin to the left and right of the text to fill in some space.The code which formats the text boxes is:
with (main["dragAct"+i].dragActText) {
text = actText[i+1];
background = true;
[code]....
View 2 Replies
May 11, 2009
Trying to make a dynamic gallery that pulls images (along with names and dimensions) from different folders on the server. Want clients to be able to drop new images into these folders and have them pulled into the gallery dynamically. Do I need to use PHP as I did with AS2? or can AS3 pull the image names and dimensions from the folders on the server?
View 9 Replies
Jul 3, 2008
how to build a dynamic photo gallery with an integrated content managenent system.the only results that i found are concerning a gallery updatable via ftp and modifying the xml file.
View 1 Replies
Jul 16, 2010
I have a dynamic thumbnail gallery that laods thumbnails from db/xml and also each thumbnails associated main image. When the user rolls over the thumbnail the larger image displays to the right.
THis is all working fine however I need to update the script to change the thumbnail gallery layout from a 3 column 2 row gallery to a 4column 4 row gallery.I've adjusted the as and resized the thumbnails to allow for this and setup a 8px spacer between thumbs
[Code]...
View 2 Replies