Flash Video For My Website

Flash Video For My Website

hello, I am looking for someone who can make me flash video that i add to my site (http://pinoyhomebusiness.com: the video that i saw is something like this:

http://www.wfhweb.com/rjsg

of course, i dont need all those effects, wordings are much more important to me. and there should be asian, preferably filipino images on the video — just like the header in my site.

i want the flash video to be uploaded on youtube, so that i will just copy the code and paste it on my webpage.

i want the wordings on the said website, but just add this tag lines:

-make money wearing just your pajamas
– have more time with your family
-single moms are even highschool graduates can do it, no higher education required.
– want to earh easy PHP 15,000 a month — this is just part time.
-sell unlimited products in ebay.ph and sulit.com.ph
-never run out of products
—the best part, it’s free to join. easy sign -ups.

Mobile Social Network

Mobile Social Network

Hi,
i want to buy a mobile social network script.
features i need are..
ability to create unlimited albums(pics,videos,apps)
comment,rate created albums
user profile & albums can be set to public/private(can be view by friends)
blogs with rate,comments options
forum
unlimited chatrooms(private/public)

secure / well optimized / w3c verified coding.

Assignment 7

Assignment 7
Assignment # 7 – CSE 205

Due: Tuesday March 23rd by 8:00PM

Requirements to get full credits in Documentation

The assignment number, your name, StudentID need to be included at the top of each file/class.
An overview/purpose of each class needs to be described at the top of each class.
A description of each method is also needed.
Some additional comments inside of methods to explain codes that are hard to follow should be written.
You can look at the Java programs in the text book to see how comments are added to programs.

Minimal Submitted Files

You are required, but not limited, to turn in the following source files:

Assignment7.java (The Assignment7 class extends JApplet)
Rect.java
WholePanel.java (It extends JPanel) — to be completed.
You may add more classes or more methods as needed.

Skills to be Applied:

Swing/AWT

Some of the classes needed:
JApplet, JButton, Container, JPanel, JSplitPane, JComboBox, Color, Font, Graphics, ActionListener, KeyListener, and MouseListener. You may use other classes too.
How to run an applet program:

-Create an html file, say “hw7.html” with the following content:
——————————————————–

<HTML>
<HEAD>
<TITLE>Assignment 7 Applet</TITLE>
</HEAD>
<BODY>

<applet code=”Assignment7.class” width=550 height=250>
</applet>

</BODY>
</HTML>
——————————————————
-Compile your java program as usual.

-In a console, type:

appletviewer hw7.html

(instead of typing “java Assignment7”).

-In the TextPad, choose Tool->Run Java Applet or
press Ctrl-3 (press control key and 3 at the same time).

-In the jGrasp,
choose Run->Run as Applet.

Program Description

Suggested Class Diagram: (.ppt file is available for this figure)

Write a Java program that constructs an Applet.

The Applet (JApplet) of your program should contain two buttons “Undo”, “Erase” , a JRadioButton , and ButtonGroup where a user can select a color to draw a rectangle on a panel where all rectangles are drawn.

(The size of the applet here is approximately 400 X 400).

A user can move a mouse into the drawing area and drag the mouse to draw a rectangle. The default color is black, so the first time, the rectangle will appear in the drawing area with black color.

A user can continue drawing more rectangles. Note that the rectangles remain on the panel.

A user can choose another color from the radio Buttons located on the left corner. After selecting a color, a user can press somewhere in the drawing panel again, and draw another rectangle on the screen with the chosen color.

When a user pushes the “Undo” button, the last drawn rectangle will be erased from the drawing area. Thus if a user keeps pushing the “Undo” button, eventually all rectangles will be erased.

Class description

Rect class
The Rect class represents a rectangle to be drawn in the panel. It contains at least the following instance variable:

Attribute name
Attribute type
Description
x
int
x-coordinate of the rectangle to be drawn.
y
int
y-coordinate of the rectangle to be drawn.
color
Color
color of the rectangle
width
int
width of the rectangle
height
int
height of the rectangle
This class should have a constructor:

public Rect(int x1, int y1, int width, int height, Color color)

where the parameters x and y are (x,y) coordinate of where the rectangle is drawn, and color is the color of the rectangle.

This class should also contain the method:

public void draw (Graphics page)

In this method the fillRect is called by passing the x, y coordinates, the width and the height.

CanvasPanel class
The CanvasPanel class extends JPanel defined in javax.swing package. This is where rectangles are drawn. The Background of this panel is white. It must contain the following method.

public void paintComponent(Graphics page)

Using the parameter, the Graphics object, will draw rectangle with a selected color. This can be done by calling the draw method in the class as well. Remember that this method need to call paintComponent method defined in its parent class.

WholePanel class
The WholePanel class organizes all components in the applet. It extends JPanel defined in javax.swing package. It contains at least the following instance variable:

Attribute name
Attribute type
Description
rectList
ArrayList
A list of rectangles drawn by the user.
This class should have a constructor:

public WholePanel()

This is where all components are arranged. Add as many instance variables as you need, and instantiate them in this constructor. One way is to instantiate a CanvasPanel and canvas panel is where rectangles will be drawn, thus it will be listening to mouse.

ButtonListener class
The ButtonListener class implements ActionListener interface defined in java.awt.event package. It must implement the following method:

public void actionPerformed(ActionEvent event)

In this method, based on the “Undo” button or “Erase” the last drawn rectangle or all the rectangles should be erased. Note in case there is no rectangle drawn in the drawing panel, nothing will happen even when the “Undo” button is pushed. You should make sure that your program does not crash in this case. The “Erase” button it clears the list and repaint the canvas..

ColorListener class
The ColorListener class implements ActionListener interface defined in java.awt.event package. It must implement the following method:

public void actionPerformed(ActionEvent event)

In this method, the color chosen by a user using JRadioButton is assigned as a color to be used to draw the rectangle.

PointListner class
The PointListener class implements MouseListener and MouseMotionListener interface. It must implement the following method:

public void mousePressed (MouseEvent event)
public void mouseReleased (MouseEvent event)

// mouseReleased method takes the point where a mouse is released
//using the point and the pressed point to create a rectangle, add it to the ArrayList, and call paintComponent method.

public void mouseDragged(MouseEvent event) //mouseDragged method takes the point where a mouse is dragged, and call paintComponent nethod

Other methods from MouseListener can be left as blank.
Note that these listener classes and CanvasPanel class are defined as nested classes inside of the WholePanel class.

How to get started:

Download the following files and use them as a base of your program:
Assignment7.java

WholePanel.java

Step 1: Create PointListener class that implements MouseListener to get the point that a mouse is pointing. Use the point where the mouse is pushed instead of the fixed point (200,200) so that a rectangle can appear in different locations.

Step 2: Create Rect class so that each rectangle at a certain location can be stored as an object. Then create an ArrayList and store each Rect object in it. Rewrite paintComponent method so that it goes through each object in the ArrayList and draw them one by one.

Step 3: Add the “Undo” button, and create ButtonListener class to implement actionPerformed method. Also CanvasPanel needs to be created and move all functionality described so far for the WholePanel to CanvasPanel. If the”Undo” button is pushed, delete the last element of the ArrayList and re-draw.

Step 4: Then, create ColorListener class to change selected colors. The next rectangle will be drawn with the newly selected color.

Grading Policy:

submit assignment on time
indicate assignment number, name, lecture number, section id, email address, description of each class clearly in each submitted java file
your program minimally has the following functionalities:
1 point: “Undo” and “Erase” button, and JRadioButton appear properly on the applet.
2 points: The drawn rectangles are shown in the applet. (previous drawn rectangles should not disappear.)
1 point: The rectangle should appear at the same location as a mouse is pressed.
2 points: The rectangle is drawn with a selected color.
1 point: “Undo” button erases the last drawn letter.
1 point: “Erase” button erases all the rectangles

Assignment7.java

import javax.swing.*;

public class Assignment7 extends JApplet
{

public void init()
{
// create a WholePanel object and add it to the applet
WholePanel wholePanel = new WholePanel();
getContentPane().add(wholePanel);

//set applet size to 400 X 400
setSize (400, 400);
}

}

WholePanel Class

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.util.ArrayList;

public class WholePanel extends JPanel
{
private Color currentColor;
private CanvasPanel canvas;
private JPanel primary, buttonPanel, leftPanel;
private JButton erase, undo;
private ArrayList rectList, tempList;
private JRadioButton[] colorRButtons;
private Color[] colors;
private int x1, y1, x2, y2, x3, y3;
private boolean mouseDragged = false;

public WholePanel()
{
//default color to draw rectangles is black

//create buttons

//create radio buttons for 5 colors
//at the bginning, black will be chosen by default

//store 5 colors in an array

//group radio buttons so that when one is selected,
//others will be unselected.
ButtonGroup group = new ButtonGroup();
for (int i=0; i<colorRButtons.length; i++)
group.add(colorRButtons[i]);

//add ColorListener to radio buttons
ColorListener listener = new ColorListener();
for (int i=0; i<colorRButtons.length; i++)
colorRButtons[i].addActionListener(listener);

//primary panel contains all radiobuttons
primary = new JPanel(new GridLayout(5,1));
for (int i=0; i<colorRButtons.length; i++)
primary.add(colorRButtons[i]);

//canvas panel is where rectangles will be drawn, thus
//it will be listening to a mouse.
canvas = new CanvasPanel();
canvas.setBackground(Color.white);
canvas.addMouseListener(new PointListener());
canvas.addMouseMotionListener(new PointListener());

JSplitPane sp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPanel, canvas);

setLayout(new BorderLayout());
add(sp);
}

//ButtonListener defined actions to take in case “Create”,
//”Undo”, or “Erase” is chosed.
private class ButtonListener implements ActionListener
{
public void actionPerformed (ActionEvent event)
{

}
} // end of ButtonListener

// listener class to set the color chosen by a user using
// the radio buttons.
private class ColorListener implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
if (event.getSource() == colorRButtons[0])
currentColor = colors[0];
else if (event.getSource() == colorRButtons[1])
currentColor = colors[1];
else if (event.getSource() == colorRButtons[2])
currentColor = colors[2];
else if (event.getSource() == colorRButtons[3])
currentColor = colors[3];
else if (event.getSource() == colorRButtons[4])
currentColor = colors[4];
}
}

