Hi ! My name is Chawisa, anyone can called me Kate. I am interested in social media, social media marketing,
programming, entertainment, web design, blogger design. I love to watch CAT Photography. Mostly the contents concern with my work experience. I have noted the solution for fixing the problems during my work (n_n).
Have a Nice Day.
Video นี้เป็นการทำตลา่ดผ่านโลก Social Network คือ การบอกปากต่อปาก Viral Marketing นั่นเอง
และที่โดดเด่นคงหนีไม่พ้นของมนต์เสน่ห์ในโลก Social คือ การแลกเปลี่ยนประสบการณ์ Sharing Experience
"แฉะยิ้มกับฉันสิ!!" << ผู้เขียนตั้งเอง อิอิ เป็นแบรนด์ของน้ำผลไม้ เคมเปญดังกล่าวคือการสร้าง App บนเฟสบุค โดยใช้เทคโนโลยีการตรวจจับใบหน้ามาตรวจสอบรอยยิ้ม :) (The company used face-recognition technology to recognize those smiles.) โดยลูกค้าต้องถ่ายรูปภาพตัวเองภาพทาง Web Camera และต้องยิ้มด้วยนะ ผลการตอบรับมากกว่า 20,000 แฟนที่อัพโหลดรูปถ่าย และมากกว่า 30,000 แฟนที่มาคลิก Like นอกจากสนุกแล้วพวกเค้าจะยังติดหูอีกด้วย เพราะจะมอบรายได้ส่วนหนึ่งให้กับการกุศล (เหมืิอนบ้านเราช่วงภัยสึนามิที่ญี่ปุ่นต้นปี 2011 เลย)
5. Your Very Own Mad Men Ad — Mad Men Season 4 in the Netherlands
function ThaiBaht(Number)
{
//ตัดสิ่งที่ไม่ต้องการทิ้งลงโถส้วม
for (var i = 0; i < Number.length; i++)
{
Number = Number.replace (",", ""); //ไม่ต้องการเครื่องหมายคอมมาร์
Number = Number.replace (" ", ""); //ไม่ต้องการช่องว่าง
Number = Number.replace ("บาท", ""); //ไม่ต้องการตัวหนังสือ บาท
Number = Number.replace ("฿", ""); //ไม่ต้องการสัญลักษณ์สกุลเงินบาท
}
//สร้างอะเรย์เก็บค่าที่ต้องการใช้เอาไว้
var TxtNumArr = new Array ("ศูนย์", "หนึ่ง", "สอง", "สาม", "สี่", "ห้า", "หก", "เจ็ด", "แปด", "เก้า", "สิบ");
var TxtDigitArr = new Array ("", "สิบ", "ร้อย", "พัน", "หมื่น", "แสน", "ล้าน");
var BahtText = "";
//ตรวจสอบดูซะหน่อยว่าใช่ตัวเลขที่ถูกต้องหรือเปล่า ด้วย isNaN == true ถ้าเป็นข้อความ == false ถ้าเป็นตัวเลข
if (isNaN(Number))
{
return "ข้อมูลนำเข้าไม่ถูกต้อง";
} else
{
//ตรวสอบอีกสักครั้งว่าตัวเลขมากเกินความต้องการหรือเปล่า
if ((Number - 0) > 9999999.9999)
{
return "ข้อมูลนำเข้าเกินขอบเขตที่ตั้งไว้";
} else
{
//พรากทศนิยม กับจำนวนเต็มออกจากกัน (บาปหรือเปล่าหนอเรา พรากคู่เขา)
Number = Number.split (".");
//ขั้นตอนต่อไปนี้เป็นการประมวลผลดูกันเอาเองครับ แบบว่าขี้เกียจจะจิ้มดีดแล้ว อิอิอิ
if (Number[1].length > 0)
{
Number[1] = Number[1].substring(0, 2);
}
var NumberLen = Number[0].length - 0;
for(var i = 0; i < NumberLen; i++)
{
var tmp = Number[0].substring(i, i + 1) - 0;
if (tmp != 0)
{
if ((i == (NumberLen - 1)) && (tmp == 1))
{
BahtText += "เอ็ด";
} else
if ((i == (NumberLen - 2)) && (tmp == 2))
{
BahtText += "ยี่";
} else
if ((i == (NumberLen - 2)) && (tmp == 1))
{
BahtText += "";
} else
{
BahtText += TxtNumArr[tmp];
}
BahtText += TxtDigitArr[NumberLen - i - 1];
}
}
BahtText += "บาท";
if ((Number[1] == "0") || (Number[1] == "00"))
{
BahtText += "ถ้วน";
} else
{
DecimalLen = Number[1].length - 0;
for (var i = 0; i < DecimalLen; i++)
{
var tmp = Number[1].substring(i, i + 1) - 0;
if (tmp != 0)
{
if ((i == (DecimalLen - 1)) && (tmp == 1))
{
BahtText += "เอ็ด";
} else
if ((i == (DecimalLen - 2)) && (tmp == 2))
{
BahtText += "ยี่";
} else
if ((i == (DecimalLen - 2)) && (tmp == 1))
{
BahtText += "";
} else
{
BahtText += TxtNumArr[tmp];
}
BahtText += TxtDigitArr[DecimalLen - i - 1];
}
}
BahtText += "สตางค์";
}
return BahtText;
}
}
}
credit : thaicreate.com
sss
The three “commands” involved in creating alert, confirm, and prompt boxes are:
window.alert() window.confirm() window.prompt() Lets look at them in detail. The first one is:
window.alert() This command pops up a message box displaying whatever you put in it. For example:
<body>
<script type="text/javascript">
window.alert("My name is George. Welcome!")
</script>
</body>
As you can see, whatever you put inside the quotation marks, it will display it.
The second one is:
window.confirm() Confirm is used to confirm a user about certain action, and decide between two choices depending on what the user chooses.
<script type="text/javascript">
var x=window.confirm("Are you sure you are ok?")
if (x)
window.alert("Good!")
else
window.alert("Too bad")
</script>
Click here for output:
// There are several concepts that are new here, and I’ll go over them. First of all, “var x=” is a variable declaration; it declares a variable (“x” in this case) that will store the result of the confirm box. All variables are created this way. x will get the result, namely, “true” or “false”. Then we use a “if else” statement to give the script the ability to choose between two paths, depending on this result. If the result is true (the user clicked “ok”), “good” is alerted. If the result is false (the user clicked “cancel”), “Too bad” is alerted instead. (For all those interested, variable x is called a Boolean variable, since it can only contain either a value of “true” or “false”).
The third one is:
window.prompt() Prompt is used to allow a user to enter something, and do something with that info:
Click here for output:
<script type="text/javascript">
var y=window.prompt("please enter your name")
window.alert(y)
</script>
Advertising Agency, Internet/Online/New Media, Marcomm, Marketing, Public Relations, Social Media
Salary
Competitive
Benefits
401K/403B, Bonuses, Dental, Flexible Hours, Health
Job Duration
Full Time
Job Location
Washington, DC USA
Job Requirements
Talent Seeks Agent
Threespots Marketing/Communications Manager helps grow the visibility, awareness, and opinion of Threespot in the marketplace. The ideal candidate is a media-savvy individual who will help define and develop a channel, content, and editorial strategy for the Threespot brand, then create effective materials to populate those channels. The individual will help position Threespot, ensuring any communications help cultivate a positive, consistent, and appropriate impression of who we are, what we do, and why it matters.
Primary Responsibilities
* Devises, revises, manages, and executes against Threespots external marketing and communications strategy.
* Manages and/or executes against specific channel strategies and tactics.
* Develops, updates, edits, and maintains copy for all Threespot touchpoints (case studies, marketing collateral, Threespot.com, etc.).
* Coordinates and supports Threespots social media efforts (Threespot blog, Facebook, and Twitter).
* Identifies appropriate events for attendance, speaking, and/or sponsorships; develops topics to submit for speaking engagements; and coordinates/spearheads Threespots presence.
* Defines and executes a strategy for expanding/improving Threespot.com.
* Identifies appropriate PR opportunities for promoting Threespot; develops and disseminates press releases for significant project launches, awards, and agency events.
* Identifies appropriate media outlets for the Threespot brand and cultivates relationships with those outlets.
Qualifications
* Excellent written and spoken communication skills.
* BA/BS or advanced degree in English, PR, marketing communications, or advertising preferred.
* 2-3 years of experience, preferably at an agency, PR firm, or an in-house marketing division, with at least of that experience focused on digital mediums.
* Exceptional creativity, enthusiasm, sense of humor, team spirit, commitment, and professionalism.
* Ability to meet tough deadlines and juggle multiple projects.
* Please include a link(s) to any writing portfolio or writing samples.
About Our Company
Threespot is an independent digital engagement agency that crafts experiences and connections between brands and consumers. We help brands connect with people in the digital space, while staying true to what they stand for. It all starts with smart positioning, inspired design, and seamless code. Then we throw in the cumulative insights of four dozen culture geeks. Thats us.
Example of Social Media Job : To clarify of this position. May be this is useful for Thai Organization about
Job Description and Job Qualification. I hope my experience will be the case study for Thai organization
which set new social media position. I am lack of Skills, Studies, Knowledge. This is my challenge and
I have failed experience from my challenge. ^^ I must speak with myself this is just a Game, Business.
I lost this game and lost myself because I have lack of knowledge. I can’t edit or change of my past.
I just hope tomorrow is my sunshine day ^^
Let’s make the most of the shortest of all months, with a new collection of
desktop wallpapers celebrating new opportunities, sweet memories, happy
little ...
From the data recorded from 2015, the International telecommunication union
(ITU) has stated that nearly 43% of the world population uses the internet.
A...
Best Font for Clothing Brand
-
When it comes to creating a clothing brand, every single detail
matters—whether it is the colors of the shirts, the look of the designs,
the materials yo...