Archive

Posts Tagged ‘applet’

Close On Keepvid.com Java Applet

February 4th, 2012 Comments off

Dear Coders,

We need a clone of the keepvid.com Java Applet and a working example of how to capture youtube urls + progressbar, same as: http://keepvid.com/?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DTN55D8MLMv0 and at the end the user will be able to download the video (using his IP address, not our server IP), it is like a Java Tunnel/Proxy.

Please note: we need also the source of the Java Applet to make sure you have coded the script from scratch and by your hands. You should write…

Java Applet

December 12th, 2011 Comments off

This project is to build an applet similar to Facebook’s “Find my Mac Address Book Contacts” function under Friend Finder -> Other Tools.

The applet will run a shell script on the user’s machine and return some data, from that data the script will parse it and send it back to the site. After the applet retrieves the parsed data, it will submit that data to an API and display some results to the user.

It will be compatible with Mac OS X only (all versions).

Contact me for detailed pr…

Webcam Broadcast / Viewer Applets – Flash/red5

December 8th, 2011 Comments off

Hello,

For our HTML/AJAX based chat we need live cam integration

There has to be two applets, which I have to load in a HTML
DIV. One for the broadcaster (app1) and one for the viewer (app2)

App1: The broadcaster applet, can be run only once per chat session.
This applet streams the webcam of the chatter to the flash/red5
server. The applet is called with the chatter ID. I wanna a sort of
callback if the webcam is successful broadcasting (and when the
broadcast is stopped) so I …

Website Project With A Dummy Chat Applet

November 29th, 2011 Comments off

I need a dummy website with 5-6 pages in a similar format to the files attached below. Also, for presentation purposes, I need a chat with support feature, but for demo purposes the chat would respond only 2 predetermined sentences with some time lag for comedic effect in the presentation.

Need is urgent and need a turnaround time of 1-2 days maximum.

Attached are the screenshots of the desired website layout. Note though that the screenshots are of a website which is a lot more detailed …

Java Applet Game

October 9th, 2011 Comments off

I want a java applet game built. It will be simple. And Pretty Small. the dimensions should be 800pixels wide by 600 tall.

It needs to be able to run on the current version of java 1.6.0_27 and able to run on Chrome, Firefox, and IE.

it must connect to a database of registered users for log on.

it should be 3d. contain one grey building built on a green ground. with a blue sky.

inside the building should be 3 rooms, each with a door leading to another room.

a character that should be able to move through the rooms and around outside.

Convert Jar To Applet 3

September 22nd, 2011 Comments off

I have the source code and the .jar of a java application and I’d like it converted to an applet.

Source available here – http://java.net/projects/vizisolve

Thanks,

Richard

Categories: Conversion, Java Tags: , , , ,

Fix Graphical Glitches On Java Web Applet

September 20th, 2011 Comments off

I’m a PhD student who just put a Java web applet together (first time making an applet) for gathering data online. It works on my computer, but on many others it sputters between the correct graphics and nothing (e.g. white pixels).

You can see the current version at http://www.cs.utexas.edu/~bradknox/tamerapplet/.

I’ve spent a fair amount of time trying to get rid of it. I’ve improved it significantly but not enough, and I think someone with expertise in Java applets and Swing could fix my applet in less than an hour.

There are six class files, only three of which should be relevant, and a handful of jar files involved. The applet receives graphics from a few drawString() calls, one fill() call, and one drawImage() call that draws a BufferedImage.

To be clear, I’m asking for someone to
1) debug the graphical output of this applet, fix it, and give me working source code, and
2) give me a short explanation of what I was doing wrong.

I look forward to working with you!

Categories: Debug, Fix, Java Tags: , , , , , ,

Convert Jar To Applet 2

September 17th, 2011 Comments off

I have the source code and the .jar of a java application and I’d like it converted to an applet.

Source available here – http://java.net/projects/vizisolve

Thanks,

Richard

Categories: Conversion, Java Tags: , , , ,

Convert Jar To Applet

September 17th, 2011 Comments off

I have the source code and the .jar of a java application and I’d like it converted to an applet.

Source available here – http://java.net/projects/vizisolve

Thanks,

Richard

