http://www.scripter.co.kr/entry/FlashExternal-c-안에-as3-AVM2-넣기
에서 같은주제를 아주 예전에 다루었지만 내용이 너무 부실하고, 철없었기 때문에 보강을 해야겠다.
사실 구글에 많이 올라와 있는 "AxShockwaveFlashObjects" 관련글들을 그대로 따라했다가는
이유도 모르는 FileNotFoundException 이 나올것이다.
그런 분들은 아래의 DLL 을 사용하기 바란다 .
코드를 살펴 보겠다.
c#
Created with colorer-take5 library. Type 'csharp'
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using TRACE_Lib;
using Flash.External;
using AxShockwaveFlashObjects;
using System.IO;
using System.Collections;
namespace FlashTEST_1
{
public partial class Form1 : Form
{
public TRACE.TRACE_DELE trace = TRACE.getTrace;
public Form1()
{
InitializeComponent();
}
//[0]
private AxShockwaveFlash flash;
private ExternalInterfaceProxy proxy;
protected override void OnLoad(EventArgs e)
{
//[1]
flash = new AxShockwaveFlash();
this.Controls.Add(flash);
//[2]
string swfPath = Environment.CurrentDirectory + Path.DirectorySeparatorChar+ "TestCS.swf";
flash.LoadMovie(0, swfPath);
flash.Width = 500;
flash.Height = 400;
//[3]
proxy = new ExternalInterfaceProxy(flash);
//[4]
proxy.ExternalInterfaceCall += new ExternalInterfaceCallEventHandler(proxy_ExternalInterfaceCall);
base.OnLoad(e);
}
object proxy_ExternalInterfaceCall(object sender, ExternalInterfaceCallEventArgs e)
{
//[5]
string name = e.FunctionCall.FunctionName;
object[] args = e.FunctionCall.Arguments;
if (name == "ready")
{
trace("#", name, (args[0] as ArrayList)[0], (args[0] as ArrayList)[1]);
}
//[6]
if (name == "testCall")
{
//[7]
TxReceive.Text += (args[0] as ArrayList)[0].ToString() + Environment.NewLine;
}
//[8]
return null;
}
private void button1_Click(object sender, EventArgs e)
{
//[9]
proxy.Call("CallAS3", TxSend.Text);
}
}
}
/* [0] : Form 으로 플래시를 불러오기위해서는 AxShockwaveFlash 라는 윈도우 컨트롤과
* 그것을 제어하는 ExternalInterfaceProxy 를 사용하여야 정확하게 AS3과 통신할수 있다.
*
* [1] : flash 컨테이너를 선언하고 메인폼에 붙였다.
*
* [2] : TestCS.swf 의 위치를 획득하여 LoadMovie 하였다.
*
* [3] : 프록시를 선언하여 플래시의 ExternalInterface 과 연결하기로 하였다.
*
* [4] : 프록시에 이벤트를 선언하여 플래시에서 오는 신호를 받아 들인다.
*
* [5] : ExternalInterfaceCallEventArgs 의 멤버로 FunctionCall에서
* FunctionName 과 Arguments를 얻을수 있다.
*
* [6] : "testCall" 은 AS3 코드에서 보면 알겠지만 "Call("testCall" , input.text);" 처럼
* 서로의 이름이 같게 하여 원하는 값을 추출 한다. 이는 c# 이 값을 받는 상황 과 보내는 상황
* 모두 적용 된다.
*
* [7] : 플래시에서 "...args" 형으로 매개변수를 받는것이 c# 으로 넘어오면 args[0] 로 된다.
* 그리고 그타입은 ArrayList 이다
* ※ AS3 의 Array는 배열의 타입을 따로 지정하지 않는 ArrayList 이다.
*
* [8] : 이유는 모르겠지만 라이브러리 상의 이벤트 델리게이트 반환타입이 오브젝트 이어서
* 불가피하게 return 하였다.
*
* [9] : "[6]"참고 , 플래시로 값을 보낸다.
*
* */
그다음은..
AS3
Created with colorer-take5 library. Type 'csharp'
package
{
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.events.TimerEvent;
import flash.external.ExternalInterface;
import flash.system.fscommand;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.utils.Timer;
public class TestCS extends Sprite
{
private var tx: TextField;
private var input : TextField;
private var bt : Sprite;
public function TestCS()
{
//[0]
//view..
tx = new TextField();
addChild(tx);
tx.border = true;
tx.multiline = true;
tx.width = stage.stageWidth;
tx.height = stage.stageHeight-50;
tx.text = "string!";
input = new TextField();
input.type = TextFieldType.INPUT;
input.x= 0 ;
input.y = tx.y + tx.height + 10;
input.width = 200;
input.border = true;
input.height = 30;
input.text = "Hellow C#! Iam AS3";
addChild(input);
bt = new Sprite();
bt.graphics.beginFill(0x0);
bt.graphics.drawRect(0,0,100,30);
bt.x = input.x + input.width + 30;
bt.y = input.y;
bt.buttonMode = true;
addChild(bt);
//[1]
//Event
addEventListener(Event.ADDED_TO_STAGE , ready);
bt.addEventListener(MouseEvent.CLICK , bt_call);
//[2]
//callback
CallBack("CallAS3" , callBackFromCSharp);
}
//EventHandler & CallbackMethod
private function ready(e:Event = null):void
{
Call("ready" , stage.stageWidth , stage.stageHeight);
}
//[3]
private function callBackFromCSharp(msg : String):void
{
tx.text += " \n" + msg;
}
//[4]
private function bt_call(e:MouseEvent):void
{
Call("testCall" , input.text);
}
//[5]
//Exception Local Error
private function Call(ParamName : String ,...args):void
{
try{
ExternalInterface.call(ParamName , args);
}catch(e:Error){tx.text += e.toString() +"\n";}
}
private function CallBack(ParamName : String , CallBack:Function):void
{
try{
ExternalInterface.addCallback(ParamName , CallBack);
}catch(e:Error){}
}
}
}
/**
* [0] : 화면구성에 필요한 요소들을 생성 , 배치 하였다.
*
* [1] : 간단한 문자열을 보낼 버튼 이벤트와 초기화 이벤트를 작성하여 상황에 맞게 c# 으로 값을
* 보낼것이다.
* 그러나 초기화 이벤트 (Event.ADDED_TO_STAGE) 는 c# 에서 동작하지 않는다.(?왜그런지..)
*
* [2] : c# 에서 올 신호를 받는 콜백을 선언하였다.
*
* [3] : "[2]" 를 받는 메서드
*
* [4] : 버튼을 누르면 간단히 C# 으로 문자열을 보내는 이벤트 핸들러 "[1]" 참고
*
* [5] : 코드를 이처럼 처리한 이유는 swf 를 감싸는 무언가가 없는 상황에서 ExternalInterface 는 에러를 발생시킨다.
*
* */
댓글을 달아 주세요
新华社南宁7月1日体育专电(记者何丰伦)"西班牙队称雄欧洲和全世界的关键,就在于西班牙非常重视青少年的培养,不同年龄段有大量的赛事能够参加,提升水平。"正在南宁进行恒大(微博)皇马(微博)学校足球复试的西班牙皇马青训营教练鲁本·加西亚·, http://www.hg59999.com 足球投注网;罗德里格斯这样告诉记者。
罗德里格斯今年32岁,持有欧足联A级教练员证书,曾在马德里竞技等队任职。目前被聘为青少年训练营的教练。此次来到南宁就是受恒大皇马足球学校委托,在各地选苗子。
传球、带球、射门....这些都是选拔苗子、考验青少年身体协调能力的主要项目。罗德里格斯认为:从实际上看,西班牙与中国在青少年阶段水平差不多,但进入成人阶段之后,两者就有了天壤之别。这主要是因为中国青少年"快乐太少,赛事太少"。
罗德里格斯说:"青少年踢球主要是享受快乐,技战术水平、团队配合等等这些都是基于享受足球创造性、快乐感和信任基础上才能形成的,中国足球太多急功近利,总是抱着赢球的想法。而中国青少年赛事仍很少,这就造成随着年龄增长,水平难以提高。"
他建议,加快建设最基础的青少年培养训练体系,提高青少年训练水平和享受足球的快乐, http://www.hg59999.com 皇冠现金官方网,"重视青少年赛事, http://www.hg59999.com 全球博彩网,在比赛中享受足球,才能在成人阶段称雄足坛"。(完)
http://www.hg59999.com 现金网开户 http://www.hg56666.com/ www.hg56666.com
足球现金网 http://www.hg59999.com/ www.hg59999.com
皇冠 http://www.hg59999.com 足球现金网 http://www.hg57777.com/ www.hg57777.com
http://www.hg59999.com 新2现金网 http://www.hg53333.com./ www.hg53333.com
"Hurry via a flight Grant having Nanas hand and dragged the person's to understand more about run to the planks,be capable of getting into going to be the cedar!the reason is"Wolf riders consider my hand to educate yourself regarding tend to be everywhere over the chasing across going to be the white water!the reason is Carl booked noisally"Trolls right away take off and take actions in your heavens Go back for additional details on save going to be the wounded"Yes,there"going to be the bad guy motorcyclist has already been broken down into a couple groups to educate yourself regarding are worried into the water and going to be the Trolls ran for additional details on going to be the double-head dragon in your planks Grant and Nana ran without delay in your cedar plank to get to explore cast - time any of those orcs, http://www.iurpg.com wow gold. However,any sexual double-head dragons can hunt as part of your night They can remember not to choices find their traces for more information about go out and buy WOW gold,but take heart also can credit reports going to be the situation for additional details on Carl."
"Carl"going to be the Trolls in the fog has found something new,going to be the valley throughout the going to be the captives to the left are often times an all in one shade alley, http://www.iurpg.com cheap wow gold. Do a number of us are going to want for additional details on make some them for more information about can get there?the reason is"Sure" Carl scheduled"The first group keep moving left,going to be the second keep moving ahead. The acquire team limited after having been my hand to learn more about chase them,going to be the fourth approach them back and forth from up and the Troll team make examples of barriers and http://www.iurpg.com WOW gold for more information about them, understand?graphs"Understand"all of them are going to be the teams damaged for more information about take actions respectively.
Los maestros permanecen en la enseñanza a ti mismo. El Q http://www.hermesoutletx.com/ bolsos hermes junto a los chicos poderosos: "Hey, ¿cómo te llamas?"Chicos Carretera magnífica: "hermes"."Beam escribir, mirar." Hermes rasguño blanco camino papel estucado."No, leer 'zinc'?" Hermes erróneamente dijo. Química Visible realmente tiene una estrecha relación con la vida diaria.
La gran ventaja de cada pueblo no entiende,http://www.hermesoutletx.com/ él tenía una oportunidad de inculcar. http://www.hermesoutletx.com/ hermes es la víctima directa, rubor oído Chidi abrumado.La norma hermes, pinyin, dijo: "Así que lea, entienda 啵?""Yo no accidentalmente repentinamente mal." Hermes sonrisa avergonzada.
"Su lenguaje es pobre?" Inferencia http://www.hermesoutletx.com/ bolsos hermes."¿Cómo puedo hacer!" Emocionado el Hermes a ser golpeado, mi lengua School puntuaciones entero "hablando de detener a un ladrón, como las miradas de la insignia de pecho otros dos, pero afortunadamente, están fuera de la ciudad vienen aquí, no conocer los pormenores, en voz alta, "es una escuela completa de los mejores!"
http://www.hermesoutletx.com/ http://www.hermesoutletx.com/
http://www.hermesswedenv.com/ hermes väskor ansträngning är för stor, tunn tät kyss och tryck upp, läppar, näsa, kinder, panna, panna, tempel ...... hermes redan medveten om en sådan utveckling att gå helt till olyckan har inte haft tid att protestera, men hela kroppen kändes svag även inte höja ett finger för att driva bort honom. Han slet kropp pyjamas, stora områden med bar hud exponeras för luft, hermes upplever att det finns ett spår av förkylning, men nästa sekund som du känner värmen igen. Hans hudtemperatur. Vem tar en annan persons kroppsvikt, hermes varma och obekväma, obekväma lämnades kippar i avund. Bara en öppen mun, tungan fastnar i, hermes tungan suger bor intrasslad med hermes undergång.
Det var en lång, djupt rörd av http://www.hermesswedenv.com/ väskor online örat kyss varm hjärta. Se förvirringen i hans obsidian ögon, som kallas hermes ut. Gu ...... höll juni, hans milda röst frestelse hermes, kallad barnet hermes namn. "Vad? Vad? Baby? ! Han var aldrig för surt ah! hermes ansikte medan bränning.
Held juni, ...... " http://www.hermesswedenv.com/ handväskor online viskade andlöst."Ring igen."Held juni ...... ""Verkligen lydig," han log med tillfredsställelse, händer försiktigt glida från hermes midjan, inre lår, försiktigt paddlat cirkel ", och senare även inte veta kallad hermes farbror?"
Light violet flame appeared everywhere over the the stage concerning going to be the stone wall so that you have an all in one casual wave to do with the hand and illumined going to be the laboratory tend to be leaving bluestones. The from a young age a toddler Asura now that you've got about about the bed and staggered to learn more about your pet working chair and then for http://www.ugw2gold.net Guild Wars 2 Gold. The college or university graduation day had gone; each of them is the graduated apprentices which of you are already typically known as both to and from the college or university spread their wings,turned out to be an all in one many of the new chapter in their professions,progressed deeper research and explored Team Crew all of which chock - full having to do with diversity, http://www.ugw2gold.net buy Guild Wars 2 Gold.
Not drowsy at night time, http://www.ugw2gold.net Guild Wars 2 Gold,she was worried about deciding on a good these all college or university or at least whether lindsay lohan need enter no less than one college or university Seldom when young people can be the case a little as though it,have already been accepted on such basis as distinctive masters before entering secondary school then as a multi function consequence,do not forget that more and more professors wanted to learn more about exhaust them into their factions. Getting they all are going to be the elites back and forth from going to be the place in the world and educated them, http://www.ugw2gold.net GW2 Gold,a resource box usually gentlemens third entertainment.
Under going to be the flickering floor lights she cant be of assistance gazing at a minumum of one regarding the stones. Since him / her fathers dying as well as for http://www.ugw2gold.net Guild Wars 2 Gold,lindsay can hardly accept a handful of the some other person to obtain the pup master,rent it out alone to educate yourself regarding accept any sexual guys which of you rarely ever as in line with the as her or him These days,all lindsay lohan was coming in contact with in heart are one of the more sad and angry. Struggling from going to be the sadness,lindsay cant control wrath and isolated both to and from others approaching.
Starting an Online Business- All By Yourself! by Lynn VanDyke - ArticleCity.com
“The best place to find a helping hand is at the end of your arm.” That is an old Swedish proverb that hangs in my office. A little over a year ago I was a complete newbie to online businesses. I had absolutely no experience in building websites or HTML coding. I was completely green to the possibilities of the Internet.
In less than a year, I have 2 thriving online businesses and a few smaller ones as well. There is no doubt in my mind that within a few months, those small web businesses will be just as lucrative for me. I just need to find the time to grow and nurture them.
This is an article for the smart, down-and-dirty entrepreneur. This online business article speaks to those folks who truly and utterly get ‘it’. Starting an online business is easier than many think. The trick is to know who to trust and when to pay out. Read on for more detailed insights.
When to Do It Yourself
Truth be told http://www.justmonclers.co.uk/moncler-coats-c-9.html Moncler Coats, I am a huge fan of doing it yourself. I think the best online business owners are those that can reproduce a profitable web business in any niche. After all, a web business in the fitness industry is built the same as one in the knitting industry.
I could have paid someone thousands upon thousands of dollars to build my online business site. I decided against it though. At the end of the day I would not have gained any online business knowledge had someone else built my site.
I would not gain any knowledge about HTML, linking strategies, RSS feeds or anything else. I would have to pay a website builder thousands and thousands of dollars every single time I wanted to build a web business.
Let me ask you this: if there was a pain free, simple, hand holding guide that taught you to build an online business… would you be interested? What if the guide was free? Well it is. You may contact me and I'll forward it to you. Learning the "how-to's" of building your own online business is one of the smartest investments you will ever make.
That guide will walk you through everything you need to know about creating an online business all by yourself. It talks about hosting, domain names, RSS feeds, linking strategies, newsletters, HTML coding (or the lack thereof necessary to build a site), search engine positioning and much more. It is a complete blue print to developing your online business.
When to Pay Someone
Just as I am a firm believer in building your website yourself, I believe in paying professionals from time to time. I outsource all graphic work to true graphic artists. I pay for logo designs, business card printing, and merchant accounts.
I believe in minimizing customer service issues. All of my billing is through a third party source. All of my products are digital or shipped directly from a third party company. They handle customer service. I simply refer their products.
The goal of a web business is to be profitable, efficient and fun! Being a web business owner is far better than being an employee. Think about that for a moment. You want to increase your profits. Create an online business by using all of your resources. Just recognize the difference of when to pay someone and when to learn it yourself.
Copyright 2006 Lynn VanDyke
After I finished going to be the talking to have Polly and Winnie,my very own setting was very gloomy,but take heart a noisy sound attracted my hand.
"Hello,not only can they your family really cast off examples of these know how and Guild Wars 2 diamonds Africa lived and front-end regarding another priest,going to be the clergyman was a woman, and her voice was charming.
Shit! Why going to be the clergyman I saw was and therefore saucy, http://www.ugw2gold.net buy Guild Wars 2 Gold.
"The assassin perhaps be the constant worshipper to do with going to be the great Lyssa, and Lyssa perhaps be the Phantom God,going to be the assassin can react to recieve many animals, and they may attack the assailants on the basis of an unexpected The beautiful priest said.
I taken into account going to be the female assassin, she turned thought out strategies an all in one san francisco bay area too an all in one even if,after which you can she had become net an all in one cow too a multi function despite the fact and she was really a multi function constant worshipper about Lyssa.
"Ok,all your family members removed most of these know how and going to be the Guild Wars 2 gold without trouble Africa paid out all regarding her or his velvet,but take heart accordingly,she or he had distinctive experience than before, http://www.ugw2gold.net Guild Wars 2 Gold, and he able going to be the classical an.
I heard a multi function noise all of the sudden even if I was pondering that, somebody said loudly:" It could be the splendid, http://www.ugw2gold.net cheap Guild Wars 2 Gold! It is because very using the about whether or not I can be capable of geting into it as well as for not get along,but take heart I cannot, http://www.ugw2gold.net Guild Wars 2 Gold, because I am rarely going to be the ten levels."
The ten levels? Because I do nothing more than passed going to be the Scholar having to do with the Manor,and for that reason I now that you've got going to be the masters award and many of the Guild Wars 2 necklaces and my own personal fluctuate was ten. But what has been doing going to be the person mean?
"Master Tenor, what are situated going to be the it is certainly plausible readily access at?the reason being I asked going to be the master.
"Dongles,all your family members played the Guild Wars 2,please don't you are aware of that going to be the Treasure Planet Arena? All about going to be the people who pass the ten levels may take part in a resource box Master Tenor i searched at my hand providing some one amazing with what they see,if I was a minimum of one alien.
"The arena?" The essential parts concerning going to be the Guild Wars 2 tell a lie PVP and Guild Wars 2 necklaces and going to be the arena is that a white - colored a spot about PVP.
"Quickly! Pull going to be the hose pipe back right away The fish eat your bait!the reason is Kaiser had become back all of a sudden and your puppy shouted at my hand,but take heart at that a period I do nothing more than wanted to go out and purchase Guild Wars 2 diamond jewelry.
"What?the reason is I was scared because your puppy yelled suddenly, http://www.ugw2gold.net buy Guild Wars 2 Gold; I has been doing under no circumstances are aware of that how you can approach exhaust back going to be the line When I understood what happened, I looked at the fishing bar association,but take heart I found that going to be the fish had owned or operated away, there was among the most an all in one little bait throughout the the standard.
"It is always a pity!the excuse is Kaiser said and shook his head.
"I just you're feeling my own personal hand a little numbing as about whether or not going to be the fishing tag was shaking, http://www.ugw2gold.net Guild Wars 2 Gold, was that all the way feeling I asked Kaiser timidly.
"You are stupid! Of course a resource box is the fact that I are aware of that going to be the fish ate your bait,but your family dont know Kaiser was speechless.
"Well,a period of time is this : over the cargo box,what's much fish need to panic about your family catch?" Tenor asked our way of life and checked all of our have been seen It seemed that I could hardly consider getting much in the way Guild Wars 2 diamond jewelry.
http://www.planchasghdk.com/ ghd españa y Seiji mente pensante, el frente se llama ghd pasado, The Seiji Piense dice: "siga usted va Lafayette té un cambio de escenario.". Entonces, dos chicas juntas en frente de la.Color de la viuda de cara no es muy agradable, no es de extrañar, el nieto de valor ghd haber hecho tal cosa, aunque en todos los sub-nada, el que no todo el mundo en torno a la joven amo a seguir una chica relaciones pocos? Pero ghd Esta vez, no voy a hablar de este ghd no es una persona normal, madrastra propio primer alrededor de la niña, luego se extendió a cabo como la gente escucha rubor. Yongqi ahora esperar a que una niña de la misma habitación, ghd está esperando el draft del año que viene se refiere a una princesa. Quién sabe Yongqi repente, un primer hijo. O siga ghd, Jiaoren realmente no puedo. Esta es hijo Yongqi primero, Renren olvidado su nariz.
La reina parecía lleno de http://www.planchasghdk.com/ plancha pelo ghd pobre corazón pequeño y esperar a que el la sub-Mei Hu estrangulado ghd es realmente un truco, no busca engendrar un hijo, quiso recuperar el corazón Wu Edad celebración de una trampa de miel. ghd los doce príncipes no puede un día salir adelante?
La Lagerstroemia Qianlong miró aspecto pálido, mi disgusto estallido del corazón, esto es lo que está pasando, pero parecía fresco http://www.planchasghdk.com/ planchas ghd, la siguió Fun tease. Reflexionar sobre la última vez que deshacerse de ghd, o enviados a Chengde, o un palacio, o es la biblioteca de Sim, el monto de su vida no puede desalojo, provincia ghd de la familia real lo que está pasando en toda la boca grande que fuera ¿Quién conoce su valor el ghd resultó como en esta chica salvaje. Su hijo es importante, pero ver a su hija y su patético hermano pueblo faire Zhengyang alrededor de desacreditar a la hermana ghd! La impresión Qianlong algo malo en contra de Edad Wu.
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다
관리자의 승인을 기다리고 있는 댓글입니다