Message to Visitor

Hello and good day! Thanks for visiting Denizignko! For request or suggestions email us @ denztriker@gmail.com or officialdenizignko_23@yahoo.com.
Send us message of you want to use our sources for your website or for personal purposes.
Thanks,
ADMIN

Total Pageviews

denizignko and denztriker 2011. Powered by Blogger.

Thursday, March 12, 2015

3D Text [Blender Video Tutorial]



3D Simple Chair [Blender Video Tutorial]


Tuesday, August 26, 2014

Particle illusions Installation Tutorial

Sunday, August 17, 2014

Text Poster Effect Photoshop Tutorial (Slideshow)

Sunday, July 20, 2014

Behance Account and Portfolio


Check out my works in Behance: https://www.behance.net/dennisevangelista

Friday, June 27, 2014

Top 5 Free SWF FIle Hosting Sites

Here is my top 5 list of Websites that you can upload your SWF files online and get the link to add in your website.

1. FastSWF

Disciple Artworks - Bible Verse Designs

Corel Draw X3 Installation Guide

Run the Corel Draw X3 installer.


Wednesday, June 25, 2014

Simple Text Fade - Macromedia Flash (RUSH Tutorial)

No intro for this time, Let's start the tutorial.
Insert Text in the Stage. I used the word "DEN" in this tutorial.


Friday, June 20, 2014

Easy moving car - Macromedia Flash Tutorial for Beginners


Here is the video.

Thursday, June 19, 2014

Simple Logo Tutorial - Corel Draw

Tuesday, June 17, 2014

The Interface - Macromedia Flash 8

Hello World - Android Development

Let's have our first Android Application. Open your Eclipse software. Then go to FILE >>> NEW >>> PROJECT, then select ANDROID NEW APPLICATION. Then a dialog box will pop out. Fill in the textbox as follows:


Then click Next.


So we have here the dialog box to configure our launcher icon for the app, just play around, look for a good icon, change the scale, shape or background. Or if you don't need that, just click Next.


Click Next.


Then you can change the name of the Activity, but in my case, I didn't change it.


If your created the project, you will have the interface of Eclipse like this one below.


Before that, we should need to understand the following section of application files. At the left side of the Eclipse, we have the Project Explorer.



The MainActivity.java is the main activity code. From the image below, it is located inside src>>>com.example.helloworld.


This is the actual code wherein converted into a executable file and runs your application. Below is the example code for the MainActivity.java.


Any component you develop in your application, you must first declare the components in a manefest file, which is called as the AndroidManifest.xml. It is located below res folder.


The AndroidManifest.xml will serve as your interface of your application and the Android OS. If you did not declare your component in this file, then the OS will not consider it. Below is a sample code for AndroidManifest.xml.


Next, we have hrere the Strings file and also known as Strings.xml. Located inside res folder, then in values folder. Double click on it to open.


 

The names of labels, text, button go into this file. It is responsible for the textual content.




Next, we have here the R.java. It is considered as a glue between the activity Java files like the MainActivity.java and the resources like strings.xml. This file is automatically generated and remember not to modify this file. Never modify this file! Here is an example code of R.java.


And last, the Layout file. in our case, fragment_main.xml is our layout file. Modifying this file frequently is changing the layout of your application. Below is an example of the code. 


Then, let us try to un our program "Hello World". In creating AVD just click here (AVD Tutorial). To run the application from Eclipse, open one of the project's activity files and click on Run button. It looks like this.


Then Eclipse install your app to the AVD and starts it and it will display your application.

Hooray! You just developed your first Android Application.

Monday, June 16, 2014

JDK Installation - Android Development Tutorial

Android SDK Installation - Android Development Tutorial