Java Applet – Display Remote Html With Js

September 9th, 2011 Comments off

I’m looking for a simple Java applet (including source code, of course) and the corresponding PHP page. All I need the applet to do is get the HTML contents of a remote URL and display it on the page using Javascript.

I’ve done my research and I think I’m probably 80-95% there but I must be doing something wrong. I’m developing in Eclipse and I did include the reference to plugin.jar so that the applet compiles. I’m just looking for someone to help me finish it off. I NEED THIS DONE IN THE FORMAT BELOW. I DO NOT WANT SOMEONE TO START FROM SCRATCH. If your bid is over $100, don’t bother. Here is the code:

***** BEGIN INDEX.PHP *****

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Untitled Document</title>
<script type=”text/javascript”>
function update(updatetext)
{
document.getElementById(‘update’).innerHTML = updatetext;
}
</script>

</head>

<body>
<applet code=”GetHTML.class” width=”300″ height=”300″ style=”border:1px solid #000;” mayscript=”mayscript”>
<param name=”useragent” value=”<? echo $_SERVER['HTTP_USER_AGENT']; ?>” />
<param name=”url” value=”http://www.google.com” />
</applet>
<div id=”update”>
No change yet
</div>
</body>
</html>

***** END INDEX.PHP *****

***** BEGIN GetHTML.java ******

import java.applet.*;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.PrintStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import netscape.javascript.JSObject;

public class GetHTML extends Applet
{
public void init()
{
String output = getUrlContent(getParameter(“url”), “GET”);
JSObject mainWindow = JSObject.getWindow(this);
mainWindow.eval(“update(‘” + output + “‘);”);
}
public void stop()
{

}
private String getUrlContent(String url, String httpMethod)
{
try
{
URL u = new URL(url);
HttpURLConnection conn = (HttpURLConnection)u.openConnection();
conn.setRequestMethod(httpMethod);
conn.setRequestProperty(“User-Agent”, getParameter(“useragent”));
InputStream is = conn.getInputStream();
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];

for (int bytesRead = 0; (bytesRead = is.read(buffer)) != -1; )
{
output.write(buffer, 0, bytesRead);
}
return output.toString();
}
catch (Exception e)
{
e.printStackTrace();
}
return null;
}
}

***** END GetHTML.java ******

Keepvid Clone Java Applet Based

July 26th, 2011 Comments off

-Please bid on this job only if you have read and understand my needs.
-Satisfy me and get a bonus $$$ right after it works on my server.
-It must work exactly like KeepVid.com ( it should work good )

Please take 2-3 minutes to carefully read what I wish to be done in this job, thank you in advance.

I need a script that will work exactly like this site: http://keepvid.com, please open this site to see what i mean.

But without the colors or anything, just the basic “download input field”, “Download input button” and “download links” that appear once the user presses download, including the mp3 button

I need it to work in firefox, google chrome and internet explorer. As you can see, the java applet must work in the background,once accepted by the user. There should be no plugin to install, only the java applet certificate to accept.

I need it to function exactly like on keepvid.com, please have a look at it, and paste several youtube videos to see how it works.

The only difference i want is, when the user copies the url, he should see an embed video instead of just a thumbnail.

Languages(s):

Java
Javascript
PHP
Or any other if you know it better.

Database: Will this project include a database?
No, it does not include a database.
Browser Type(s)/Version(s): Which browser/version combinations must this website support?

IE 8.0
Firefox 3.6
Firefox 3.0
Safari 41

Server Hosting Environment: What is your server hosting environment?
I have my own in-house server.
Server Hosting Environment: Will the worker develop “live” on your server?
No. The worker is responsible for creating their own development and/or qc environment.
Physical installation: Who will perform the physical installation?
I will perform the physical installation. The worker is only responsible for providing instructions and assistance regarding what I must do. I understand and agree that if the worker provides adequate instructions, but I am unable to follow them, then this is a valid reason for them to miss the final deadline without penalty (in arbitration).
Legal: 1) I require complete and fully-functional working program(s) in executable form as well as complete source code of all work done (so that I may modify it in the future).

Detailed Requirements:

-On a index.php page:
-A user pastes in the “youtube video url”. or type in a keyword for youtube videos
-The user presses the input button named “Download”
-User must press on “run java applet” link underneath the input field (like in keepvid) and accept the “java applet unsigned certificate”.
-Leave the link “run java applet” there JUST IN CASE the user wants to click it BEFORE he downloads the video.
-The user is showed the “download links”, a “preview picture” and the “title of the video”.
-Once the user presses on the “download link” for any of the “download formats” provided (FLV normal quality, FLV high quality, 3GP format and MP4 Format, MP4 Hight Quality 720 or/and MP4 Hight Quality 1080 or mp3), the user is prompted a screen that tells him to accept the unsigned java applet certificate, JUST like on keepvid.com IF he didnt not yet accept the applet.
-If the user presses yes, the browser shows the “save as box” that appears when you download a file with the NAME of the video as the filename as you can see like keepvid did.

-The script MUST work on my server after that you coded it.
-If it doesnt work on my server, please fix it before accepting the payment.

Youtube has changed the way videos are served, and they now block server ip’s that try to take the videos.
That is why the java applet is used: The java applet works on the client computer: opens up the source code of the video url, and looks for the “download links” for the different video formats and provides it on the php page as a “downloadable file”.

-The coder must be flexible to adjust to little changes in case something is not the way i wanted it.

-The digital signature of the java applet must have the following information:
Name: MYsite
Publisher: MYsite
From: http://www.mysite.com

With a “always trust this publisher” button.

Thank you all for who can help me.

just to add… i somehow managed to get source code and applets of keepvid… so this is what i made so far : http://2.ihateu.info , it is not working properly though, so for good coders, it should be an easy fix… thanks.

Web development, Languages, Java, Requirements, PHP, Other (Technology), Javascript, Technology

Keepvid Savevid Keep Tube Clone Java Applet Based

July 26th, 2011 Comments off

Online Video Downloader Script JAVA APPLET based

In short Video Scrapping from tube site using Java Applet
We need a script that can download from popular video sites such as
Youtube, brightcove, and many other sites which needs Java based

download er.
We provide Online service to our website visitor. Just like keepvid and

other video flv download website.
But what exactly we need is custom script (applet) which is editable to

download from other websites too.
Websites like Novshare, Movshare, videoweed, kewego.fr, youtube,

brightcove.com etc etc which ever need a client site scripting and

scrapping technique. other website are easy to scrape with php, curl

etc
This type of website uses technique to hide the source url of their

videos and use some visitor browser based verification and token also

refer link technique. So to bypass it only java applet can help (in

online method).

for example CLIPNABBER.COM, KEEPVID.COM etc
Kindly state the quote for this project and timeframe.
The admin of this script knows how to use php scrapping and javascript

a little.

Save/load Option In Java Aplet

July 19th, 2011 Comments off

I currently own a site http://expressmario.com

I currently run javaboy gbc emulator web based which is opens in an applet. The owner built in the feature to save unfortunately I couldn’t get it to work so looking for java applet people to fix it.

My coce just to get a rom to play:

<APPLET CODE=”JavaBoy.class” WIDTH=320 HEIGHT=288>
<PARAM NAME=”ROMIMAGE” VALUE=”*Enter name of ROM image here*”>
<PARAM NAME=”SOUND” VALUE=”ON”>
</APPLET>

which works well,

Now the code in order to be able to save/load game is added to those applet brackets:

<PARAM NAME=”SAVERAMURL” VALUE=”[Your URL Here]“>
<PARAM NAME=”LOADRAMURL” VALUE=”[Your URL Here]“>
<PARAM NAME=”USERNAME” VALUE=”[Your user here]“>

The 2 files it requests url for are zipped here:

http://expressmario.com/expressmariosavefiles.zip

I already have a login thing on my site just need this to be fixed.

Website of the owner of this javaboy web emulator is:
http://www.millstone.demon.co.uk/download/javaboy/faqs.htm#q13

I need this to be done fast and be workable.

Create Applet To Auto-generate Keyword File

April 21st, 2011 Comments off

