Dynamic Flash Images Don't Load In Intenet Explorer Until Mouse Over
Has anyone ever seen this behavior before where dynamic flash Images don't load in Internet Explorer until you place the mouse over the flash object? It works fine in Firefox. I am thinking it must be the way I wrote the actionscript. I tested it with and without the javascript wrapper to prevent users from needing to click on the object to activate it.Here's the page to show you an example...http://www.death-by-design.net/product.aspx?c=tshirtsThanks for any leads or information on this issue!-Matt
Adobe > Flash General Discussion
Posted on: 04/06/2007 09:53:52 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Dynamic JPGS, Dynamic Images, Load Image
Just a little not for those who have problems using dynamic loaded jpgs.
If you want to dynamically load some jpgs here is some code I picked up off the forum
Code:
//Step1
createEmptyMovieClip("img",0);
img._visible=false;
//Step2
img.loadMovie("test.jpg");
//Step3
this.onEnterFrame=function(){
BLoaded=img.getBytesLoaded();
BTotal=img.getBytesTotal();
percent=BLoaded/BTotal*100;
//Step4
if(BLoaded == BTotal && BLoaded>0){
img._width=726;
img._height=641;
img._visible=true;
delete this.onEnterFrame;
img._x=0;
img._y=0;
}
}
When you save your JPG in photoshop it gives you a few options for saving your jpg.
1) BASELINE (STANDARD)
2)BASELINE (OPTIMIZED)
3)PROGRESSIVE
It has to be a baseline image, for whatever reason. No clue!
[F8] Odd Flash Load Behavior In Internet Explorer
Have any of you seen this behavior? In firefox it works fine but in Internet explorer the flash images does not load until you move the mouse over the flash. I tested it with and without the javascript wrapped around. It is most likely related to my actionscript.
here is the website
http://www.death-by-design.net/product.aspx?c=tshirts
thanks for any tips,
-matt
Scroll Dynamic Images - On Mouse Move & With Scrollbar [with: F8]
Hi actionscript gurus....
I have an actionscript issue making my head implode!
I want a mouse triggered scrolling image gallery, (mouse left moves the gallery left, mouse right...etc) that bit is fine. above that i want a scrollbar that can control the same gallery of images and their scrolling position.
doesn't sound too complex, but i have a dynamic number of images, so the gallery width is not fixed.... its complex, (in my little mind)!
can anyone help get this damned bar to function? I've got a saw head now!
fla attached
I'd be soo chuffed as i need to get this one out and its completely got me flummoxed.
many many thanks in advance for any help
Trying To Load Dynamic Images
yes i know this has been discussed before but i dont know how to exactly use the information found on the site although im still looking.
i have a main swf that is loading a different jpeg 1-6 in order every 5 or 6 seconds. i want to load these jpegs dynamically as the main swf plays.
Next month ill replace these 6 jpegs and hope they load dynamically on the main swf.
im having trouble doing all this and want to start from scratch (actionscript wise) can anyone help. im a sorta newbie to the actionscript i mean i know wht the script does i just dont know how to write my own yet.
So basically what i want to do is load 6 jpegs externally using variables or any other way that is simple or can be shown to me specifically, and that it wont cache the jpeg images so i can overwrite the image and it get updated on the flash.
please help this is VERY VERY important.
thanks
Load Dynamic Images.
Good day.
Can some one help we to do this. I have images that are buttons, I want to click on one of the buttons and that image is then dynamically loaded into its own window. But not a new browser window. What I need is something like you click on the image and you get a bigger version of that image with the background faded slightly and an option to close the image and carry on viewing the rest on the images and bit like this> http://www.avoca.ie/index1.php
or this one>
http://www.photodrive.eu/
Any help would be great!
Dynamic Images Won't Load
Hi, I had my dynamic images loading fine locally and on the web but then I made some changes to the graphics and reuploaded everything now my dynamic images do not load but it still works locally! Any ideas please?
Dynamic Images Load On Mac Not On Pc
Hi,
I've created a flash movie that loads content dynamically using loadvars. (Actually I set up the flash file and my partner wrote the php). The fla file consists of 5 movieclips. Inside each movieclip is a picHolder movieclip and a dynamic text box. It works fantastic for me on the mac in safari and ie-even mozilla but on the pc we are only seeing one of the dynamic images. We've tested this on multiple machines and still only one of the images will appear, however, the text appears just fine. It's such a wacky thing. Why would it be functioning properly on the mac but not the pc?
Any ideas would be greatly appreciated.
Jen
Problem Getting Flash/Director Animation To Load In Internet Explorer [renamed]
I am SUPER new, so please don't laugh at me...
I have created a VERY simple animation in MX2004 and placed it in an HTML file using Dreamweaver. When I visit it using Mozilla Firefox, it works fine. However, when I visit the site using Internet Explorer, it shows the Macromedia Shockwave "loadin bar looking" screen and never loads and doesn't display the animation. Please help me, I'm dumb! Thanks!
J
Load Dynamic Images (.gifs)
Hi Folks!
Need help! Im developing a dynamic galery in Flash and need to load dynamic Pics (.gifs) on runtime! But this is not working - jpg is no problem but transparent gifs wont load!
Any Ideas???? I know that it is not possible to load .png on runtime - maybe the same with .gifs
I use the loadMovie function - just for Info!
Would be great if somebody can help me!
Visit: www.yellowservers.de
Load Images Dynamic With A Preloader.
Hi. I would like to know how to add a preloader on my picture wiewer. I use the tutorial in the Flash MX Special effects section (Create a photo gallery). When I press the next button I want a loader bar to appear but I dont know where I should add it?
Anyone who knows?? I want it to look like the ones on http://www.b7ven.com
Thanks..
AS 2 Dynamic Load Images From Filelist And...
create a gallery. Does anyone know of some resources for this. I've had a look around but I can't find one piece of the jigsaw: the way to look into a folder and add a MC with the thumb in it etc.
Anyone care to point me in the right direction?
Thanks
Sarah
Load Dynamic Images As Thumbnails...
Hi,
can anyone help me???? in building an application where we can load images from xml into flash movie as thumbnails and on click of the thumbnails the image enlarge.
Or atleast help me in loading images into a movieclip with scroll bar.
thankyou in advance.
Dynamic Array Gneration&load Images(MX Example)
Here the code , and it's been done in Flash MX:
//Prepare data
//number of question
dArray = new Array();
//right question number
cArray = new Array();
tempArrayLength = Number(qLength);
tempArrayCorect = cString;
for (i=0; i<tempArrayLength; i++) {
dArray[i] = i+1;
cArray[i] = Number(tempArrayCorect.charAt(i));
}
stop();
Let me explain :qLength is the number been loaded with loadVariables ,and cSting is a long number string 112323232321 , loaded also with loadVariables .
Now , when i run it in debugger , it's works fine , but on regular run - no , it's not running .
The second question is about my try to load images inside the movie using as an example a sample of loadimages from MX samples .As i understand/misunderstand that it works only as movieClip action ?
Can i call it independent of movieClip events ?
Or can anyone suggest a way to load images ?
TIA,
Muad'Dim
Load Dynamic Images With Different File Names
I'm working on a project where people can upload their own images that are then inserted into a MC. With Generator it was easy as I just used a {insert jpeg} variable. What is the equivalent in Flash MX?
Any One Fancy A Dynamic Load Images Script
Hi all,
I'm in the process of making myself a new website, and I've wrote this script and at the end found I've went about my problem all wrong and i have no need for what i've made.. So i'd thought i'd post it here .. if any one has any improvements then please hack away..
the script will load an external set of variables from either a php file or a txt file.. in this example the variables are..
Code:
&totalart=2 -- This indactes total number of items...
&canvid0=1
&thumbsrc0=thumb.jpg
&xpos0=10
&ypos0=10
&canvid1=2
&thumbsrc1=thumbone.jpg
&xpos1=300
&ypos1=10
I've only used two here but you could use a php script to get the variables out of a database and format them so flash will see them..
and here's the flash actionscript to handle the loaded variables and create images on the stage positioned using the x and y cords
Code:
/// Imoprt transitions and filters Classes
import flash.filters.DropShadowFilter;
import mx.transitions.*;
import mx.transitions.easing.*;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Load canavs in room fron db
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadRoomVars() {
var myLoadVars:LoadVars = new LoadVars();
// start up a loadVars object
myLoadVars.onLoad = function() {
var container:MovieClip = setUpContainer(this.thumbsrc0, this.xpos0, this.ypos0);
var ln:Number = this.totalart;
var spacer:Number = 1;
var duplicate:MovieClip;
var loadedart = new Array();
for (var i:Number = 0; i<ln; i++) {
loadedart["canvid"+i] = this["canvid"+i];
loadedart["thumbsrc"+i] = this["thumbsrc"+i];
loadedart["xpos"+i] = this["xpos"+i];
loadedart["ypos"+i] = this["ypos"+i];
}
for (var i:Number = 1; i<ln; i++) {
var newY = loadedart["ypos"+i];
var newX = loadedart["xpos"+i];
duplicate = container.duplicateMovieClip("clip-"+i, i, {_y:newY, _x:newX});
loadThumb(loadedart["thumbsrc"+i], "clip-"+i);
}
};
myLoadVars.load("variables.txt");
}
loadRoomVars();
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Set-Up container movie clip and pass first variables
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function setUpContainer(thumbsrc, xpos, ypos):MovieClip {
var mc:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());
container._x = xpos;
container._y = ypos;
loadThumb(thumbsrc, container);
return mc;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Load thumbmials into MC's
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function loadThumb(thumbsrc, holderMC, maskMC) {
var tblListener:Object = new Object();
tblListener.onLoadInit = function(target_mc:MovieClip) {
var dropShadow:DropShadowFilter = new DropShadowFilter(6, 125, 0x000000, 0.15, 16, 16, 4, 3);
target_mc.filters = [dropShadow];
};
var thb_mcl:MovieClipLoader = new MovieClipLoader();
thb_mcl.addListener(tblListener);
thb_mcl.loadClip("images/"+thumbsrc, holderMC);
}
Xml Pics Into Dynamic Movieclips... To Load Images...?
Can anyone help me please...I'm new to xml and flash integration.... so please bear with me!
I'm calling in images from xml like so....
Code:
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
The image paths are appearing in the output window via a trace. So that bit works.
I cant get them to load into the movieclips generated to hold them.
Code:
while (Number(n)<_root.no_ofpics) {
n = Number(n)+1;
bn = "button" add n;
duplicateMovieClip("button", bn, n);
setProperty(bn, _x, Number(getProperty(bn, _x))+Number(n*(getProperty(bn, _width)-12)));
//for (var i = picsroot.firstChild; i != null; i=i.nextSibling) {
bn = attachMovie (bn add ".n", "bn" + count, depth ++, {} );
somehow...load images!?!
How should i be expressing the load in this case?
bn[n].loadMovie.image[i];
or
"bn" + count.loadMovie(image[i]);
or even
loadMovie("images/image"+n+".jpg", bn add ".blank" );
or similar?!?
this is bending my brain!
No Matter What I Do, Images Wont Load Into My Dynamic Textbox
Hello all,
I have been searching these forums and online for 2 days now and I have finally broken down and posted a new thread.
Please, I am using Flash MX 2004 Professional.
I have the textbox on the main timeline with an instance name of "mediatxt" and the "render text as html" option selected. As far as the code it is on the main timeline in the actions layer and it is as follows:
ActionScript Code:
text_md = new LoadVars()
text_md.onLoad = function ()
{
_level0.mediatxt.htmltext = this.mediatxt;
}
text_md.load("Media.txt");
stop();
The html loads fine, no images appear!
Does anyone know why I cant load external images into a dynamic text field?
Thank you in advance,
Xman 51
Dynamic Load Of Images In To Established Timeline Effect
Is it possible to dynamicly load images in to an already established timeline effect?
Steps I've done.
Stuffed a JPG in to the library by draging and dropping it in to the SWFs library.
Dropped the JPG on to the main stage
Right clicked the image then going down to Timeline effects and choosing an effect.
Completing any changes in effects dialogue box and then clicking OK.
Play the movie, and pat myself on the back that it worked.
So then, how can I get Actionscript to load an image dynamically in to that same Timeline effect and have it do the effect to that instead of the one found in the library?
I'm using Flash MX Professional 2004.
Load Movie With Formatted Dynamic Text (only Displays Images)
hi, i made a movie called clases.swf that contains a dynamic text(that contains images), and it works perfect, but when i load it into a main swf called arte.swf, it only displays the images without text.
here is the code of clases.swf
var format = new TextField.StyleSheet();
var path = "estilo.css";
format.load(path);
format.onLoad = function(loaded) {
if (loaded) {
my_txt.styleSheet = format;
myLoadVar = new LoadVars ();
myLoadVar.load("clases.php")
myLoadVar.onLoad = function (success){
if (success == true) {
my_txt.variable = "texto"
my_txt.htmlText=myLoadVar.texto;
}
}
} else {
my_txt.text = "Error loading CSS file!";
}
};
how do i modify the code to load the dynamic text on the new invisible movie on arte.swf (on the main swf)???
please i need help urgently!!!!!!
Internet Explorer And Flash - Freakin Explorer Bar
Okay, I'm pretty new at with Flash, and the whole actionscript/xml/xhtml stuff. When I upload my .swf to the web, I always get that explorer bar dropping bombs everytime I open the page. And I get it on just about every computer. Is there a special embed tag or some trick I'm missing to make that thing go away. Also, why do some sites automatically focus and others not. How do I do that?
Replacing Flash Images With Dynamic Images [please Help]
Ok, I created some flash applets doing some image effects..
like fading between 2 images and so on...
lets take that one.. it is simple..
there are 2 images and in the timeline they fade into each other in a never ending loop.
Now what I want to do.. and where I am stuck.. is the following:
I want the "applet" to work as before, but.. if there are images in the same folder, to load the images and use them instead of the embedded ones.
Actually replacing dynamically the internal images
I think there is no problem achieving the second part..(if they exist) but i'm stuck in loading the images.
I tried loadMovie and loadMovieNum.. but the best I achieved was overlaying right at the beginning but then just for one loop.
Any help would be appreciated
Luciano
Swf Won't Load In Explorer
I am testing a movie and it loads fine in opera and netscape and firefox but when with explorer the preloader does not come up, only an empty space. Even if I type in a direct route to the swf such as http://mysite.com/introvideo.swf nothing happens. All the other browsers work fine. Any ideas what is causing this?
thanks.
Ie Explorer Will Not Load Thumbnails Correctly
sorry to bother you all with this, yet again, but nobody seems to have an answer...In mozilla, the thumbnails on my site work fine. But in IE , they do not scale. Any thoughts on why that is? The photos load from an XML file. each "gallery" is it's own swf, on _level1....the loader for main images is working fine in all browsers. Any help to resolve this annoying piece would be great.
www.foldedmap.com ...click "recent" for an example of the above problem
Scene Won't Load In Internet Explorer, Only In The .swf
Hey everyone:
I'm in a bit of a bind here. My site performs drastically different when it is run in Test Movie (.swf) and when it is run through Internet Explorer.
It has 3 scenes in the following order and no externally loaded .swfs:
Scene 2 (Preloader)
Scene 3 (Intro)
Scene 1 (Content - I originally began with this one but later added the Preloader & Intro)
When I test the movie from Flash CS3 or run the exported .swf, it runs through with no problems. However, as soon as I export it and run it in Internet explorer through .html file, it will only load the preloader, which then transitions to the intro, and then I get a white screen for Scene 3. I cannot get the main content scene to play at all.
It seems the problem starts with the code to embed the .swf into the .html page. If I run the .swf through internet explorer, it is fine, but then it expands to fill the whole page. I think it wouldn't be wise to run just the .swf online.
I would greatly appreciate any help in this manner!
Thank you,
Adam
*** Solution listed below
Load Asp Into Flash& Load Content From Hyperlink Into Same DYNAMIC TEXT BLOCK
i'm trying to load content from database into my flash SWF. asp scripts call the info from server to render pages as HTML FRAMES at the moment. there are also hyper links on the HTML rendered pages that i want to work still, and call the content into the same page...or in my case same SWF file. is there a way to do this, as i have gotten it to load the content into the SWF, and pressing the hyperlink it opens the content, but in another browser window......however i want it to load into the same DYNAMIC TEXT FIELD.
anyone with suggestions??????
please help
Load Asp Into Flash& Load Content From Hyperlink Into Same DYNAMIC TEXT BLOCK
i'm trying to load content from database into my flash SWF. asp scripts call the info from server to render pages as HTML FRAMES at the moment. there are also hyper links on the HTML rendered pages that i want to work still, and call the content into the same page...or in my case same SWF file. is there a way to do this, as i have gotten it to load the content into the SWF, and pressing the hyperlink it opens the content, but in another browser window......however i want it to load into the same DYNAMIC TEXT FIELD.
anyone with suggestions??????
please help
Monitoring Load Movie In Internet Explorer ...
Hi,
Does anyone know if you can monitor .swf's that are loaded into a .swf in internet explorer?
E.g. you can see the status bar loading the main flash interface, but if another .swf is loaded into the interface using load movie, can you monitor its download progress in IE?
Any ideas would be great
Thanks
Tim
Load Movie Based On Explorer Address?
Hi!
I've got a question for all of you FLASH-masters out there.
I'm currently working on a website, based on ASP and a database. It loads the content on the page from a database.
Now to the problem. I've got a flash menu/image viewer at the top of the page. ( ex. When I klick on "About" the menu/movie clip shows an "About" image). The problem is that the website is based on only ONE page (default.asp) So, whenever I klick on a link, let's say "About" the page reloads and the About page is shown, BUT! the flash menu/movie is reloaded and moves back to the start of the timeline ( In this case the "welcome" image).
My question is: Is there a way to tell what part of the movie clip to be shown based on the explorer address, or is there another way around this problem?
I don't want to use frames on my website because then the scroller is "miss placed".
I hope I have explaind my problem fairly well, so you all can understan what the h*ll I'm talking about.
Thank you!
Jpegs Wont Load With Internet Explorer
Hi, I am currently programing my portfolio site and I have tried a couple different ways of loading Jpegs from an images folder into an empty movie clip. Both worked sucessfully everywhere but PCs, which I hear are kind of important. First I tried the basic LoadMovie ("jpegmane.jpg", movieclip_mc) and that was unsuccessful. Next I tried the following code:
ink_mc.cacheAsBitmap = true;
mask_mc.cacheAsBitmap = true;
ink_mc.setMask("mask_mc");
var loader:MovieClipLoader = new MovieClipLoader();
var listener:Object = new Object();
listener.onLoadComplete = function(target:MovieClip) {
trace("LOAD COMPLETE");
target._parent.load_text._alpha = 0;
//target._parent.play();
}
listener.onLoadProgress = function(target:MovieClip, bL:Number, bT:Number) {
trace("PROGRESS: " + (bL / bT) * 100);
}
loader.addListener(listener);
print_btns.print1.onRelease = function() {
loader.loadClip("images/print_philroy.jpg", content_mc);
_root.ink_mc._alpha = 0;
_root.gotoAndStop("print");
}
I haven't had any problems like this before with PCs. Any suggestions out there?
THanks in advance.
Brandon
How To Load Images Into Flash?
Hi all,
I am wondering if and how I can load images into flash. *I know how to load additional swf movies but
now sure how to do it with images like jpegs or gifs. *The loadMovie command doesn't work. *Let's say
I have a movie clip and I want it to load an image from somewhere, let's say a CD? both files will be
on CD. how do I do that? Thanks for your help.
I tried using XMLload like this:
picture.load(image12.jpg);
where picture is my movie clip instance name and image12.jpg is my image that I try to load.
and it didn't work out.
Load Images In Flash With XML
Hi everyone
I have to show the list of images on the main page of my client's site, As swf will be heavy if i bring all images in it and will take time to load, i need to load them with XML so that each image load one by one and display accordingly.
Can anyone help me in that please??
Would really appreciate it, Thanks
Fahad.
Here is teh example : http://www.imgaladari.com/
Xml Load Images In Flash
http://hansonrunsvold.com/new/
The top is flash. The images should load into the frame though xml. This works locally, I can't get it to work on the server.
index.htm is in the root, the scripts are in /scripts and the swf., xml and images are in /flash.
Why aren't the images linking when it's uploaded?
Flash Load Images
Hi.
I've greated a Flash file that needs to load some pictures which it gets the details for from php.
There's a fixed background and I created a content_mc with a preloader.. here's where I run in to trouble..
I can get the the loader layer working fine. but somehow I can't get the actionscript to get the php details and load the images on start.
Code:
content_mc.loadMovie("http://site.com/img1.jpg");
this.onEnterFrame() = function()
{
var totalBytes = content_mc.getBytesTotal();
var currentBytes = content_mc.getBytesLoaded();
var currentPercent = currentBytes / totalBytes;
var barLocation = Math.round(currentPercent * 100);
this.loadBar_mc.gotoAndStop(barLocation);
}
question2 how do I get flash to read my variables from php.
I've created a php file that has an array and prints the array on a new line (so for each picture a new line)
how can I have flash show each picture for xx seconds and continue to the next)
thanks in advance.
Load Many Images To Flash
Hi,
Can someone please show me how to load many images and display them in flash?
loadMovie overwrite the previous one; therefore only the last one is shown at the end.
I'm using flash 8 pro. Thanks.
Using XML To Load Images Into Flash
Ok this is my first post so ill make it a good one
problem:
I want to be able to load 3 external images into flash using xml. perferably i would like to load them into an empty movie clip. I want each image to fade in, fade out and some blur and advanced color effects insdie that movie clip. for example image 1 first loads on timeline, fade in, fade out, blur, some color adjustment then fade out. The second image fade in, fade out, blur etc etc. Image 3 loads after image 2 is finished and same effects etc etc.
Currently I have this done with the images embedded into flash.
Questions:
I know how to load an xml doc into flash using text and images but I dont know the following:
1. Do I use an empty movie clip to load the images
2. How do i get the effects to work and repeat for each image on that empty movie clip timeline
3. im tweening these images i.e. fade in fade out i know you can use alpha in actionscript but im also using some other effects like blur, advanced color effects do i have to code all thee effects now using actionscript or is there away to using my tween settings on the imported images?
Ok I think i explained well enogh any direction would be great!!
Thanks
neuro
Dynamically Load Images In Flash 5?
I love the new feature of dynamically loading images with MX and was wondering if anyone has found a way to do it in 5. I am thanking anyone in advance for a reply.
Flash Load Images By Loadmovie
Hi.
I can load images into movieclips, i`m using the loadmovie action.
it works. but NOT always...
i think it happens cause the image wasn`t loaded in time.
i tried a infinite loop between two frames that try to load the image in on enterframe of the mc.
Sometimes the image is a small one, so the cause isn`t always the size of the jpg.
the image url is loaded from database trough a variable in a php page that is called in first root frame.
the image is loading after 12 frames (1 second).
how can i do to make the images always be loaded?
thanks.
Load Images With XML Into Flash Movie
Hi gus,
I would be so thankfull if you help me with this little problem I have.
in my server, I have a folder named "IMG" and there are 10 jpg files in it. I need my flash movie to load these 10 files and put them in appropriate x,y positions.
I'm sure that i need an xml file to load the images into the flash movie but I don't know how to do it.
Please help me
Regards,
Hadi
Flash Causing Images Not To Load?
I am trying to put some flash on a page and for some reason the flash is causing images not to load. It is like flash loads and then the images time out.
I am trying to use a preloader (PHP) to load the images in the browsers cache, but there are just too many and that causes serious delays.
I am new to flash and was wondering if there is anything that I can do to make flash load last. Or any other suggestions would help
Thanks
Dakno
Load Text/images Onto Flash App
hey..
ive looked thru a couple of examples and tutorials on loading stuff into flash. but im not sure how would i do mine yet... here's the scenario
in my flash app, i have 2 links: Home and Form. so home is where the inserted data's gonna be at, and Form is where the form to insert text and picture (something like avatar)
there won't be any PHP or 3rd party scripting needed right? by right i could just erm erm.. wehn pressed, Submit (in Form)... make the text go to show_text (in Home).. and the avatar uploaded from Local PC (can that be done) be inserted into the show_image (with specific size n measurement)
am i getting the picture or am i just completely assuming? ehe..
thanks for further help...
|