Video 1: Production Progress
This second week of the class is the production time for our individual project of Video 1 Class. I used this whole week to prepare the properties I will be using during the production process and start shooting the scenes. As I have mentioned before, I make my own white background during the shooting process. These are some of the footage that I got so far:
And these are some of the reverse scenes that will be proceed to further editing process:
Video 1: Individual Project – Story line and Story board
Story line:
Video 1- Individual Project – Non Narrative Movie
Story Board:
During the shooting session, I plan to use a plain white background to represent purity and make a huge contrast with the symbol of the waste, which is the black liquid, also, to make the nature representation objects the focal points in every scenes. To make the process consumes less budget, I want to make my own shooting set with the reference I got from the internet. Here is the reference of DIY mini photo studio:


Video 1: Individual Project – Mindmap and Concept

I decided to choose the reverse movie out of the two initial ideas that I have mentioned on the previous post. I am interested in how people in the society nowadays is doing something that, whether they know it or not, is bad for the natural ecosystem without even thinking about the effect of their action. Once they realized that they have damaged the environment, they will be panicking on trying to “restore” and undo their action, then, they started to regret that.
Based on that environmental issue, I try to convey a message through this non narrative movie. The message of the movie is about the effect natural destruction from human activity that cannot be undone as easy as reversing a movie video and it might not possible to be completely restored because, in real life, the time will keep going by.
The movie be using a regular and reverse scene. The regular scene recording will show the “contamination” process. Whereas, the reverse scene will represent the “restoration” or “healing” process. Those scenes will be using a little bit of slow motion effect to increase the dramatic sense in the scenes.
Video 1: Class Introduction
In this class, we are given an individual project of non narrative films. In this project, because I am the only student in class who have not understand the meaning of non narrative movie nor seen any example. I have to do some research to help me understand the project better.
Based on my research, I catch that the non narrative movie is different from narrative movie based on their organisational structure. Non narrative movie is a movie that de-emphasizing the element of narrative or story, but emphasising other elements such as repetition, contrast, and other patterns. It can contain some stories, yet they are just a secondary elements. A narrative movie is related to the non fiction movie as a documentary movie.
I come up with an idea to make a documentary movie focusing on the sound recorded from the scenery in Jakarta, the noise and silence/subtle voice from the human activity in Jakarta. The idea is to show the contrast voices (loudness and quietness/softness) in the recorded scenery in Jakarta. I have a plan on recording scenery of people talking and sleeping inside the commuter line, the children’s laugh while they are playing, and the noise from vehicle horn in the middle of the traffic. However, there will be some difficulty in capturing the spontaneous events like that.
I also have an idea of making a reverse movie about destruction and reconstruction. The idea is to show how something is destructed or “damaged”, and then how it will be reconstructed or “healed.” The reverse (rewind) video of the previous scenes will be played to show the satisfying reconstruction process. However, as we know that most of the effects of destructive processes cannot be healed easily as if it was a “reversed” movie scenes. But, I am still unsure of whether the scenes will be taken in outdoor or indoor area.
I hope I could develop one of those idea for this class’ individual project. I will continue the mind map, story line, and story board, once I have chosen the right concept.
Intro to Interactive Media – Game
In these scene, sea turtle need clean beach to lay eggs. User need to clean up the beach.
Here is the action script 3 for the drag and drop game:
stage.addEventListener(Event.ENTER_FRAME,EntFrame);
function EntFrame(e:Event):void
{
//Waste1//
Waste1MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
function fl_ClickToDrag(event:MouseEvent):void
{
Waste1MC.startDrag();
}
Waste1MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
function fl_ReleaseToDrop(event:MouseEvent):void
{
Waste1MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste1MC))
{
Waste1MC.x = TarMC.x;
Waste1MC.y = TarMC.y;
Waste1MC.stopDrag();
}
//Waste2//
Waste2MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
function fl_ClickToDrag_2(event:MouseEvent):void
{
Waste2MC.startDrag();
}
Waste2MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);
function fl_ReleaseToDrop_2(event:MouseEvent):void
{
Waste2MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste2MC))
{
Waste2MC.x = TarMC.x;
Waste2MC.y = TarMC.y;
Waste2MC.stopDrag();
}
//Waste3//
Waste3MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);
function fl_ClickToDrag_3(event:MouseEvent):void
{
Waste3MC.startDrag();
}
Waste3MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);
function fl_ReleaseToDrop_3(event:MouseEvent):void
{
Waste3MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste3MC))
{
Waste3MC.x = TarMC.x;
Waste3MC.y = TarMC.y;
Waste3MC.stopDrag();
}
//Waste4//
Waste4MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_4);
function fl_ClickToDrag_4(event:MouseEvent):void
{
Waste4MC.startDrag();
}
Waste4MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_4);
function fl_ReleaseToDrop_4(event:MouseEvent):void
{
Waste4MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste4MC))
{
Waste4MC.x = TarMC.x;
Waste4MC.y = TarMC.y;
Waste4MC.stopDrag();
}
//Waste5//
Waste5MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_5);
function fl_ClickToDrag_5(event:MouseEvent):void
{
Waste5MC.startDrag();
}
Waste5MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_5);
function fl_ReleaseToDrop_5(event:MouseEvent):void
{
Waste5MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste5MC))
{
Waste5MC.x = TarMC.x;
Waste5MC.y = TarMC.y;
Waste5MC.stopDrag();
}
//Waste6//
Waste6MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_6);
function fl_ClickToDrag_6(event:MouseEvent):void
{
Waste6MC.startDrag();
}
Waste6MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_6);
function fl_ReleaseToDrop_6(event:MouseEvent):void
{
Waste6MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste6MC))
{
Waste6MC.x = TarMC.x;
Waste6MC.y = TarMC.y;
Waste6MC.stopDrag();
}
//Waste7//
Waste7MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_7);
function fl_ClickToDrag_7(event:MouseEvent):void
{
Waste7MC.startDrag();
}
Waste7MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_7);
function fl_ReleaseToDrop_7(event:MouseEvent):void
{
Waste7MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste7MC))
{
Waste7MC.x = TarMC.x;
Waste7MC.y = TarMC.y;
Waste7MC.stopDrag();
}
//Waste8//
Waste8MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_8);
function fl_ClickToDrag_8(event:MouseEvent):void
{
Waste8MC.startDrag();
}
Waste8MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_8);
function fl_ReleaseToDrop_8(event:MouseEvent):void
{
Waste8MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste8MC))
{
Waste8MC.x = TarMC.x;
Waste8MC.y = TarMC.y;
Waste8MC.stopDrag();
}
//Waste9//
Waste9MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_9);
function fl_ClickToDrag_9(event:MouseEvent):void
{
Waste9MC.startDrag();
}
Waste9MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_9);
function fl_ReleaseToDrop_9(event:MouseEvent):void
{
Waste9MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste9MC))
{
Waste9MC.x = TarMC.x;
Waste9MC.y = TarMC.y;
Waste9MC.stopDrag();
}
//Waste10//
Waste10MC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_10);
function fl_ClickToDrag_10(event:MouseEvent):void
{
Waste10MC.startDrag();
}
Waste10MC.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_10);
function fl_ReleaseToDrop_10(event:MouseEvent):void
{
Waste10MC.stopDrag();
}
if (AreaMC.hitTestObject(Waste10MC))
{
Waste10MC.x = TarMC.x;
Waste10MC.y = TarMC.y;
Waste10MC.stopDrag();
}
}
Technopreneurship: Product Progress
Business Model Canvas:
Product Logo:
This is the progress for the product logo. I have 2 options for the product name which is MAMAMASK and MOMASK. Both use typography in pink color to show feminine impression and also love from the mother to her baby and to herself (self-care during pregnancy). The leave shape shows the organic value its product carries for using natural ingredients. The typography is using sans-sherif to depict modernity and simplicity of the product to be used as a skin treatment for modern mothers who is busy but still want to give special care to theirselves during their pregnancy.