We have 2 files. One file is a list of all categories on our ecommerce site. The other file is a list of all products on our ecommerce site. These 2 files change on a regular basis. The 2 files need to be parsed and only the relevant data needs to be extracted and combined into one file in the proper format (CSV) for importing into Google Adwords Editor. The Adwords format can be seen at the link below. We need this project in the form of an applet that can be run preferably on a Mac, or on a Mac and a PC, or it can be browser based.

http://spreadsheets.google.com/ccc?key=tWZw1GeX3eyimmzCo7v6lEQ#gid=0

Java Applet

April 13th, 2011 Comments off

The main goal of this app is to verify whether is client’s computer behind NAT or not. Of course our clients won’t run this test just because. So we have to add additional functionality like speed test, ping and traceroute.

Main functionality:

- runs inside browser
- does ping to hosts specified in config
- does traceroute to hosts specified in config
- does speed test ( upload speed, download speed )
- most important: checks behind NAT status
- every operation has to be stored in DB ( but transmission to DB server needs to be encrypted – RSA )
- additionally – we have to see what client do in realtime ( it means that we should see results of particular test just after client it do )

Client means – our customer.
Client is identified by IP address.
Communication with database has to be made through extra service – DBConnector, because of security reasons.

Make Your Choice

April 10th, 2011 Comments off

Simple Applet Program

The applet should be named Make Your Choice

The applet has to have a drop down box with at least three choices
(any names will do such as names of states)

The applet should contain a text area also

When the user clicks on a name the name should appear in the text area such as “You have chosen ______ as your state”

There should only be one Java file

The file should be as simple as possible

Java Applet

March 18th, 2010 Comments off

I am needing a applet to download a file (.zip) from the internet, the applet must have a progress bar and status.

The applet must check to see if the application already exists or if an updated version is availble, if any of them return true then it will need to either download the zip and extract to home.dir or overwrite the current files…

This will act as a “loader” for a game, more information to whom is accepted.

Need this ASAP and full source does’nt need to be commented but would be nice.

Create Small Java Applet

March 16th, 2010 Comments off

Design small java applet
the applet should look like the one in the attached picture

you also must implement two functions
first function is called sendMessage(String message)
this function will “append” the word “You:” to the textbox
the word “You:” should be in bold and blue
then append the line passed to you by the parameter message
the line should be in blue also but not in bold AND WORD WRAPPED

second function is called recieveMessage(String message)
this function will “append” the word “Support:” to the textbox
the word “Support:” should be in bold and red
then append the line passed to you by the parameter message
the line should be in red also but not in bold AND WORD WRAPPED

your project will not be accepted if
* design is not the same as the one in the picture
* the lines appended by the two functions are not word wrapped
* you used code similar to the following
textbox.setText(textbox.getText() + newLine);
LINES SHOULD BE APPENDED NOT replace the content of the text box every time you add new line

to be chosen for this project you need to rewrite the requirements as you understood it and post it in the message board

Good Luck

Categories: Java Tags: , , , , , ,

Java Applet For Web Cam

March 3rd, 2010 Comments off

Rockies.com/jasperwebcam

Our live, streaming, motion cam allows the reader to snap photos. The snapshot is on the top right. We need an applet/widget where readers can…

1) after photo is snapped, email the photo to email addresses they want

2) Have the photo go to a photo album IN rockies.com

4) Have the latest photos shown on the front page of Rockies.com in a reduced size

To apply, I want to see past java work you have done. I do not want to see “I can do it”. I want to see past work.

-30

Categories: Java Tags: , , , , , ,

Ninjavideo.net Applet

February 4th, 2010 Comments off

Hello

I need a Java Applet that will do the SAME as this site
ninjavideo.net
Please visit and take a look to see how it works.

this is the applet:
http://www.ninjavideo.net/applet.php

it uses localhost and streams from megaupload.com, this is an example( you need to have the applet open in order to stream):
http://127.0.0.1:64653/52812

thanks!

Pc & Mac File Copier

February 3rd, 2010 Comments off

Looking for someone who can code a quick mini applet (in whatever language is suitable), that can run on both PC and Mac.

On PC, the applet will autorun off a CD (if possible, Mac too, but I think not).

The applet then opens a nice dialogue box to copy the contents of a specific folder on the CD to a location chosen by the user on their HDD.

