Email Attachments
I have built a movie and want to attach it to the body of my email to friends. I want the movie to play as well when the email is opened. How do I do this or can it even be done?
Thank you in advance for your help
FlashKit > Flash Help > Flash Newbies
Posted on: 01-15-2002, 08:36 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Sending Email Attachments
This is actually flash and PHP question so I am going to post it in both threads. How would I send an email attachment from flash through PHP?
I have a contact form on my flash site that loads the variables from my form movieclip and sends them to a formmail script which outputs it from there.
Without changing too much around, how could I do this?
Email E-card (with Swf Attachments)
my client has something really complicated in mind. an e-card.
1. people draw something in flash and also type some message;
2. save swf
3. send to reciever via email with the ecard created by sender
does anyone got any clue, I need to get it done within a week. thanks a lot for your help.
Add Attachments?
Is there any components or tutorials etc... that allow end users to add attachments to forms in flash?
Has this been done before?
Hope you can help.
D
Linkage And Attachments
I'm building a photo gallery
after the user choose a pic a prepared MC should be loaded in an empty MC at the root
called 'trgt'.
In the library I choosed linkage-->export to action script for the prepared MC and
Identifyed it as 'final'.
what would be the action to assign 'final' into _root.trgt???
thanks
Form Attachments
I am setting up an email form in Flash and want to add an attachment button/facility. Is there anyway to do this in Flash?
Please help.
Emailing Attachments
At the moment I'm using FormMail.pl to send emails from Flash but my client wants to be able to send attachments (ie: images) through Flash aswel
Is there a straight forward way of doing this? Or is it not worth the hassle?
Cheers
Creating Files With Attachments
Heres what I am trying/want to do.
Have a sort of form in flash which based on it's contents produces an HTML file(which I believe can only be done by using php/cgi etc...). When the user clicks the 'submit' button the file is created in a directory based on the documents name, and in the directory is obviously the document itself.
Heres the twist, on the 'form' I also want an 'attachment' button so that if the document has any hyperlinks to files which would sit in the same directory as the document the 'attachments' button would copy/create these files at the same time as the document.
Can this be done in flash or does anyone have an example.
Also, I could do with some help on creating the HTML file also.
Many Thanks in Advance.
Rhys.
Is It Possible To Join NewClip Attachments
i'm making a catch game such as can be found at http://www.mathplayground.com/multiples.html
the code i'm using right now has drop1 falling as i want it to, and drop2 does appear, but it will not repeat, as the coding suggests it should. is there a way to put the newClip in one section, or link it together, so that both drop1 and drop2 will continue to fall, at the same interval.
here is the coding i'm using
Code:
StageWidth = 550;
StageHeight = 400;
var num:Number;
function moveStuff() {
if (Key.isDown(Key.LEFT)) {
this._x -= this.speed;
}
if (Key.isDown(Key.RIGHT)) {
this._x += this.speed;
}
if (this._x>StageWidth+(this._width/2)) {
this._x = 0-(this._width/2);
}
if (this._x<0-(this._width/2)) {
this._x = StageWidth+(this._width/2);
}
if (this._y>StageHeight+(this._height/2)) {
this._y = 0-(this._height/2);
}
if (this._y<0-(this._height/2)) {
this._y = StageHeight+(this._height/2);
}
}
girl_mc.speed = 13;
girl_mc.onEnterFrame = moveStuff;
watchKeyBoard = new Object();
watchKeyBoard.onKeyDown = function() {
trace("a key is pressed. the key that is pressed is "+Key.getAscii());
};
Key.addListener(watchKeyBoard);
/*found at http://www.swinburne.edu.au/design/tutorials/P-flash/T-Actionscripting-for-games/ID-41/#five*/
depth = 0;
function makeNewClip() {
clearInterval(ranID)
ranID=setInterval(makeNewClip, ran)
newClip = _root.attachMovie('drop1', 'drop1'+depth, depth++);
newClip._x = Math.random()*490;
newClip._y = -40;
newClip.speed = 3;
newClip.onEnterFrame = function() {
this._y += this.speed;
};
}
makeNewClip();
setInterval(makeNewClip,5000);
depth = 0;
clearInterval(ranID)
ranID=setInterval(makeNewClip, ran)
newClip = _root.attachMovie('drop2', 'drop2'+depth, depth++);
newClip._x = Math.random()*490;
newClip._y = -40;
newClip.speed = 3;
newClip.onEnterFrame = function() {
this._y += this.speed;
};
i need to get drop2 to repeat, and after that i will be adding in a drop3, drop4, drop5, drop6, drop7 etc so that there is a whole lot falling down from the top of the screen.
i DID have it repeating at some stage, but i can't for the life of me get it back to working again.........
any help will be greatly appreciated!!!
this is a project due day after tomorrow.
thanks =S
Adding Attachments To Emails
i am creating an email form that automatically populates the fields (address, subject, message) and i would like to include an attachment.
how would i go about automatically attaching a file to an email form in flash. how would i go about giving the user the option to select which file to attach, like a normal email program.
thanx for any help!
gkc
Form W/file Attachments
yes i have this game i created with some help from a friend.
now i want users to be able to purchase the game for themselves to make a personslized game of there very own.
so i am using the paypal component for the purchase
but i also want to have an upload file attachment for them to upload the zip file containing their images to be used in the game. to my email address rojere3@yahoo.com
the paypal an file attachement will most likely be separate unless someone knows how to put them together.
that allows the user to add the zip file an then when they click on the paypal component that both at the same time will send. but i doubt that.
so i am willing to make 2 separate sections.
one to do the paypal component. an then all i need is just the file attachement to be sent to my email. rojere3@yahoo.com
the form would consit of name and address an then have the file attachment that way i can confirm it with any orders with the same info. manually.
but as i browse around i see alot of questions are about the email form an that is done through php.
i need a form to go to directly to my email with there file attached.
this is done through php i would assume?
if anyone knows how i can implement that i surely could use the help!!!
i can find tutorials showing me how to create a form but only with the trace command to redisplay the users input.
thats it.
so if anyone knows of any components out there that deals directly with just that a form that directly goes to the sysop with file attachment that would great but i doubt that there is a component that does that.
so will just have to do straight up code i am presuming?
Attachments In A Flash Mail Form?
HI,
i have been searching for quite a while for information about mail forms in flash, but couldn't find anything about attachments. Does anybody know whether and how actionscript or javascript from flash can open a browse dialog to get the attachment path and send the file to the server-script.
it would be really a pleasure to find out at least a little hint.
Uploading Attachments To A Flash Form
hello everyone. I was wondering if anyone knows how to add an upload feature to a flash form. It would act as an attachment feature for an email form.For example fill out this form and attach a picture of yourself, anyone know how to do this?
Any help is greatly appreciated.
Sendmail.cgi Flash Forms And Attachments
Hey folks tried to get the subject with as much description as possible....
We are using sendmail.cgi to process our flash forms and now would like to have the option of uploading a pdf or msword doc as an attachment...
Does anyone know a way to do this? Sure in Coldfusion is is a snap, but I have never had the need for it in a flash form....
Thanks folks for your time with this.
[edit] I am using FlashMX of course.
Problem With Downloading Files/attachments
when i download a file the is always a pop up window that says unexpected file format. this mean i cant download any attachments its realy annoying please help.
p.s. when i download a file it downloads it as a Flash movie file.
-syadon-
Flash Contact Form & Attachments
Hi Friends,
I am currently trying to put together a flash contact form and am trying to being able to make attachments for the form. can somebody help me with this.
Thank you!
[F8] Flash 8 - Email Form: How To Get Users Specified Email In From Portion Of Email
Hey guys,
I want to add a newsletter to my new website that people can add their email addresses to. First off, I would like to have a field that the user can type his email address in, and have that field check if the email is valid (ie make sure that there is an @something.something).
Next, I would like it to send an email to my email address, with their email address in the from portion of the email (basically as if they have emailed me directly from their email). This way, it will be very easy for me to add them to my mailing list.
Thanks a ton for any help... Ive been searching for a while on how to do this, but couldn't find a way to put the users email in the from portion of the email.
Email Forms That Send Email To Other Email Addresses
hello, well, I'm not sure who to ask about this problem. The thing is I really want to make an email form that can send email to other people. I have seen email feedback forms here that send email to my address but I would really appreciate it if someone could help me make one that sends email to other addresses. I have made an email feedback form already and its at http://www.jeviwebs.com/beatles/mail.swf if you want to view it. If any of you know of any tips, please email me or respond to my post here thanks! BTW, that feedback form was based on matthew summers tutorials here
it is in the send button where I have the problem
here is the action script for the action layer:
recipient = "";
targetpage = "http://www.jeviwebs.com/beatles/ecard.htm";
stop();
this works ok since you will specify the email address of the person to send email to (thus the blank recipient variable) but here is the main problem...the actionscript for the send button....since I want to send emails to other people, I can't use my cgi bin for that.
on (release) {
getURL("http://myaddress.com/cgi-sys/mailform.cgi", "lower", "POST");
}
on (release) {
gotoAndPlay(2);
}
I know that there is a way through this...I can change and do actionscript if someone can help me out...thanks you guys
Send An Email With The Users Email To An Email Address
ok..the subject may be a little confusing but this is what i have...
an input textbox where viewers type in their email address
a submit button
i want it so that when you hit submit after typing in your email address it sends an email to your@address.com providing you with whatever the person typed in the input textbox
is this possible without using php or asp or whatever?
peace
spen
A Good Email List Program In Php And Email Form In Flash MX
Hello guys and Girls. Does anyone know how to setup a and direct me to a good 'Email List' program maybe done in PHP where essentially people come to my flash website....click a button to 'subscribe' to my newsletter' and when they do that.....they just type in their email addy and it is sent to a data base or something . I want to be able to simply type up a new newsletter and have it sent to all my email members who are in that email list in that data base?
I dont want anything more complicated than that!
I'm just paln to have a simlpe button in Flash that they click...and a small popup appears with a small form in flash for their email address and their name.
Let me know if anyone can refer me somewhere or help me out!
Thanks...
How To Email Textbox Attributes To An Email? (Basically A Form)
Hi I have a survey where you need to fill out a few answers, then it will auto email all the answers to one certain email. I'm not sure of the code I would use to email it. Im having a lot of trouble here, basically I would have it send one big string which includes the text variables like
"Name: " + name + "
" + "Age: " + age + "
" + "What Did you Think of the game?: " + feedback
etc. etc.
How would I send that one string to an email? Thanks ahead of time
HTML Formatted Email W/ Flash: Email Link Help
is there a way to put a mailto into a Flash that's embedded in an email without a browser window popping up when the user clicks on it.
The reply email works fine, but a browser window will open with the mailto in the URL and "Action Canceled" in the window. Not too pro looking.
Also, I found the Flash only plays in some email clients, when user views the email. I had to put a 'play' button on the first frame before the loader in case it doesn't play. I tried putting a "gotoAndPlay" but that didn't work either, took the loader out, even put the animation on the main timeline. Funky.
Told the client it's a bad idea, unpredictable, but they never listen to people that know what's up...
[MX04] Making An Email Button Go To Email Client
Good Day,
I have made a button on my website and would like it to do the following:
When pressed it would open the users email client and put my email address in the "TO" box so they can send an email to me.
Sounds simple but I can't work out how to make this happen.
Is there a better way to do this?
Can somebody help me with this?
Email Link On Swf Doesn't Work In Embeded Email, Why?
I am working on a swf file (sort of an ad) for email distribution purpose, the swf has an email link on it for potential clients to reply to us.
I upload the swf on our server, embed the swf into an email, and send the email off to do a test, the animation is playing fine, but there is a problem, when i click on the email link, I receive the following error message:
"Microsoft Outlook has encountered a problem and needs to close. We are sorry for the inconvenience."
And then the Outlook is closed down.
But this problem only happens on NT system, as while i click the same link from my XP, it instantly open up a new reply message fine, anyone has come across this problem and knows how to get around with it, could you help?
Many many thanks
Flash PHP Email , Hide Formatting In End-user Email?
Hello and thanks for taking the time,
I built a Flash email sender, its very simple, it just sends all the variables in the fields, no cross checks or nothing.
Problem: here's what the end-user email looks like:
Subject: Message from <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="14" COLOR="#000000" LETTERSPACING="0" KERNING="0">Smiles</FONT></P></TEXTFORMAT>
Name : <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="14" COLOR="#000000" LETTERSPACING="0" KERNING="0">Smiles</FONT></P></TEXTFORMAT>
Email:
Comments: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="14" COLOR="#000000" LETTERSPACING="0" KERNING="0">Massage</FONT></P></TEXTFORMAT>
Here's my PHP code:
<?
$destination="jjmorga@gmail.com";
$name=$_POST['name'];
$subject=$_POST['subject'];
$mes=$_POST['message'];
$subject="Message from $name" ;
$mes="Name : $name
Email: $email
Comments: $mes
";
mail($destination,$subject,$mes); ?>
To anyone that helps me tackle this pickle I bid you a million thanks
Email Form Sends Out Email 3 Times?
I am using the Web Service Connector to take text input on a form and email it from the website to the intended party. However, it sends the email out three times and I can't find where the error is. When I test the movie I get the following error: "Binding between <unknown>.. and <unknown>.params.emailFrom: The endpoint of the binding does not exist." It shows this error twice. So I am guessing the problem lies with these errors, which would give me three emails total.
Any ideas? I can't find any other instances of the WSC on the site?
Thanks,
Jim
Email Autoresponder That Includes Recipient's Name In Email
Hi--
I am trying to set up an email autoresponder in Flash MX that includes the recipient's name in the salutation of the email.
For example, if Bob Barker is at my site, I want to give him two boxes to fill in: one for his name (Bob) and the second for his email address. When he clicks the "ok" button, an autoresponder will send him an email that begins with, "Hi, Bob--etc." THEN, once he receives the email, if he answers it, I'd like ANOTHER autoresponse addressed to "Hi, Bob," but this time with a different message.
This must be pretty easy to do, but I have NO idea how. Can anyone direct me to a source on this? Or someone with the know-how?
Many, many thanks!
Flash Email Form -- No Content In Email
I realize that a similar question has been posted many times, but since I've been searching for an answer that works specifically for me for 2 long days, I feel I need to post.
I've created a guestbook-type form in Flash and a perl script to send the contents of that form to my own email address. Things seem to be working fine except that the email I get is blank. I don't know much about scripting outside of Flash, so I'd appreciate some help. I think my perl script is the problem, but I'm copying both scripts below.
Thanks a milion.
-------------------------------------------------------------------
My SendMail.pl script:
-------------------------------------------------------------------
#!/usr/bin/perl
print "Content-type: text/html
";
$title='New Birdie Guestbook Entry';
$to='jessica@jessicaberardi.com';
$from= 'jessica@jessicaberardi.com';
$subject='New Guestbook Entry';
$name = 'name_txt';
$address = 'address_txt';
$city = 'city_txt';
open(MAIL, "|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: $to
";
print MAIL "From: $from
";
print MAIL "Subject: $subject
";
## Mail Body
print MAIL "New Guestbook Entry
";
close(MAIL);
print "<html><head><title>$title<
/title></head>
<body>
";
## START HTML content
print "<h1>$title</h1>
";
print "<p>A message has been sent from $from to $to";
## END HTML CONTENT
print "
</body></html>";
-------------------------------------------------------------------
My Flash code:
-------------------------------------------------------------------
stop();
function sendForm () {
my_lv = new LoadVars ();
my_lv.name = _parent.name_txt.text;
my_lv.address = _parent.address_txt.text;
my_lv.city = _parent.city_txt.text;
my_lv.state = _parent.state_txt.text;
my_lv.zip = _parent.zip_txt.text;
my_lv.phone = _parent.phone_txt.text;
my_lv.email = _parent.email_txt.text;
my_lv.message = _parent.message_txt.text;
my_lv.send ("http://www.jessicaberardi.com/test/SendMail.pl", "POST");
gotoAndStop("thankyou");
}
submit_btn.onRelease = function () {
if (name_txt.text == "" || email_txt.text == "") {
status_txt.text = "Please complete the required fields.";
} else {
status_txt.text = "";
sendForm ();
}
};
Used Php Email Tutorial From Kirupa, Need Email Validate Help
Hi,
I followed Senocular's tuorial to be able to send a form thru email in flash, it worked (which is great, since i also followed about 100 far more complicated ones i found on the web wich did not work!) but i need some help including an email validation element...i think its targetting the correct textfield variables i'm having a problem with, but i took all my efforts out of the attached files and now just have the functioning regular version and am awaiting some help...i have been at this for almost a week!!!
Ive attached a zip of my .fla and the php script.
Many many many thanks in advance,
sleeepy
Email Form, Help To Make Email In Html
hi ive made a email form for my site. it works but i want the email that is sent to be in html so i change images and tables.
here is my php script
PHP Code:
<?php
$adminaddress = "gerard@organisedkaos.net";
$siteaddress ="http://www.atr-training.co.uk/";
$sitename = "ATR";
$date = date("m/d/Y H:i:s");
// List and load Flash vars - and convert into PHP vars.
$inputname=$_POST['inputname'];
$address1=$_POST['address1'];
$email=$_POST['email'];
$tele1=$_POST['tele1'];
$selection2=$_POST['selection2'];
$messagebox=$_POST['messagebox'];
if ($REMOTE_ADDR == ""){
$ip = "no ip";
} else {
$ip = getHostByAddr($REMOTE_ADDR);
}
mail($adminaddress,
"Message",
"Name: " . $inputname. "
".
"Address: " . $address1. "
".
"Telephone: " . $tele1. "
".
"email: " . $email. "
".
"how did you find us: " . $selection2. "
".
"------------------------------
".
"message: ". $messagebox. "
".
"
------------------------------
".
"Logged Info :
".
"Using:". $HTTP_USER_AGENT. "
".
"Hostname: ". $ip. "
".
"IP address: ". $REMOTE_ADDR. "
".
"Date/Time: ". $date. "
".
"FROM: ". $adminaddress, "From:". $email);
mail($email, "Auto-response from ATR", "Thankyou for contacting us. We will get back to you shortly. ",
"From: info@atr-training.co.uk".
"Reply-To: info@atr-training.co.uk".
"X-Mailer: PHP/" . phpversion());
?>
please help
gerard
Help Please Email From Page To Another Email With Url Link
This is getting really confusing for me so I need some help! The issue is that I am developming a video player that a client would like to have an ability of users to send (email) the page to a freind, with a link back to that specific page. I have experience sending mail via PHP scripts, and the mailto: commands. Does anyone have any idea how this could be accomplished? I need some direction. Thanks Devon
www.conjuringzoo.com
Email Form Not Sending Email... Please Help
Hi all,
I have a flash-based mailer form that was working at one point, but now it won't send email to the specified account for some reason. The host says that it needs to be sent FROM a valid email address on their server, but I can't figure out where in the code I need to make that work...
Here's the code on my submit button:
Code:
on(release){
formValidation();
if(validForm == true){
form.loadVariables("../email.php", "POST");
}
}
Here's the code in my PHP file:
Code:
<?php
$sendTo = "mail@kavehmedia.com";
$subject = $_POST["subjectTxt"];
$headers = "From: " . $_POST["nameTxt"];
$headers .= "<" . $_POST["emailAddressTxt"] . ">
";
$headers .= "Reply-To: " . $_POST["emailAddressTxt"];
$message = $_POST["messageTxt"];
mail($sendTo, $subject, $message, $headers);
?>
What am I doing wrong? Since it was working when I first made it, I assume the host changed something on their end, but they're being very unhelpful...
Email Form Need To Add Telephone # To Email
Hi,
I am using this email form and it works just fine, but I am trying to figure out how to add additional input feilds that show up in the email body. For example, when you receive the email the body of the email would look like this:
Name:
E-mail:
Telephone:
Feedback:
Below is the AS and the PHP code. Attached is the FLA. Any help would be appreciated
Code:
/*
AUTHOR : Z Syed
CREATING FEEDBACK FORM IN FLASH USING PHP
*/
/*
create the LoadVars objects. One for sending information to the php file and one for recieving information.
Although this can be done with one loadvars object, it makes for cleaner code to use two
*/
var sendData_lv:LoadVars = new LoadVars();
var receiveData_lv:LoadVars = new LoadVars();
var formValidated:Boolean;
var errorMessages:Array = new Array();
receiveData_lv.onLoad = function():Void{
trace(this.sent);
if(this.sent == "OK"){
message0_txt.text = "Thank you for your feedback";
}else{
message0_txt.text = this.sent;
}
}
submit_btn.onRelease = function() {
//this clears the error text field if they have been populate previously
clearTextFields();
errorMessages.length = 0; //empty the array so next time the submit button is clicked the array is not already populated
formValidated = checkForm();
if (formValidated) {
//the form is valid and so now we can send details to our PHP file
//populate LoadVars object with the field values
sendData_lv.name = name_txt.text;
sendData_lv.email = email_txt.text;
sendData_lv.feedback = feedback_txt.text;
//trace(sendData_lv.email);
//trace("valid");
sendData_lv.sendAndLoad("email.php?ck="+new Date().getTime(), receiveData_lv);
} else {
//populate textfields with the error messages
for (var i = 0; i<errorMessages.length; i++) {
_root["message"+i+"_txt"].text = errorMessages[i];
trace(errorMessages[i]);
}
}
};
function checkForm():Boolean {
//check whether the name field is empty
if (name_txt.text == "") {
errorMessages.push("Please enter your name.");
}
if (email_txt.text == "") {
errorMessages.push("Please enter your email address.");
} else if (email_txt.text.indexOf("@") == -1 || email_txt.text.indexOf(".") == -1) {
errorMessages.push("Please enter a valid email address.");
}
if (feedback_txt.text == "") {
errorMessages.push("Please enter some feedback");
}
//if at this point the array is empty i.e has length 0, then this in effect means the form has passed all checks
if (errorMessages.length == 0) {
return true;
} else {
return false;
}
}
function clearTextFields():Void {
for (var i = 0; i<errorMessages.length; i++) {
_root["message"+i+"_txt"].text = "";
;
}
}
}
PHP Code:
<?php$name = $_POST['name'];$email = $_POST['email'];$feedback = $_POST['feedback'];$subject = 'feedback from your website';$headers = "From: $name <$email>
";$headers .= "Reply-To: $name <$email>
";//ENTER YOUR EMAIL ADDRESS HERE$to = 'email@emailaddress.com';//---------------------------$success = mail($to, $subject, $feedback, $headers);if($success){echo '&sent=OK';}else{echo '&sent=Error';}?>
Email Variables Through Email
I have what might seem like a simple question. However, I can't find the answer. I created a multiple choice test with 5 questions. Each answer is stored as a variable. q1, q2, q3, q4, q5. On the last screen I created a name text field for them to type their name. Now I want to create a submit button that will email me the value of all of the variables separately.
I can't figure out how to format the getURL message to email each variable to me. Here is what I've tried and I get "undefined" in my email body:
on (click) {
getURL("mailto:dsmith@help.com?subject=AEIOUsales" + "&body=" +employee +q1+q2+q3);
}
Please help me with my simple question...Show me an example of how this script should be formatted. Thanks in advance!
Cgi-bin And Email
could someone help me how to use flash to get our visitors email address by putting a submit button
and about the script for this
thanks
PS: is there any web site for this tutorial
Email
I think my problem is a little more complex than what i thought it would be. Anyway, I'm trying to set up Flash to do a email to alot of people for comments. Well i got it to work for about 10 addresses, but after that it doesn't like anymore. is there another way i can do this? would a "comments" type page work better? if so how can i get flash to do the background work for it, with out openning email up.
Email
what's the script code for email ?
Email
hi can some one tell me how to put a email link in my site.
like an outlook express pop up.
Thanks
Email
I've tried a tutorial "The Idiot's Guide to Creating and Using Forms in Flash 4+"....the scripts used is ASP....but my company's intranet is configured in Cold Fusion. If i want to do the same thing as taught in the tutorial...what should i do? pls somebody help me! thanks!
Email
Greetings, what actionscript do I put on a button to pop up
an email window? addressed to myself for feed back out of flash?
How To Email
Could someone please tell me how to email a section of a flash file to someone. I would like for this to be done in Flash by hitting the "Place Order" button.
Email
I am having trouble opening a email window in flash. I am using geturl(mailto:someone@email.com) but it is opening a browser window also. how do i keep from opening a browser window?
Thanks
Email
cool, if you could email me that stuff, that would be sweet.
my email is: moller172@hotmail.com
|