//CanvasPanel is the panel where rectangles will be drawn
private class CanvasPanel extends JPanel
{
//this method draws all rectangles specified by a user
public void paintComponent(Graphics page)
{
super.paintComponent(page);

//draw all rectangles
for (int i=0; i < rectList.size(); i++)
{
((Rect) rectList.get(i)).draw(page);
}

//draw an outline of the rectangle that is currently being drawn.
if (mouseDragged == true)
{
page.setColor(currentColor);
//Assume that a user will move a mouse only to left and down from
//the first point that was pushed.
page.drawRect(x1, y1, x3-x1, y3-y1);
}

}
} //end of CanvasPanel class

// listener class that listens to the mouse
public class PointListener implements MouseListener, MouseMotionListener
{
//in case that a user presses using a mouse,
//record the point where it was pressed.
public void mousePressed (MouseEvent event)
{
//after “create” button is pushed.

}

//mouseReleased method takes the point where a mouse is released,
//using the point and the pressed point to create a rectangle,
//add it to the ArrayList “rectList”, and call paintComponent method.
public void mouseReleased (MouseEvent event)
{

}

//mouseDragged method takes the point where a mouse is dragged
//and call paintComponent nethod
public void mouseDragged(MouseEvent event)
{

canvas.repaint();
}

public void mouseClicked (MouseEvent event) {}
public void mouseEntered (MouseEvent event) {}
public void mouseExited (MouseEvent event) {}
public void mouseMoved(MouseEvent event) {}

} // end of PointListener

} // end of Whole Panel Class