It could ask to copy a shortcut to that location on to the desktop.

So basically a simple file copier, with the opportunity to include a graphic of my client’s logo in the applet.

Stress the point it ideally needs to be something that can run on both Mac and PC (obviously different executeable files).

Should be simple enough if you know what you’re doing.

At this stage I’m just enquiring – I need to tell the client the above is do-able cheaply, and then once they approve budget etc we can move forward and code it.
I am discussing this with the client tomorrow.

Gnome Tweaks

January 27th, 2010 Comments off

I need two small applets.

1) Should to be able to save created custom gnome session and add it to Greeting. It mean complete look&feel, menu content and settings. Example is session for gaming, office, educational purposes, etc.

2) Session cleaner applet (all changes and leftovers in session should be cleaned and restored). It is just for Home (system will be locked). Something like DeepFreeze or Lethe, bu best visible is in Zencafe.

Trick is how applet should to be able to be controlled and launched (stared) from other machine (server) manually.

So, settings should be:
– automatic clean the session after log-out and
– remote clean from server (additional applet for server).

Convert Drawing Applet To As 2

December 29th, 2009 Comments off

I have a simple special pie chart drawing applet viewable here.

http://troyworks.tripod.com/troyworks/flashwork/SunburstViewer2.html

I need to put in a new AS3.0 project.

but the original is written in AS1.0 (the script is attached). So some things have changed.

The code is clean shouldn’t take more than an hour or so to get the syntax changed over.

Need to
1) switch the functions from e.g.
drawfunction = function(AllRings, zoom, timepan)
to
private function drawfunction(allRings:Array, zoom:Number, timepan:Number):void{

2) Change the xml sytax to E4X style e.g.

parentNode.attributes.pa;

to
parentNode. (at) pa;

Graphics Editor Java Applet

December 22nd, 2009 Comments off

In this project a Java applet must be programmed which pulls a bitmap image from a web server. The Java applet has a number of controls which the user can use to edit the image and afterwards the image can be saved back to the server again and the applet closes.

The applet must provide a number of functions to the user:
- Editing workspace is fixed size of approx 600 pixels width and 500 pixels height. (Possibility to change these settings in the source code).
- Color selection for the current foreground color and background color
- Pixel editing and drawing with a brush with variable diameter
- Dropper tool to load color of a selected pixel in either the current foreground or background color setting
- Zooming from 25% to 1600%
- Dragging of image with a hand tool
- Flood fill with tolerance setting
- Image mirror and flip (horizontal and vertical mirror line)
- Image rotate in steps of 90 degrees
- Brightness and contrast correction
- Color replacer with tolerance setting to replace the background color with the foreground color
- Full undo functionality with an undo level of at least 10 operations
- For all draw functions: left mouse button draws in foreground color, right mouse button in background color

On the server side an Apache 2.2 web server will be running with PHP 5.0. The Java Applet should communicate at the Apache/PHP level. No installation of other scripting languages or for example JSP on the server side is allowed. The necessary server side scripting for a PHP test page which loads the applet and performs the image transfer must be provided by you.

Please explain in your proposal how you would solve particular problems, including pulling and pushing the image from the server in the given environment, handling the undo buffer etc.

We can provide a test server for this purpose running a LAMP configuration. System will be tested on both Windows and Linux browsers. Delivery in full clean source code with documentation in the English language. Delivery must recompile out of the box in a clean new Java development environment.

Categories: Java, PHP Tags: , , , , , ,

Convert Drawing Applet To As3

December 12th, 2009 Comments off

I have a simple special pie chart drawing applet viewable here.

http://troyworks.tripod.com/troyworks/flashwork/SunburstViewer2.html

I need to put in a new AS3.0 project.

but the original is written in AS1.0 (the script is attached). So some things have changed.

The code is clean shouldn’t take more than an hour or so to get the syntax changed over.

Need to
1) switch the functions from e.g.
drawfunction = function(AllRings, zoom, timepan)
to
private function drawfunction(allRings:Array, zoom:Number, timepan:Number):void{

2) Change the xml sytax to E4X style e.g.

parentNode.attributes.pa;

to
parentNode. (at) pa;

Dots

December 7th, 2009 Comments off

