Will pay for Flash programming

Hi folks,
I have been let down by some programmers and need a web site
built similar
to the Business Card application at
http://www.premierlook.com/xangocard.php
It is a fairly straight-forward application of developing a
form in Flash. A
shopping cart addition would be greatly appreciated also.
Prospective designers wishing to undertake this job and
complete within 36
hours can send me an email at [email protected]
Thanks for your help.
Richard

Will Pay for Consulting on Java Swing Issue
Really?
863221 wrote:
..*Offer*:     I will pay a reasonable consulting fee ..I will read your post (and give it serious consideration and a reply) for $1500 US. The ball is in your court.

Similar Messages

  • Hi. I have Lightroom 4 installed. I cannot download my CR2 files from the Canon 5D Mark III camera. I have downloaded Lightroom 5 thinking it was an update but it appears I have to pay for the program. Any ideas how I can get lightroom 4 to accept my CR2

    I have Lightroom 4 installed. I cannot download my CR2 files from the Canon 5D Mark III camera. I have downloaded Lightroom 5 thinking it was an update but it appears I have to pay for the program. Any ideas how I can get lightroom 4 to accept my CR2 files ?

    The Canon 5D Mk 111 was supported from LR 4.1, see the link below. Just update LR to the latest version. See link below
    Camera Raw plug-in | Supported cameras
    Adobe - Lightroom : For Windows
    Adobe - Lightroom : For Macintosh

  • Wsdl trouble - WILL PAY FOR IMMEDIATE HELP

    I'm having trouble consuming a webservice - code works in PHP
    but coldfusion keeps getting back a null value. The function only
    takes 1 parameter, of which I'm sending. I'll paypal you money for
    your help - PM me for details

    > WILL PAY FOR IMMEDIATE HELP
    I do not believe that that is in the spirit of this forum. If
    you post your code here, you will most likely get a quick answer to
    the question anyway.

  • So I had photshop cs5 installed on my pc...i had to get my hard drive replaced! I have the serial number and everything, but I need to know how to download it. I really don't wanna have to pay for the program over again.

    So I had photshop cs5 installed on my pc...i had to get my hard drive replaced! I have the serial number and everything, but I need to know how to download it. I really don't wanna have to pay for the program over again.

    If you registered your product, you should be able to find the download and serial number from your Adobe account.
    https://www.adobe.com/account.html
    Otherwise:
    Download Adobe CS5.5 Trials: Direct Links (no Assistant or Manager) | ProDesignTools
    You might still have to contact Customer Support to reset your Activations, unless you managed to deactivate the original installation.

  • If I buy Creative Cloud do I still pay for each program.  Adobe Acro asking for payment.

    If I buy Creative Cloud do I still pay for each program.  Adobe Acrobat keeps asking for payment.

    There is now a Creative Cloud forum which is probably a better place to get an answer:
    http://forums.adobe.com/community/creative_cloud

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish.
    I have a big problem with an applet:
    I�ve make an applet that sends files to a FTP Server with a progress bar.
    Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it crash. The applet seems like blocked: it show the screen of java loading and dont show the progress bar, but it send the archives to the FTP server while shows the java loading screen.
    I will pay with a domain or with paypal to anyone who can help me with this problematic applet. I will give my code and the goal is only repair the applet. Only that.
    My email: [email protected]
    thanks in advance.
    adios!

    thaks for yours anwswers..
    harmmeijer: the applet is signed ok, I dont think that is the problem...
    itchyscratchy: the server calls are made from start() method. The applet is crashed during its sending files to FTP server, when finish, the applet look ok.
    The class I use is FtpBean: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean/
    (I test too with apache commons-net, and the same effect...)
    The ftp is Filezilla in localhost.
    This is the code, I explain a little:
    The start() method calls iniciar() method where its is defined the array of files to upload, and connect to ftp server. The for loop on every element of array and uploads a file on subirFichero() method.
    Basicaly its this.
    The HTML code is:
    <applet
           codebase = "."
           code     = "revelado.Upload.class"
           archive  = "revelado.jar"
           name     = "Revelado"
           width    = "750"
           height   = "415"
           hspace   = "0"
           vspace   = "0"
           align    = "middle"
         >
         <PARAM NAME="usern" VALUE="username">
         </applet>
    package revelado;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import javax.swing.*;
    import java.io.*;
    import javax.swing.border.*;
    import java.net.*;
    import ftp.*;
    public class Upload
        extends Applet {
      private boolean isStandalone = false;
      JPanel jPanel1 = new JPanel();
      JLabel jLabel1 = new JLabel();
      JLabel jlmensaje = new JLabel();
      JLabel jlarchivo = new JLabel();
      TitledBorder titledBorder1;
      TitledBorder titledBorder2;
      //mis variables
      String DIRECTORIOHOME = System.getProperty("user.home");
      String[] fotos_sel = new String[1000]; //array of selected images
      int[] indice_tamano = new int[1000]; //array of sizes
      int[] indice_cantidad = new int[1000]; //array of quantitys
      int num_fotos_sel = 0; //number of selected images
      double importe = 0; //total prize
      double[] precios_tam = {
          0.12, 0.39, 0.60, 1.50};
      //prizes
      String server = "localhost";
      String username = "pepe";
      String password = "pepe01";
      String nombreusuario = null;
      JProgressBar jProgreso = new JProgressBar();
      //Obtener el valor de un par�metro
      public String getParameter(String key, String def) {
        return isStandalone ? System.getProperty(key, def) :
            (getParameter(key) != null ? getParameter(key) : def);
      //Construir el applet
      public Upload() {
      //Inicializar el applet
      public void init() {
        try {
          jbInit();
        catch (Exception e) {
          e.printStackTrace();
      //Inicializaci�n de componentes
      private void jbInit() throws Exception {
        titledBorder1 = new TitledBorder("");
        titledBorder2 = new TitledBorder("");
        this.setLayout(null);
        jPanel1.setBackground(Color.lightGray);
        jPanel1.setBorder(BorderFactory.createEtchedBorder());
        jPanel1.setBounds(new Rectangle(113, 70, 541, 151));
        jPanel1.setLayout(null);
        jLabel1.setFont(new java.awt.Font("Dialog", 1, 16));
        jLabel1.setText("Subiendo archivos al servidor");
        jLabel1.setBounds(new Rectangle(150, 26, 242, 15));
        jlmensaje.setFont(new java.awt.Font("Dialog", 0, 10));
        jlmensaje.setForeground(Color.red);
        jlmensaje.setHorizontalAlignment(SwingConstants.CENTER);
        jlmensaje.setText(
            "Por favor, no cierre esta ventana hasta que termine de subir todas " +
            "las fotos");
        jlmensaje.setBounds(new Rectangle(59, 49, 422, 30));
        jlarchivo.setBackground(Color.white);
        jlarchivo.setBorder(titledBorder2);
        jlarchivo.setHorizontalAlignment(SwingConstants.CENTER);
        jlarchivo.setBounds(new Rectangle(16, 85, 508, 24));
        jProgreso.setForeground(new Color(49, 226, 197));
        jProgreso.setBounds(new Rectangle(130, 121, 281, 18));
        jPanel1.add(jlmensaje, null);
        jPanel1.add(jlarchivo, null);
        jPanel1.add(jProgreso, null);
        jPanel1.add(jLabel1, null);
        this.add(jPanel1, null);
        nombreusuario = getParameter("usern");
      //Iniciar el applet
      public void start() {
        jlarchivo.setText("Start() method...");
        iniciar();
      public void iniciar() {
        //init images selected array
        fotos_sel[0] = "C:/fotos/05160009.JPG";
        fotos_sel[1] = "C:/fotos/05160010.JPG";
        fotos_sel[2] = "C:/fotos/05160011.JPG";
         // etc...
         num_fotos_sel=3; //number of selected images
        //conectar al ftp (instanciar clase FtpExample)
        FtpExample miftp = new FtpExample();
        miftp.connect();
        //make the directory
         subirpedido(miftp); 
        jProgreso.setMinimum(0);
        jProgreso.setMaximum(num_fotos_sel);
        for (int i = 0; i < num_fotos_sel; i++) {
          jlarchivo.setText(fotos_sel);
    jProgreso.setValue(i);
    subirFichero(miftp, fotos_sel[i]);
    try {
    Thread.sleep(1000);
    catch (InterruptedException ex) {
    //salida(ex.toString());
    jlarchivo.setText("Proceso finalizado correctamente");
    jProgreso.setValue(num_fotos_sel);
    miftp.close();
    //Detener el applet
    public void stop() {
    //Destruir el applet
    public void destroy() {
    //Obtener informaci�n del applet
    public String getAppletInfo() {
    return "Subir ficheros al server";
    //Obtener informaci�n del par�metro
    public String[][] getParameterInfo() {
    return null;
    //sube al ftp (a la carpeta del usuario) el archivo
    //pedido.txt que tiene las lineas del pedido
    public void subirpedido(FtpExample miftp) {
    jlarchivo.setText("Iniciando la conexi�n...");
    //make folder of user
    miftp.directorio("www/usuarios/" + nombreusuario);
    //uploads a file
    public void subirFichero(FtpExample miftp, String nombre) {
    //remote name:
    String nremoto = "";
    int lr = nombre.lastIndexOf("\\");
    if (lr<0){
    lr = nombre.lastIndexOf("/");
    nremoto = nombre.substring(lr + 1);
    String archivoremoto = "www/usuarios/" + nombreusuario + "/" + nremoto;
    //upload file
    miftp.subir(nombre, archivoremoto);
    class FtpExample
    implements FtpObserver {
    FtpBean ftp;
    long num_of_bytes = 0;
    public FtpExample() {
    // Create a new FtpBean object.
    ftp = new FtpBean();
    // Connect to a ftp server.
    public void connect() {
    try {
    ftp.ftpConnect("localhost", "pepe", "pepe01");
    catch (Exception e) {
    System.out.println(e);
    // Close connection
    public void close() {
    try {
    ftp.close();
    catch (Exception e) {
    System.out.println(e);
    // Go to directory pub and list its content.
    public void listDirectory() {
    FtpListResult ftplrs = null;
    try {
    // Go to directory
    ftp.setDirectory("/");
    // Get its directory content.
    ftplrs = ftp.getDirectoryContent();
    catch (Exception e) {
    System.out.println(e);
    // Print out the type and file name of each row.
    while (ftplrs.next()) {
    int type = ftplrs.getType();
    if (type == FtpListResult.DIRECTORY) {
    System.out.print("DIR\t");
    else if (type == FtpListResult.FILE) {
    System.out.print("FILE\t");
    else if (type == FtpListResult.LINK) {
    System.out.print("LINK\t");
    else if (type == FtpListResult.OTHERS) {
    System.out.print("OTHER\t");
    System.out.println(ftplrs.getName());
    // Implemented for FtpObserver interface.
    // To monitor download progress.
    public void byteRead(int bytes) {
    num_of_bytes += bytes;
    System.out.println(num_of_bytes + " of bytes read already.");
    // Needed to implements by FtpObserver interface.
    public void byteWrite(int bytes) {
    //crea un directorio
    public void directorio(String nombre) {
    try {
    ftp.makeDirectory(nombre);
    catch (Exception e) {
    System.out.println(e);
    public void subir(String local, String remoto) {
    try {
    ftp.putBinaryFile(local, remoto);
    catch (Exception e) {
    System.out.println(e);
    // Main
    public static void main(String[] args) {
    FtpExample example = new FtpExample();
    example.connect();
    example.directorio("raul");
    example.listDirectory();
    example.subir("C:/fotos/05160009.JPG", "/raul/foto1.jpg");
    //example.getFile();
    example.close();

  • Graphics Optimization for Flash Programs

    Is there any program or setting for "pointing" flash programs at my graphics card rather than leaving it to the processor and RAM alone? I am running a specific frontend software that is a flash executable- unfortunately it lags heavily on execution despite the fact that I have a very nice video card installed. I would greatly appreciate being able to get flash to utilize my nVidia graphics card to optimize its' performance. I am running Windows XP.

    Ahh, I see... It's similar to the issue with running streaming video to a capture card- instead of just turning your computer into a "video-in" it now has to convert the stream before displaying it which actually lags it a bit. On the plus side it appears, from that article, that integration of the features I am seeking may eventually be implemented or at least improved in the future

  • Can you set up family sharing where everyone will pay for himself?

    I really like the feature but I don't like the fact that organiser should pay for everyone's purchases? Can it be set up to keep payments separate and just share the content?

    It's not a question of having an out of control family.  Our kids work for their pocket money - which they can choose to spend on iTunes if they like.  They have had their own accounts for some time now, linked to their own bank accounts - and they buy their own things with the money that they have earned.  As an extra, if they are given an iTunes voucher for a birthday present or something, they load it onto their own account, but this is by no means the only way that they buy things.
    Doesn't feel out of control to me.
    Now it's suggested that we need to pay for everything they want, rather than them?  Not for me thanks.  But it's a shame that by choosing to keep this set up, we are losing the ability to share purchases, in the same way that we would when buying a hard copy CD, book or magazine.
    Surely most families have a similar set up once the children are old enough to have their own bank accounts?  Or am I so very very old fashioned?

  • Lightroom says i need a trial when i pay for the program and now wont let me use the develop module. How can i fix this?

    I dont want to pay for something i cant use. has anyone else had this issue?

    Why do you need to reinstall ?  Are you signed in to the CC Desktop Application Manager?
    Creative Cloud Help | Install, update, or uninstall apps

  • When will "Made for iPod Program Enrollment" be finished treating?

    I filled the "Made for iPod Program Enrollment" form step by step successfully.
    And I received 3 reply from MFI. And I corrected the form according the request of the reply email.
    Now more than half a month has been past.
    I want to know when I can receive the reply about "Activate Account".
    Because I don't know how to contact Apple, I post this message here.
    Who can help me?
    I am in China.

    Ni-hao
    Sorry, but this is one of the last places to seek this kind of help.
    Either stay with email or get on the phone...it's tough getting in and getting help, so best to stay patient.
    This is one recommended email...not sure what you're using:
    [email protected]

  • Very strange Issue, and cannot find a reasonable solution or Tech Support help / Will PAY for HELP !!

    So, without going into great details that cannot reasonably be explained, the scenario goes a little like this:
    When editing a PDF, and with nothing else open on the computer, Adobe Acrobat Pro XI tends to "hang up" and become unresponsive. The only plausible solution is to force command and restart Acrobat in hopes it will open correctly the next time. Sometimes this works, other times - nope .. Does not resolve the problem. So - can anyone recommend a solution? I have contacted help and they had to to delete a Adobe Preference file, and this seemed to work while I still had them on live chat. Once offline, it happened again.
    Here is the really weird thing, I thought that I fixed the issue (as I am doing this for my boss on his Macbook Pro) and was able to quickly edit a PDF .. but when I handed the computer over to him - literally in only 2 minutes - he proceeded to edit the same document and was not able to. He got the never ending rotating circle of death
    So - that is problem #1
    Problem #2 is with the inability my boss has to use CC offline. I have personally reconnected to our CC account and verified all settings, and when I perform my tests at the office, everything seems fine and all programs work as should. However, he is now on business travel and says the "Trial Expired" keeps popping up. What is going on? This is literally frustrating him and me with what little knowledge I can assist with resolving the trial expired issue. How many days can you be offline with CC? Tech support says up to 99 days .. Clearly 4 days is ridiculous and I am not able to duplicate the scenario when I have his computer but what would it work for me and not him?
    I just need to resolve this whole Adobe Acrobat issue as to finally get it resolved and fixed once and for all.
    BTW, called in outside computer help from a local company - and the computer guy was working to get it fixed, but it seems even with live chat or phone support - it has now been escalated to Tech Support 2 .. This make any sense or logic? I believe he has uninstalled and reinstalled Acrobat and now it is only creating more issues. I think he tried to install a trial version and activate the subscription but it failed.
    Any HELP? We are desperate and I'll even pay via PayPal to get a resolution to this problem if any recommendation leads to a solid solution. Guaranteed !!

    Actually I also noticed that usual heat with wifi and game play.. However this was extreme heat. I wasn't able to hold it for long time and had to drop it.
    So can that bulge can be ignored and should I start using it back again. Though that bulge appeared after that heating issue.
    Beside the hardware, safety would be my bigger concern. Perhaps because I have heard few incidents with mobile phones where battery generated heat and caused some defect in bodies and continued use resulted in a blast in battery causing physical harm.
    So if its advised to try it by charging 100% and monitoring backup time or any other advise.

  • I will pay for help, Media Encoder and Premiere Pro C4 won't work together

    I know someone has two easy answers...help, help.
    Big Problem one, exporting from Premiere C4, forced into using Media Encoder, which sit there and won't encode from the project/timeline.
    The project is even small, 7 minutes, and I just want to me a AVI file and maybe Flash and Media Player.  Is that too much to ask.
    Then the versioncue.dll, decide to not let me right click in explorer and other links, get a windows error, and again, stuck with nothing.
    Please, I will send someone a gift card if they can help me, really. $25-$50...depending on if you have the solutions.
    [email protected]
    828-778-4854

    Stan, that's correct, however, it's a new computer now.  And yes, I want to
    export to avi from the premiere time line.
    One thing that is weird, I can add to Media Encoder only finished encoded
    files, say to send to a client in a media player
    or flash format, and all works well.  It's only the Premiere C4 project
    export????
    Thanks for any help you may be able to give me.
    Ernie Sigmon

  • If I buy Photoshop and pay monthly, I will pay for 12 months only right?

    I want to buy just the product, will I have to subscribe and pay monthly for a year or continue paying until i end up my subscription?

    Adobe has a plan to make it's software owners very uncomforatable. There efforts will include not including new software (Muse etc...) in the stand alone products and not upgrading the stand alone products after Creative Suite 6. You can also expect files that were created in the Creative Cloud in the near future will not be openable in your stand alone version. Then there is discussion of whole new file types that your software will not open at all. Just remember you work for them. OBEY!

  • Help compiling jar (will pay for help)

    Hello I have all the source code for a project. I need the project compiled. I will any one t o help.

    You need the whole SDK, or a Java IDE.
    Look at this: http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javac.html

  • Will Pay for Expert DW CS4 advice/training

    I am new to Dreamweaver and want to solicit work so I need to
    get up and running in a hurry. I have tried online courses,
    tutorials, forums and the like. Ok, my head is about to explode
    here. I want expert training and here's my pitch. I own 1br condos
    on Panama City Beach and Mexico Beach Florida. Unfortunately this
    is a cultural wasteland so training locally is not an option. I
    will offer someone, or a couple, to spend the weekend in the condo
    of their choice. They, in turn, must spend Saturday - for 6-8hours,
    showing me how to use Dreamweaver CS4, build sites, widgets, etc.
    You can have the unit for two nights and three days. I do have
    spring break bookings but am not solid yet.
    You must be able to clearly demonstrate to me you have the
    expertise. How you do that is as important to me as your body of
    work.
    Disclaimer - If I have violated a forum rule, by fact or
    ignorance, I apologize as my frustration is driving the bus right
    now!

    Contact me offline, please --> forums at great-web-sights
    dot com.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "pcmartini" <[email protected]> wrote in
    message
    news:gnmli7$jb4$[email protected]..
    >I am new to Dreamweaver and want to solicit work so I
    need to get up and
    > running in a hurry. I have tried online courses,
    tutorials, forums and the
    > like. Ok, my head is about to explode here. I want
    expert training and
    > here's
    > my pitch. I own 1br condos on Panama City Beach and
    Mexico Beach Florida.
    > Unfortunately this is a cultural wasteland so training
    locally is not an
    > option. I will offer someone, or a couple, to spend the
    weekend in the
    > condo of
    > their choice. They, in turn, must spend Saturday - for
    6-8hours, showing
    > me how
    > to use Dreamweaver CS4, build sites, widgets, etc. You
    can have the unit
    > for
    > two nights and three days. I do have spring break
    bookings but am not
    > solid
    > yet.
    > You must be able to clearly demonstrate to me you have
    the expertise. How
    > you
    > do that is as important to me as your body of work.
    > Disclaimer - If I have violated a forum rule, by fact or
    ignorance, I
    > apologize as my frustration is driving the bus right
    now!
    >

Maybe you are looking for