Link Building/article Writing

Link Building/article Writing
Hey Gang,
Ok another crazy idea.
I would like to post my Bukisa.com referal link in order to get folks to sign up for free and write articles to get paid.

The link should be added to relevent sites or blogs where useres would actualy care to sign up.

Artilces, blogs… Whatever… As long as its relevent..

I open to ideas on this one…

Bottom line is I would like good writers to sign up using my link

http://www.bukisa.com/join/49774

Ideas?

Pay based on sign up, based on placment, based on??????

Who can you get it done and what do you want to do it 🙂

Thanks!!!!!!

Adult-themed Blogger Needed

Adult-themed Blogger Needed
Regular blogger needed for OrgasmLab.com

Posting Requirements:
-5 blog posts per week with at least one image per post required, you will be given a stock photo account with credits from which to purchase photos. You will be required to crop/resize photo and insert it into your post. Frequency of posting will increase once a satisfactory working relationship has been established.

OrgasmLab.com was an abandoned sex-industry/sex-toy blog. We wish to find a reliable, entertaining blogger who can bring some personality to the table and revitalize it. Ideally you will be able to perform your own research and identify the right material to blog/post about. We wish to position OrgasmLab.com as a sex-niche gadget blog (think engadget.com or gizmodo.com only focused on sex and the adult industry). The successful candidate will have a playful, entertaining demeanor that carries through in their writing.

Examples of acceptable content:
-Links to funny, strange, or unique sex-toys, sites, videos, and services along with short, entertaining commentary.
-Links to recent news articles detailing interesting or funny sex-related content, along with commentary.
-Occasional How-To posts, Interviews, and other article-based content (optional)
-See existing content on the site for more examples of subject matter deemed acceptable.
-No word count limits as long as the post ‘works’
-So long as it’s entertaining, on-topic, and hasn’t been covered on 100 other blogs already you’re pretty safe.