**Must be done in eclipse**
DUE Dec 7th 11:00pm est

The game of Grids is played by two players on an 8 by 8 grid of dots. Grids is a turn-based game, meaning that player one takes a turn, then player two takes a turn, then player one again, and so on, until the game ends. A turn consists of selecting a single dot from the grid. Once a dot is selected, it cannot become unselected, and it cannot be selected again. Initially, none of the dots in the grid are selected. The game ends when all dots have been selected. The goal of each player is to complete as many boxes as possible, and the player who completes the most boxes wins. A box is completed by selecting fourth dot surrounding a square on the board. With a well chosen move, a player can complete up to four boxes in one turn. The pictures below help to clarify the situation:

Filled circles represent dots that have been selected. Empty circles represent unselected dots.

A move that completes one box A move that completes three boxes

Your goal is to write a Java applet that allows two human players who are sitting at the same computer to play Grids with each other. Your applet must obey the following constraints, but you are otherwise free to design the applet as you please.

Categories: Java Tags: , , , , , ,

Clone Digichat Applet In Flash

October 18th, 2009 Comments off

I need a clone of the digichat java applet made in Flash/Flex & action script.
should have identical UI look and feel as the original applet.
you can review the applet at digichat.com.

Install Video Applet Sdk

August 7th, 2009 Comments off

Need to install script . . .

http://www.vimas.com/videoSmallJS.php

Instructions here . . .

Installation

Create on the server the /recorder folder. For example: www.vimas.com/recorder/.
Put into /recorder folder the following files:
VideoApplet_large.html – example page which calls the video recording applet. Frame size is 320×240 pixels. Interface like on the Fig.1. The video file name user have to type manually in the pop-up window or pass it via JavaScript function setFileName().
VideoApplet_small.html – example page which calls the video recording applet. Interface like on the Fig.2. Frame size is 176×144 pixels. The video file name user have to type manually in the pop-up window or pass it via JavaScript function setFileName().
VideoApplet_compact.html – example page which calls the recording applet. Interface like on the Fig.1 or Fig.2. The video file name is passed to applet via JavaScript.
VideoApplet.jar

Java Applet Board Game

August 2nd, 2009 Comments off

You are to write a Java applet to implement a board game played on a rectangular grid of cells. Each cell may be

Java Applet Board Game

August 1st, 2009 Comments off

You are to write a Java applet to implement a board game played on a rectangular grid of cells. Each cell may be

Java Applet Expert Needed

July 28th, 2009 Comments off

I have an advertiser-publisher website where publishers can sell and advertisers can buy ads. The ads are targeted country, category,
language, country groups, domain wise etc. I have this site ready, but need scripts for the following ad formats so that publishers can
sell and advertisers can buy based on the above targeting options.

Publisher adds this code to his site. When a visitor comes to his site, this script finds his IP, Language of Browser and sends back to a php script(its already done).

The Php script checks the database and returns a banner image and URL of that banner to be displayed on the publishers website. This will be some advertisers banner. JavaScript displays this banner and URL in the publishers website.

I want the above script for the following ad formats.

1. 468×60 banner, 728×90 banner, 400 x 265 banner, Flash Banner etc.

2. clicked pop under – a pop under which opens when a user clicks anywhere on the publishers website, it loads only one time per IP

address.(unique)

3. Peel Away Ads – example – http://www.adtoll.com/peel_away_ads.php

4. IM Ads – Ads which pop up from left side tool bar area like MSN IM Ads.

5. Small text ads under youtube or tube videos or live channels – This can be a pre-roll ad, in running text ad or ad when program ends

(post). It can also be an ad running during a live program and closing after a few seconds.

eg: http://www.vidiscript.com/mainstreamdemo/play/Animation/Bassett_Hound_Beatbox

6. Interstitial ads – eg: http://www.banmanpro.com/transitionad.asp

7. Contextual text ads like google adsense.

8. Skip Ads – http://www.adbrite.com/mb/how-advertisers-ad-formats.php?section=fullpage_ad#

