Could Someone Tell Me How To Make This As2 Compatible?
hi guys,
I've just written some very basic code that plays a movie clip when you over over it...
however the code is cs3 and it wont work and i dont know any cs2 so if someone could tell me how to get it going that'd be great
Code:
function topOver(evt:Event):void
{
berd_spot1.gotoAndPlay(2);
}
berd_spot1.addEventListener(MouseEvent.ROLL_OVER, topOver);
alternatively, if you know a better way to do it that'd be great - i have three parts of a flash pres, that when you however over them play a sound after a set time delay (5 seconds say) - at the moments its set up with three sepearate transparent movie clips with the sound file on the timline after the set delay...
i KNOW there would be much nicer AS way of doing it could anyone advise?
FlashKit > Flash Help > Flash ActionScript
Posted on: 11-12-2007, 10:00 AM
View Complete Forum Thread with Replies
Sponsored Links:
How Do I Make This Paypal Form Compatible With Flash?
Hi all-- I tried searching around for the answer on both this forum and on google, but couldn't find an option that worked. I'd like to attach this form to a button in flash:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="artfly@speakeasy.net">
<input type="hidden" name="item_name" value="Artemis Gravity Donation">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="tax" value="0">
<input type="image" src="link.jpg" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
What kind of code would I use for it? Thanks!
View Replies !
View Related
How To Make A Flash 8 Website Backwards Compatible
Hi,
I've designed a website in Flash 8 and I need to embed it as an swf or flash object so that it runs with Flash Player 6 and up. Changing the Flash version parameter in the SWFObject function call doesn't work:
var so = new SWFObject("movie.swf", "mymovie", "200", "100", "6", "#336699");
with this call, the flashcontent value is displayed (prompts user to download latest version of Flash plug-in).
Any ideas on how to do this?
View Replies !
View Related
PC And MAC Compatible
Eyyyy Guys!
If I will make a flash based interactive cd-rom, Is there anyway can I make my .swf, .fla, .exe file to be a pc compatible and a mac compatible all in one? or is there any software or flash plug-ins that can work this out?
Help meeeeeeeeeeehhhhhhhhhh!!!!
D'Durns
View Replies !
View Related
Fla. Not Compatible For MX
Hi all,
Can anyone make the attached file (ray of light fla movie) compatible with MX. It was made with Flash 4 and when i try to make changes in Flash i am unable to...it brings up all soughts of errors.
If anyone has Flash 4 or 5, would it be possible to make it compatible for Flash MX?
Cheers,
suzy
View Replies !
View Related
Fla. Not Compatible For MX
Hi all,
Can anyone make the attached file (ray of light fla movie) compatible with MX. It was made with Flash 4 and when i try to make changes in Flash i am unable to...it brings up all soughts of errors.
If anyone has Flash 4 or 5, would it be possible to make it compatible for Flash MX?
Cheers,
suzy
View Replies !
View Related
Compatible
I was wondering if anyone uses a Wacom Tablet to draw in Flash MX. I'm working on a Mac OSX Panther and was thinking about getting a Tablet. Anyone have any good or bad experiences?
Thanks
Jay
View Replies !
View Related
Compatible Cd-rom
hello,
i am creating a cd-rom that i want to be, mostly, compatible with pcs and macs that may or may not have flash loaded. in the root folder i have an .inf file, the flash.exe main movie, an .swf that loads at some point, some folders for text etc., and the two flash-shockwave installers as well. what do i do to make the flash movie autorun the installers if necessary. does it automatically search the root folder. i received the license from macromedia to use them, but found little help with how. also, what should i include on the cd cover as far as instructions and requirements, do you guys know a link to some generic or universal text for that? thanks in advance for any help.
randy
View Replies !
View Related
[CS3] Compatible
hey guys i made a html site and include a flash menu.now it works fine at my house but some clients are complaining that it is not showing at all the flash menu?is there a way to make it compatible with oll flash versions?cause i noticed if you don't have flash player 9 it does not work...
View Replies !
View Related
Flash 4 Compatible
i'm trying to do some tweening with script (the catch is it needs to be fla 4)
this is what i have gotten to work in 5
_root.MC._x = _root.MC._x+((_root.goalx-_root.MC._x)/n);
goal is defined as a # in the first frame of the MC then is changed by a button...(_root.goalx = 918
really need to make it work in flash 4
View Replies !
View Related
Form Needs To Be F5 Compatible
We are creating a product demo and the output needs to be in F5 rather than MX. We need CHECK BOXES in our form which available as components in MX but you cant export out the movie as a F5 and get them to work.
So, I am looking for a solution. What we really want to do is create a movie clip that when you click on it it puts in a check mark and then somehow ( this is where we need the help ) it tells the form that the "Request more information" was checked.
Everything else about the form works fine...just using SendMail to process.
View Replies !
View Related
Compatible Flash 5
Hello i have a function that must work on flash 5
Anybody could help me converting this function :
function Deplacement(obj, xt, yt, xscale, yscale, s)
{
obj.onEnterFrame = function()
{
this._x += (xt-this._x)/s;
this._y += (yt-this._y)/s;
this._xscale += (xscale-this._xscale)/s;
this._yscale += (yscale-this._yscale)/s;
if (Math.abs(xt-this._x)<.05 && Math.abs(yt-this._y)<.05 && Math.abs(yscale-this._yscale)<.05 && Math.abs(xscale-this._xscale)<.05) {
this._x = xt;
this._y = yt;
this._xscale = xscale;
this._yscale = yscale;
delete this.onEnterFrame;
}
};
}
View Replies !
View Related
Font Compatible
Hello,
This is a really newbie question, but I installed a font and i'm putting it into a dynamic text box in flash.
However, when i view it with a computer which doesn't have that font installed it uses it in times new roman, how can i make it so everyone see's the font i wanted?
Danny
View Replies !
View Related
Are .FLAs Compatible With The GPL?
Since .fla is a binary format which requires Macromedia Flash to be read and manipulated, does this then mean that it is impossible to GPL source files for a flash app unless it's solely made up of AS 2.0 classes? I'm not fully into the inner workings of the GPL and I don't read "law language" very well, so I'm just asking if anyone here has any experience with it.
View Replies !
View Related
FLVPlayer Compatible With C#.net 2.0
hi,
Can somebody pls. provide me the link for FLVPlayer which is compatible with c#.net 2.0.
I need to allow users to upload their video files in any valid file frmat like .mov etc. Then convert those uploaded files at runtime into .flv files and then play those flv files using flvpalyer. I need all this functionality.
So, can somebody pls help me.
Thanks,
View Replies !
View Related
BUG(?): FP10, Is Not Compatible 100% With FP9
I just finished a small part of a web site in my HD, and put it online to test it in different screens.
The first thing I noticed was that in a computer with Flash player 10, some sliders (that I had create) was invisible - this would make the site bugged. In flash player 9 the sliders was appearing correctly after the data was load, in both plugin + debug utility.
I uninstalled Flash Player 10 from that computer and installed Flash Player 9. All worked correctly.
To repeat the error, installed again FP10.. and yeap. The sliders never appeared. Uninstall and revert to FP9, all work properly.
I appose temporary the web site without thing that may identify it:
http://web.xvp.gr/bug/
Try it in a browser with FP10, and in one with FP9. In FP9 the sliders will come up after the menus are loaded from the txt files (in future from php files). In FP10 the sliders (for each menu-box) will never be appear... This means that if I had sold that site before the FP10 come out, then in a few months the site would be dead and I'd had problems. Same if I do it now..
Thus this is an important bug - incompatibility, and should fixed ASAP..... although I have no idea why is it happening.
If you think too that it is important, then tell to any offical techician of Adobe to contact with me to share the .fla codes in order to be found the problem, or tell me what should I do... For now the project is frozen... :/
View Replies !
View Related
Vector3d_class.as Not Compatible With As2.0
I'm trying to use particle3d_class.as and vector3d_class.as by Robert Penner for a 3d game.
The problem I have is that when I test/publish the movie for Actionscript 1.0, all works fine. However, when I try Actionscript 2.0 (which I need for other features), I get the following error:
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'sinD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 27: There is no property with the name 'cosD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 31: There is no property with the name 'acosD'.
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'cosD'.
Total ActionScript Errors: 4 Reported Errors: 4
To get around this, I change the following code at vector3d_class.as:
Math.sinD = function (angle) {
return Math.sin (angle * (Math.PI / 180));
};
Math.cosD = function (angle) {
return Math.cos (angle * (Math.PI / 180));
};
Math.acosD = function (ratio) {
return Math.acos (ratio) * (180 / Math.PI);
};
to this:
Math.prototype.sinD = function (angle) {
return Math.sin (angle * (Math.PI / 180));
};
Math.prototype.cosD = function (angle) {
return Math.cos (angle * (Math.PI / 180));
};
Math.prototype.acosD = function (ratio) {
return Math.acos (ratio) * (180 / Math.PI);
};
it solved the problem partially however, got another error:
**Error** Scene=Scene 1, layer=Labels, frame=1:Line 23: There is no property with the name 'cosD'.
Total ActionScript Errors: 1 Reported Errors: 1
Is there a new version of vector3d_class.as and particle3d_class.as that's compatible with as2.0?
or if not, can anyone help with this?
View Replies !
View Related
Flash 4-compatible Preloadeer
I need to put a preloader on a project I'm finishing up in MX, but it needs to work with the 4 plugin. Here's what I've got:
On the main timeline Frame 1:
loaded = getProperty (_root, _framesloaded);
total = getProperty (_root, _totalframes);
percentage = Math.round(loaded/total) *100;
tellTarget (loadedBar){
gotoAndPlay (percentage);
}
Theere is obviously a 100 frame movie clip on the stage called "loadedBar".
On Frame 2 of the main timeline:
if (precentage >= 90) {
gotoAndPlay (4);
} else {
gotoAndPlay (1);
}
The error message I get back is because of the Math.round part...does MX support "int" anymore?
View Replies !
View Related
IE Compatible GetURL In New Browser?
This script on a button to make a new popup window works great in Firefox, but simply won't work in IE. Is there anything I can change in the following script so it will work in IE as well?
I am beginning to think maybe IE's default option is to disable all popups; if that's truly the case, is there other ways around it? I am working on loading a full sized images from a gallery by displaying it in a new window. I didn't want to load it into the flash movie because that would make the movie size huge.
Thanks in advance!
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.mokoloco.com/samples/2d-milk.htm','. m o k o l o c o .','width=420,height=450,left=0,top=0,toolbar=No,l ocation=No,scrollbars=Yes,status=Yes,resizable=Yes ,fullscreen=No'); NewWindow.focus(); screen_height = window.screen.availHeight; screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-(420/2); top_point = parseInt(screen_height/2)-(650/2); setTimeout('NewWindow.moveTo(left_point,top_point) ',100); void(0);");
}
View Replies !
View Related
Mx 2004 & 2002 Not Compatible
Why are Flash mx 2004 & 2002 not compatible?
What do we have to do to share a file asnd work together?
I am trying to work on a project with my sister, and we just cannot
get flash to read the file.
I have mx 2002 on a mac AND a PC and the files open just fine
on both. Why can't she open them?
Do we need a converter?
Help
View Replies !
View Related
Flash 8/mx 2004 Compatible ?
Are the 2 latest releases of flash compatible with a computer tablet?
An example of a computer tablet can be found here : http://www.photographyblog.com/revie...om_intuos3.php
Im thinking of buying this, but i need to know if it will even work with flash.
View Replies !
View Related
UIScrollBar Compatible With Flash 6?
I've been trying to get the UIScrollBar component to work with a dynamic text field in my movie. I was exporting the movie in Flash 6 format, but the scrollbar always appeared blank. Well, I just exported it in Flash 7 format, and now it is working.
Is the UIScrollBar only compatible with Flash 7 and up, or is there a way I can make it work in Flash 6? Just wondering because my entire site is based on a system of modules with Flash 6...
View Replies !
View Related
Slideshow Code Not IE Compatible
G'day everyones.
I can't seem to find a solution to this issue i'm having with different browsers. I have a slide show and it works perfectly fine in Firefox however it doesn't display at all in IE. If anyone knows why this is it would really help me out.
Complete code is below. Actionscript 2.0. Its long and tiresome but I included it anyways.
code:
// set random variables
var randomNum = 0;
var randomNumLast = 0;
var container_mc = this.container;
// load xml file
images_xml = new XML();
images_xml.ignoreWhite = true;
images_xml.onLoad = parse;
images_xml.load("images.xml");
function parse(success) {
if (success) {
imageArray = new Array();
var root = this.firstChild;
_global.numPause = Number(this.firstChild.attributes.timer*1000);
_global.order = this.firstChild.attributes.order;
_global.looping = this.firstChild.attributes.looping;
_global.fadetime = Number(this.firstChild.attributes.fadetime);
_global.xpos = Number(this.firstChild.attributes.xpos);
_global.ypos = Number(this.firstChild.attributes.ypos);
var imageNode = root.lastChild;
var s = 0;
while (imageNode.nodeName != null) {
imageData = new Object();
imageData.path = imageNode.attributes.path;
imageArray[s] = imageData;
imageNode = imageNode.previousSibling;
s++;
}
container_mc._x = _global.xpos;
container_mc._y = _global.ypos;
// parse array
imageArray.reverse();
imageGen(imageArray);
} else {
trace('problem');
}
}
// the transitions
function swapPlace(clip, num) {
eval(clip).swapDepths(eval("container_mc.loader"+n um+"_mc"));
}
function loadImages(data, num) {
if (i == undefined || i == 2) {
i = 2;
createLoader(i,data,num);
i = 1;
} else if (i == 1) {
createLoader(i,data,num);
i = 2;
}
}
function createLoader(i, data, num) {
thisLoader = eval("container_mc.loader"+i+"_mc");
thisLoader._alpha = 0;
thisLoader.loadMovie(data[num].path);
watcher_mc.onEnterFrame = function() {
var picLoaded = thisLoader.getBytesLoaded();
var picBytes = thisLoader.getBytesTotal();
if (isNaN(picBytes) || picBytes<4) {
return;
}
if (picLoaded/picBytes>=1) {
swapPlace("container_mc.loader2_mc",1);
alphaTween = new mx.transitions.Tween(thisLoader, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, _global.fadetime, true);
timerInterval = setInterval(imageGen, _global.numPause, data);
delete this.onEnterFrame;
}
};
}
function imageGen(data) {
if (_global.order == "random") {
// choose random #'s
while (randomNum == randomNumLast) {
randomNum = Math.floor(Math.random()*data.length);
trace(randomNum);
}
loadImages(data,randomNum);
randomNumLast = randomNum;
} else if (_global.order == "sequential") {
if (p == undefined || p == data.length && _global.looping == "yes") {
p = 0;
} else {
break;
}
loadImages(data,p);
p++;
} else {
trace("Yep... you stuffed the XML file'");
}
clearInterval(timerInterval);
}
stop();
View Replies !
View Related
Compatible Cameras For Flash 8?
Hello,
Does anyone know if Adobe has an updated Camera compatibility matrix that lists the cameras compatible for Flash 8?
Also, would it be possible to use a digital camera as a webcam? I am looking for a solution where I can get at least 2+ megapixel output. I am taking a bitmap snapshot from the webcam.
Thanks,
-Dan
View Replies !
View Related
Is My Webcam Compatible With Flash?
Hi!
I´ve got some troubles finding a webcam compatible with flash.
(I need a powerful camera)
I just bought a webcam PYRO 1394 from ADSTECH.
It´s a nice cam, but doesn´t work on flash mx.
and I need to apply the camera with flash indeed!
Now I´m gonna try another one:
AIPTEC POCKET DV3100
does anybody know if this camera works on flash?
I´ve read a macromedia matrix about cameras,
but it didn´t help so much...
http://www.macromedia.com/support/fl...trix.htm<br />
Thanx!
Zerooito
View Replies !
View Related
Is Flash Compatible With HTML 3.2?
I used a text field with the "htmlText" option and tried the use the tag
<sup>...</sup>
which is HTML 3.2 and did not work. when I used
<b>...</b>
which is HTML 2.0 Flash showed the correct properties (namely bold text)
Can anybody tell me if there is an option to use superscript text in textfields with "htmlText" in actionscript code?
Does Flash only work with HTML 2.0 and not with HTML 3.2 or HTML 4.0?
thx
bernd
View Replies !
View Related
Most Compatible Publish Settings
What are the most compatible publish settings, for example, I made mine for Flash 6 and AS 1.0, no r65 optimize, compress is on, and no html stuff or plugin detection.
I was wondering what everyone else uses to keep safely copatible...thanks.
JH
View Replies !
View Related
Compatible Webcams For Flash
I am trying to get a Hercules dualpix webcam to run with the Open University's FlashMeeting.
System is XP, same problem with Firefox or IE as Browser. Flash detects the webcam, but image is very poor quality and jumps around, then system crashes - complete power out shutdown every few minutes.
This looks like a conflict between the webcam software and Flash software.
Has anyone had similar problems with this webcam, or found a way of getting it to work?
I am a university tutor (technology) wanting to recommend webcams to my students.
What webcams work well, out of the box, with Flash 9?
Thanks
View Replies !
View Related
Fullscreen Code Compatible For All?
Hi, Can anyone help me with this fullscreen script... like at http://www.cartier.de once you click the animation in middle, the fullscreen page it launches.. i want to do the same with an 800 x 600 animation i have made. Is there any browsers which wont open this? And what about pop up killers? Will this be viewed by everyone or is their problems with this fullscreener? (apart from the issue of people disliking loosing their desktop)
Also the small white star which moves around the page... how do i do this and make it so smooth? I have tried making a star and then i draw a guide layer and snap to it and do motion tween, but its not as smooth and natural as theirs? Any tips?
View Replies !
View Related
Making Actionscript2 Compatible
on (press, dragOver){
startDrag(_root.1mc);
}
on (release, rollOut, dragOut){
stopDrag();
}
on (press, release, dragOver, dragOut){
_root.x +=2;
_root.1mc.swapDepths(_root.x);
}
this doesnt seem to work in AS2. How would i fix it?
View Replies !
View Related
UIScrollBar Compatible With Flash 6?
I've been trying to get the UIScrollBar component to work with a dynamic text field in my movie. I was exporting the movie in Flash 6 format, but the scrollbar always appeared blank. Well, I just exported it in Flash 7 format, and now it is working. However, I don't want to export any higher than Flash 6.
Is the UIScrollBar only compatible with Flash 7 and up, or is there a way I can make it work in Flash 6? Just wondering because my entire site is based on a system of modules with Flash 6...
View Replies !
View Related
Flash 9 Not Backwards-compatible?
I mistitled the thread because I thought the problem was with the version of flash player, but when I ran my swf locally everything worked fine, so I now know that it's a problem created by making the swf remote. Perhaps an admin could change it to "bitmapdata.draw() doesn't work remotely" if they read this.
www.k4rl.com/flickr/
My swf works fine when I run it locally, but not when I run it from my server!?
When images from flickr are loaded into my swf on k4rl.com, flash doesn't want to bitmapdata.draw(mc) the mc with the image (for the reflection), but this problem is non-existent locally.
Everything is identical, same SWF, same browser... can anyone explain why they behave differently locally and remotely.
View Replies !
View Related
Fullscreen Code Compatible For All?
Hi, Can anyone help me with this fullscreen script... like at http://www.cartier.de once you click the animation in middle, the fullscreen page it launches.. i want to do the same with an 800 x 600 animation i have made. Is there any browsers which wont open this? And what about pop up killers? Will this be viewed by everyone or is their problems with this fullscreener? (apart from the issue of people disliking loosing their desktop)
Also the small white star which moves around the page... how do i do this and make it so smooth? I have tried making a star and then i draw a guide layer and snap to it and do motion tween, but its not as smooth and natural as theirs? Any tips?
View Replies !
View Related
Making Actionscript2 Compatible
on (press, dragOver){
startDrag(_root.1mc);
}
on (release, rollOut, dragOut){
stopDrag();
}
on (press, release, dragOver, dragOut){
_root.x +=2;
_root.1mc.swapDepths(_root.x);
}
this doesnt seem to work in AS2. How would i fix it?
View Replies !
View Related
[f5] Flash 5 Compatible UI Components?
Hey,
can anyone recommend a good drop-down menu or scrolling list box component that would work in Flash 5?
I've just finished building this site for a client using Flash 6 compatible SWFs, and now they decided to get me to convert them to Flash 5. Unfortunately I decided to use some of the Macromedia UI Components for drop-down menus or scrolling list boxes.
So in the interest of saving time, are there readily available components out there or am I going to have to build my own?
View Replies !
View Related
FlashMX2002 Compatible With 2004?
I tried to open a simple file with no script in Flash MX2004 or 2002
Flash MX versions BOTH WAYS did not work.
Is there a way to for two parties to work on a project easily going from 2004
to 2002 or do one of us
have to upgrade or downgrade?
View Replies !
View Related
Latest Player Not Backwards-compatible
Macromedia: SHAME ON YOU!
I've tested my project with flash player version:
6.0.22.0
6.0.23.0
6.0.29.0
6.0.40.0
all of them works, but the latest (newly released) 6.0.47.0 refuses to load my XML-file for some reason. This error only occurs on the web-server. Not within flash itself. (Not even when accessing local webserver).
The only differences between my local server and real server are some pathes.. Could it be that the latest player is more restrictive on security? (Things are loaded from several servers).
Anyway - there is some undocumented change in the latest player that is breaking my project, thus rendering me sleepless...
ideas?
FF
[Edited by fummel_fabrikk on 08-08-2002 at 09:53 PM]
View Replies !
View Related
Flash 4 Compatible Search Form
I've made a cgi search engine which is working fine with the following html form action:
<form method="POST" action="http://URL/cgi-bin/search.cgi" target="contents">
However, I cannot get this to work with my flash search form. I've tried variations on the
following, but no luck:
on (release) {
if (Search eq "") {
gotoAndPlay(3);
} else {
loadVariablesNum("http://URL/cgi-bin/search.cgi", contents, "POST");
}
}
Anyone know how to get my flash form working with a target frame?
View Replies !
View Related
How Do I Check If Browser Is Flash Compatible?
Hello,
I am making a flash site (I am brand new to flash), how do I construct my page to check if the browser accessing it is flash compatible(also flash version compatible.. i use mx so they need flash 6)? I assume I have to construct a page in html(or something else) that will check the users browser, detect compatibility, and then send them to my flash page or to another html page (if this is the case, can someone give me a hint or send me to a link that shows me how to do this). Furthermore, if the user is not compatible, how do I direct them to download flash player? (I am assuming an html page with a link to macromedia)... If there are examples or information on this flashkit.com that explain what I want, you could just send me there and I will figure it out. Thanks a lot... this site is dope and massive.
View Replies !
View Related
Text Field - Flash4 Compatible
I'd really like to make a scrollable text field in MX that would be compatible with flash4+ players. I go to actions, and I choose createTextField (forgot where its at), and I really don't know what its called, but there is like this little pic of a book, and if u click it, it will give you like information and help on the action your using, anyway, it gives an example of a text field, so to save time, i just copied the example and pasted it in the actionscript, and it doesn't work for some damn reason. I don't know if it has to do with having MX instead of a previous version or what. I mean on Macromedia's web site, they list a way how to make a text field with Flash4&5 and MX seperately, and their totally different. So can someone please help me on this, I'd appreciate a detailed explanation ever so.
Also, on MX, the scroll bar that it comes equipped with on the right side (with the button, radio button, etc.), after reading a tutorial on how to make text fields in MX, I get the idea that the scroll bar in MX is only compatible with Flash6 players, is this true? And if it is, could somone please tell if there is a way to make that scroll bar compatible with Flash4&5 players, or another way to make a scroll bar like that (up and down buttons, and scroll thing in middle) without like a 50 line actionscript thing.
Thanks for even reading this jazz, I'd appreciate all the help I can get.
View Replies !
View Related
Making Video Flash5 Compatible
Hi there,
We are trying to create a video and Flash presentation in Flash MX; however we need to make it Flash 5 compatible... does anyone know the best way to do this? Nothing appears to be working properly!!
thanks in advance
Benet
View Replies !
View Related
|