Starting pay is $5 per post, paid weekly via PayPal – which will increase to $10 per post after two months of satisfactory performance. Future increases and bonuses depend on site performance and additional staff hires.

When applying for this position, please include:
-5 sex toys you think would be worthy of a blog post, including a blog post title.
-5 general topics that you would post about, including a blog post title
-References, what work have you previously done that is currently live?

Simple Php Form

Simple Php Form
check atachment first please…
this project need 2 php page.one for form ,and one for admin
i will put some item in my site,,then under every item is a link:order now…but dose not need any payment option…
when visitor click on order link..thay need fill a form with name,mobile,addrss,massage…. then click submit..just it. finish…
then a simple admin page ,will show list of order..admin can marked sent order.
i maked example page in atachment…

Consumer To Contractor Match

Consumer To Contractor Match
Looking for a reputable website developer/programming company to repair or complete an unfinished home contractor to consumer match website.

The intent of this site is to match consumers who are looking for contractors for home remodeling or home repair projects. Consumers register free, contractors are charged a monthly fee for unlimited leads. Contractors are rewarded with activity points for better exposure when they participate in the blogging, forum, home tips and so on. the reward is top placement in the search results.

The site is almost complete. I am looking for a better website design – it should be clean attractive and easy to navigate.
Site should use a picture of a street billboard to display rotating pictures and a welcome statement to visitors explaining the benefits of the site.

The entire site should be SEF with modrewrite for friendly URLs.
Currently the site is resting at http://servicesbillboard.com/latest/

The biggest issues with this site is the header image, the SEF URLs, the blogging, want to be able to setup custom free membership programs, the payment and invoicing modules for reoccurring invoicing; willing to use paypal manually for now and eventually upgrade as the membership increases. There are other very minor issues that can be discussed later.

I will make available the admin password for you to take a further look into the rest of the site if you meet the below request. I will also provide you with a list of all the items that I know need attention.

The company bidding should summit a layout of the site design to be considered.

As a guide, take a look at this site for color scheme http://www.usaa.com

Thank to all and look forward to completing this project very soon.

Complete Simple Mysql/php

Complete Simple Mysql/php
I need someone to finish my database I started for me.
Database tables are already created with some sample data. So is the output of that data. Need forms for inputting data and editing data created. Php and jquery needed (not much jquery but want changes within page to be without a whole page load). File upload and image processing also required.
Database output here:
http://species.terminus13.com/SpeciesSelectPulldown.php
and

http://species.terminus13.com/profile.php?id=0001

The insert forms are here:
(they aren’t hooked up, except order, family, genus and common group pull from db. Order, Family and genus using jquery to change without reloading page).

http://species.terminus13.com/insertTable.php
and
http://species.terminus13.com/insertCommonGroup.php

There are instructions next to each field in the insertTable and InsertCommonGroup.
Edit pages should be similar to the insert files, just pre-populated with the selected record.

The database structure should stay the same. Attached is a snapshot of the database. Relational with a lot of separate tables. If you feel the need to change something, I would need to be consulted first.

Need in 3 weeks time. Payment via scriptlance escrow only.

Rewrite Cloaking Script

Rewrite Cloaking Script
I am using the attached cloaking script to serve my page to all users except the IP’s listed in the script.

The page with the cloaking script is going to look like page.php?subid=variable. I need to grab this variable and pass it to the page inside the cloaking script at the bottom.

Typically I put the following code at the very top of the page:

<?PHP
$subid=$_GET[subid];
?>

However, it does not seem to be working with the attached cloaking code.

So, I need the script re-written so it does the IP cloaking function as well as pass the subid variable I need for tracking.

Copywriter Needed

Copywriter Needed
Content writer needed for 100 ariticles. Will have to have good English and be available to work for at least 3 weeks.
5 articles a day are needed.
Article topics are varied.
They will have to be researched before writing.
All articles must be original, and will be scanned with copyscape.
Place your best bid.
Payment is made once a week only. Bids that want advanced payment or escrow will not be considered.

Add Games Page To My Website 2

Add Games Page To My Website 2
I need games on my social network. I would prefer zynga games as mentioned in this FEATURED project https://www.scriptlance.com/cgi-bin/freelancers/buyers.cgi?manage_project=1266679671

But as I did some research, i dont think it will happen, so any games will do as long as it doesnt link outside of my site.

I want the basics of course like:
Poker
BlackJack
Chess
Dominoes, etc.

I’d REALLY like to have Zynga games like farmville and mafia wars.
But if this cannot be done, I just need someone to add a nice games page for the members of my site. I will pay 50-100, I can do escrow.