Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
Molim pomoć da aktiviram Contact Form

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Flash
View previous topic :: View next topic  
Author Message
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 16:48    Post subject: Molim pomoć da aktiviram Contact Form Add user to your forum ignore list Reply with quote

Pozdrav svima! Može li mi netko pomoći da aktiviram Contact form u već napravljenom Flashu? Zaista bi bio zahvalan. Confused
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sarma



Joined: 02 Nov 2004
Posts: 99
Location: Osijek/ZG, Croatia

PostPosted: 29.09.2007 19:06    Post subject: Add user to your forum ignore list Reply with quote

mogu ja...Smile

_________________
-- 45th generation Roman --
Back to top
View user's profile Send private message
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:13    Post subject: Add user to your forum ignore list Reply with quote

sarma wrote:
mogu ja...Smile


Very Happy Znao sam da ima dobrih ljudi. Kupio sam flash site online i sada bi trebao aktivirati contact form, a zaista jako malo znam o tome. Kako je najjednostavnije?
www.bluemedia.hr
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sarma



Joined: 02 Nov 2004
Posts: 99
Location: Osijek/ZG, Croatia

PostPosted: 29.09.2007 19:16    Post subject: Add user to your forum ignore list Reply with quote

ajde daj malo nekih informacija.....iz AS-a

_________________
-- 45th generation Roman --
Back to top
View user's profile Send private message
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:17    Post subject: Add user to your forum ignore list Reply with quote

AC?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sarma



Joined: 02 Nov 2004
Posts: 99
Location: Osijek/ZG, Croatia

PostPosted: 29.09.2007 19:19    Post subject: Add user to your forum ignore list Reply with quote

probaj dati neki primjer funkcije u actionscriptu koji bi trebao poslati contact form..i objasni gdje je zapelo

_________________
-- 45th generation Roman --
Back to top
View user's profile Send private message
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:19    Post subject: Add user to your forum ignore list Reply with quote

Zaista nisam razumio sto bi trebalo... AS?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:19    Post subject: Add user to your forum ignore list Reply with quote

Ok...
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:21    Post subject: Add user to your forum ignore list Reply with quote

<?php

$your_company = $_GET['company'];
$your_name = $_GET['your_name'];
$your_phone = $_GET['phone'];
$your_email = $_GET['email'];
$your_message = $_GET['message'];




$headers .= 'Content-type: text/html; charset=iso-8859-1';

$content = "<html><head><title>Contact letter</title></head><body><br>";
$content .= "Company: <b>" . $your_company . "</b><br>";
$content .= "Name: <b>" . $your_name . "</b><br>";
$content .= "Phone: <b>" . $your_phone . "</b><br>";
$content .= "E-mail: <b>" . $your_email . "</b><br><hr><br>";
$content .= $your_message;
$content .= "<br></body></html>";

mail($recipient,$subject,$content,$headers);
?>
<html>
<body bgcolor="#282E2C">
<div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
Your message was sent. Thank you.
</div>
</body>
</html>
<script>resizeTo(300, 300)</script>


Dobio sam ovo kao uzorak za PHP file.
Jednostavno ne znam sto trebam promjeniti ovdje i sto napisati?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sarma



Joined: 02 Nov 2004
Posts: 99
Location: Osijek/ZG, Croatia

PostPosted: 29.09.2007 19:23    Post subject: Add user to your forum ignore list Reply with quote

good, moram ići sada, provjerim te kasnije, možda ti neko u međuvremenu uskoči...if not ...then
I'll be back Smile

_________________
-- 45th generation Roman --
Back to top
View user's profile Send private message
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 29.09.2007 19:23    Post subject: Add user to your forum ignore list Reply with quote

Ok, hvala svejedno. Smile
Back to top
View user's profile Send private message Send e-mail Visit poster's website
sarma



Joined: 02 Nov 2004
Posts: 99
Location: Osijek/ZG, Croatia

