Форум Flasher.ru

Форум Flasher.ru (http://www.flasher.ru/forum/index.php)
-   ActionScript 1.0/2.0 (http://www.flasher.ru/forum/forumdisplay.php?f=93)
-   -   Отправка сообшения! (http://www.flasher.ru/forum/showthread.php?t=79050)

Crazzy 01.05.2006 05:48

Отправка сообшения!
 
Каким образом можно сделать в Flash быструю отправку письма
- - - - - - - - - - - - - - - - - -
Username :__________

Text:
_______________________________
. .
. .
. .
. .
________________________________

________
SEND>>
________
Помогите написать такой скрипт!:away:

Nirth 01.05.2006 06:39

Перенес в нубский раздел

Crazzy 01.05.2006 06:48

Кто-то может мне обьяснить как создается вот токого сценария клип?

0xFFFFFF 01.05.2006 06:50

сценарий в студию! и клип снимаем! с тобой в главной роли!

0xFFFFFF 01.05.2006 06:52

пивка холодного не хочешь? пхп и флеш-хелп тебе в руки :)

Crazzy 01.05.2006 06:54

Я имею ввиду каким должен быть скрипт чтобы создать такого рода раздел в большенстве случаев такую swf помешают в раздел Conntacs

Crazzy 01.05.2006 06:55

ну если ты сам не можешь написать кинь мне хотяб ссылку... чтоли...

Nirth 01.05.2006 07:00

http://flasher.ru/forum/images/russi...top_search.gif

SINtez_v 01.05.2006 07:07

Хааа ссылка в тему !
Тепе форма нужна для отправки или php код ?

0xFFFFFF 01.05.2006 07:48

сценарий!

Код:

_root.createEmptyMovieClip("send_mc", _root.getNextHighestDepth());
send_mc.createTextField("userName_txt", send_mc.getNextHighestDepth(), 100,100, 1,1);

send_mc.userName_txt.autoSize = true;
send_mc.userName_txt.text = "Username";
//
send_mc.createTextField("userNameInput_txt", send_mc.getNextHighestDepth(), 100, 120, 300,20);
send_mc.userNameInput_txt.type =  "input";
send_mc.userNameInput_txt.border = true;
send_mc.userNameInput_txt.text = "Your name";
//
send_mc.createTextField("userText_txt", send_mc.getNextHighestDepth(), 100, 150, 1,1);
send_mc.userText_txt.autoSize = true;
send_mc.userText_txt.text = "Text";
//
send_mc.createTextField("userTextInput_txt", send_mc.getNextHighestDepth(), 100, 170, 300,100);
send_mc.userTextInput_txt.type =  "input";
send_mc.userTextInput_txt.border = true;
send_mc.userTextInput_txt.text = "Your text here";

//
send_mc.createEmptyMovieClip("button_mc", send_mc.getNextHighestDepth());
send_mc.button_mc._x = 100;
send_mc.button_mc._y = 300;
send_mc.button_mc.beginFill("0xFF00FF", 100);
send_mc.button_mc.lineTo(100,0);
send_mc.button_mc.lineTo(100,30);
send_mc.button_mc.lineTo(0, 30);
send_mc.button_mc.endFill();
//
send_mc.createTextField("sendText_txt", send_mc.getNextHighestDepth(), 110, 305, 1,1);
send_mc.sendText_txt.autoSize = true;
send_mc.sendText_txt.text = "Send>>";
//
send_mc.button_mc.onRelease = function () {
        _root.sendLetter(send_mc.userNameInput_txt.text, send_mc.userTextInput_txt.text);
        trace("Message: " +send_mc.userNameInput_txt.text +" \nText: "+ send_mc.userTextInput_txt.text)
}



Часовой пояс GMT +4, время: 11:25.

Copyright © 1999-2008 Flasher.ru. All rights reserved.
Работает на vBulletin®. Copyright ©2000 - 2026, Jelsoft Enterprises Ltd. Перевод: zCarot
Администрация сайта не несёт ответственности за любую предоставленную посетителями информацию. Подробнее см. Правила.