Publisher adds this code to his site. When a visitor comes to his site, this script finds his IP, Language of Browser and sends back to a php script(its already done). The the Php script checks the database and returns a banner image and URL of that banner to be displayed on the publishers website. This will be some advertisers banner. JavaScript displays the above ads and URL in the publishers website.

Please note that I have spend lots of money in developing the advertiser-publisher system and not in a situation to spend much for the scripts. In My Opinion somebody who have already done it can do it quickly.

Please note that you have to find scripts for the ad options listed above and the above script connection so that the ad can be served.

Please don’t waste my time, I need this done asap and online support is highly appreciated. Time wasters please stay away, this is an urgent job.

Found Java Popup Code

July 22nd, 2009 Comments off

Solving the problem using a CGI is fine, but I wanted to implement this

Java Popup Code

July 22nd, 2009 Comments off

Solving the problem using a CGI is fine, but I wanted to implement this

Irc Flash Applet

July 1st, 2009 Comments off

We have found an IRC Flash chat applet which just needs to be configured to our server, just some simple editing of the .fla file I believe. the README.txt file will be presented to the winning bidder of the protect.

Possible future work..

If this applet is good we may use it for the foundation of our applet for the future, this will include creating a custom skin for this Flash Applet.

As far as I know it is just Flash knowledge required but their may be more coding knowledge behind it…

Java Drawing Applet

May 23rd, 2009 Comments off

Need an expert java programmer for the specific task of java drawing applets. Need to see previous work examples before finalisation.

Thanks

Discrete Optimization Applet

May 14th, 2009 Comments off

For my university course credit test.
And I need it to be done till 20′th of May.
Quick and dirty is ok. features can only pretend to be working correctly.

I have got simple Discrete Optimization Java applet ‘Optimization “Buy-a-PC” time as an “Multi-Marriage” Bride’s Problem’ that is not finished by another student and I need to add one feature and do some fixes to it.
Feature that I need to add to it is ability to load from text file part for “enter your pc data” in program.
Fixes: remove what”s left from bride program. fix all buttons and menus that do not work.

Leave comments in source code, explain quickly what you changed, how this stuff works at all and help me to load it in Eclipse Classic and compile it.

You can see this applet in action and get source code http://optimum2.mii.lt/bridepc/contbridepc.html

Signature Tablet Java Applet

April 30th, 2009 Comments off

I need a java applet that will work with the following tablet:
http://www.topazsystems.com/products/siglitesl.asp
The software used to develop this is here:
http://www.topazsystems.com/software/download/java/index.htm
PLEASE read (glance over) the documentation before bidding.

The applet will be integrated into a larger software suite coded in php.
The applet needs to:
- take in signature input from device
- display signature in “big white rectangle” applet
- have a clear button (in case the user screws up)
- have a submit button that either:
— saves the data to an image file OR
— returns the data in $_POST for the next page to parse

In other words, a very simple applet that does little more than make the tablet work. Though the manufacturer creates the tablet, they do not create much in the way of software.

Note: All I need is the applet, the larger program coded in php is already complete. This is simply one more item that will be integrated into it.

*** If you can, please give me a reason (e.g. example work) to pick you as the programmer. Not required, but a plus. Thank you!!

Flash To Get Yahoo Stock Quote

April 11th, 2009 Comments off

I am looking for a small Flash applet that gets stock quotes from http://download.finance.yahoo.com/d/quotes.csv?s=msft&amp;f=snl1d1t1c1ohgv

I tried this myself and it works great on my local machine, but doesn’t work at all when I upload it to my domain (hosted elsewhere). I don’t know what I am doing wrong, so now I’m putting this out to bid!

All the applet needs to do is allow the user to enter a symbol, click a button, get the current stock quote using the URL above. The applet doesn’t need to be pretty as I will be changing it to meet my specific needs. I am really just looking for help getting this to work.

Any takers??

Joomla Template Survey Applet

March 26th, 2009 No comments

I have a Joomla template selected and now I need a survey application to be integrated into the template. I need the survey application to also be translational in English and French.
The survey application to look very similar to this one on this link:

http://www.jmrmovers.com/montreal-moving-estimate.shtml

Please let me know.

Regards,
montrealimpactbuyer

Java Applet Help Needed

March 16th, 2009 No comments

I have applet which i need to sign.

Bear