PostPosted: 30.09.2007 10:50    Post subject: Add user to your forum ignore list Reply with quote

hej, evo me opet, ako u međuvremenu nisi ovo riješio evo ti jedan link koji će ti pomoći....
pa ako i opet ne bude išlo, javi....
http://www.kirupa.com/developer/actionscript/flash_php_email.htm

_________________
-- 45th generation Roman --
Back to top
View user's profile Send private message
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 30.09.2007 14:52    Post subject: Add user to your forum ignore list Reply with quote

Malo sam modificirao tvoju skriptu i upotrijebio je na svojoj Flash kontakt formi.
Ubacio sam jos adresu primatelja ($recipient = "vasa_adresa@primjer.com"; ) kao i naslov poruke ($subject = $_GET['subject']; )

Adresa forme je http://www.as-flash.com/temp/kontakt.html
Tamo je i link na source fileove.
Forma na toj stranici ne radi jer nisam stavio php fajl... Inace treba php fajl staviti gdje je i html holder flasha.
Potrebno je u 2.retku mail.php datoteke promijeniti adresu u odgovarajucu (vasa_adresa@primjer.com)

_________________
http://www.as-flash.com
Back to top
View user's profile Send private message Visit poster's website
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 30.09.2007 15:20    Post subject: Add user to your forum ignore list Reply with quote

Hvala ti mnogo, ali zaista ne znam. Da li bi mi napravio kako treba?
Ja bi ti poslao flash file ili vec sto bi bilo jednostavnije?
Zaista bi bio zahvalan... Crying or Very sad
Back to top
View user's profile Send private message Send e-mail Visit poster's website
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 30.09.2007 16:05    Post subject: Add user to your forum ignore list Reply with quote

Posalji mi source (.fla) skupa sa php fajlom. Takoder i adresu na koju zelis da ti stize mail sa kontakt forme. Sve to na PM

_________________
http://www.as-flash.com
Back to top
View user's profile Send private message Visit poster's website
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 30.09.2007 16:09    Post subject: Add user to your forum ignore list Reply with quote

PM?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 30.09.2007 16:13    Post subject: Add user to your forum ignore list Reply with quote

Private Message

_________________
http://www.as-flash.com
Back to top
View user's profile Send private message Visit poster's website
Livio



Joined: 26 Oct 2006
Posts: 13
Location: Split

PostPosted: 30.09.2007 16:18    Post subject: Add user to your forum ignore list Reply with quote

daj mi neki e-mail, ne mogu ovdje dodati attachment? Question
ili nesto pogresno radim... Confused
Back to top
View user's profile Send private message Send e-mail Visit poster's website
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 30.09.2007 16:20    Post subject: Add user to your forum ignore list Reply with quote

Mislio sam da ces mi poslati link na source
No dobro...

djankey (monkey) gmail.com

_________________
http://www.as-flash.com
Back to top
View user's profile Send private message Visit poster's website
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 30.09.2007 17:06    Post subject: Add user to your forum ignore list Reply with quote

U Flashu ti je bila kriva putanja do Text Inputa.
Code:
mylv.your_name = _parent.text_field_1.text;
mylv.email = _parent.text_field_2.text;
mylv.phone = _parent.text_field_3.text;
mylv.message = _parent.text_field_6.text;
treba biti:
Code:
mylv.your_name = text_field_1.text;
mylv.email = text_field_2.text;
mylv.phone = text_field_3.text;
mylv.message = text_field_6.text;

Takoder sam (kao sto sam ranije napisao) u php fajl ubacio dvije linije koda, u kojima definiram odredisnu e-mail adresu i Subject (posto te varijable nisu definirane u kontakt formi)
Code:
$recipient = "adresa@neka-domena.com";
$subject = "Poruka sa web stranice..";

Ove dvije linije izmijeni kako tebi odgovovara (unutar " ")

_________________
http://www.as-flash.com
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Flash All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group