Product Packaging:
I plan to use this brown Kraft packaging with aluminum plating on the inside and also plastic zipper to prevent leakage. It is also important to keep the product’s life last longer (aluminum doesn’t create any reaction with the ingredients and the plastic zipper reduce the contact with open air and create and air-tight space).

This is the design of the font-part of the packaging:


Product-making Progress:
I have tried to make the product using gelatin and glycerine mixture with additional of natural collagen to create a gel-like material for the mask. I also add few drops of coconut oil, aloe vera gel, and lemon water to the mixture to enrich the mask’s benefit. After the third time of the experiments, I found a consistency that might work for further development of the product. However, it is hard to find the correct tools and size for the mould to print the mask sheet.
Technopreneur Project: Product Idea 3
This is the third idea for my product and the most likely chosen for this project because I think I can improve the product more. My third idea is to make a belly mask for pregnant woman. I get this idea when I talked to my mom through the phone. Suddenly, she starts talking about the stretchmarks she got due to the three times pregnancy that she has been through when she carried me and my two other siblings.
My mom told me that we can minimized it and the itchiness since the early stage of the pregnancy with baby oil. Then, I think it would be better if there is a customized product that is specially made for the pregnant woman that gives a soothing effect for their bellies and reduce the stretchmarks. So, I have an idea to make a belly mask from a gel like materials, just like the facial mask that I have ever tried because I think the gel mask is more moisturizing and soothing for the skin than the clay or regular sheet mask.
After some research, I found that the best material for the belly mask that has the gel-like texture is the hydro gel. I also plan to produce an organic belly mask that contain no chemicals. So, that it will be safe for the pregnant woman and their fetus. I have to look further for the safe and suitable natural ingredients to put into my belly mask.

Initial Product Design:





