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.

Similar Messages

  • 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();

  • 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

  • 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.

  • Is there a service which you can pay for to help with adobe products ?

    Please can you tell me if there's a services I can pay for which will help me with any adobe issue /help I might need?

    Hey Daniella silva,
    You can subscribe for Adobe online service at "https://cloud.acrobat.com/" to access some of its incredible features. But, before that please let me know what exactly is you issue so that I can advice you for an appropriate service that could help you.
    Regards,
    ~Anubha

  • 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?

  • 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.

  • 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

  • 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!

  • I have $ in Itunes acct but asking me to pay for songs - HELP PLEASE

    Once again I have money in my account and it's acting like I don't...  please help......... why does it keep doing this? It worked fine last weekend?
    Can't even find a email for Itunes because I'm not in lastest operating system...  can't get anywhere.. they make it so difficult... it is insane......
    Any help would be greatly appreciated.....
    Jennifer
    [email protected]

    Hello Jennwj,
    It sounds like you have iTunes credit and you are being prompted to verify credit card information. You may be able to set your payment method to None in the iTunes account settings with this article:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    You can see the payment methods that the iTunes Store accepts in the Payment Type section. If you want to remove the payment method, select None in the Payment Type section.
    If you are not able to select None, this article may help you determine why:
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • 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!
    >

  • I just did an "erase and install" on my computer, and when i drug everything back to my computer from the external hard drive. however, now i cant open microsoft word. i have an exam on tuesday that I need it for and i dont want to pay for it, HELP!

    i cant seem to get it to open. it just says "microsoft word cannot open because of a problem"
    ive tried dragging it from the harddrive to my applications folder, but its not working.
    any suggestions?

    If you purchased your version of Office online, you can redownload it from Microsoft using your product key (I don't know why the link says "office2010"... but the link is for Office for Mac 2011):
    https://www2.downloadoffice2010.microsoft.com/macdl/registerkey.aspx?ref=macdl&c ulture=en-US
    They used to have a free 30 trial, but I don't seem to see that anywhere.

  • Help - my teenager wants a blackberry and I already pay for three phones!

    Looking for help or advice on a plan that includes a blackberry.  i have three lines in family program that cost $153 every month for unlimited text and minimum amount of talking minutes.  they don't talk, they text.  I really don't want to spend any more money each month but she is really hoping for a blackberry for her birthday.  any advice?  any way to save money on this?

    mof wrote:
    ... they don't talk, they text.  I really don't want to spend any more money each month but she is really hoping for a blackberry for her birthday.  any advice?  any way to save money on this?
    You said "teenager" - are we talking 13, 16, 18??  IMHO, a 13 or 16 year old doesn't need a Blackberry, but that's just my opinion.  The major advantage of a BB over other smartphones is its efficiency in dealing with email, and the ability to conference via BBM.  You said they "text" - (and I know they do!!!).  Does your teen do a lot with email?  Do her friends have BB's that she would be using BBM to communicate?  If the answer to these is NO, then she probably doesn't NEED a BB.  She may WANT one, but if all she does is a lot of texting, then she may be just as happy with  something that does awesome texting.
    However, if she is 18, or 19, and working, and has her heart set on a BB, perhaps suggest you will pay for the data for, say, 3 months as a birthday gift, and she has till then to figure out how to pay for that portion of the bill after that point.  In other works, if she wants the BB, then there is a cost.  And at 18 or older, she xcan be responsible for that cost.
    So, that's my advice.  You are welcome to do what you like with it.    We've got 4 kids, now 19 and 20 somethings - 2 have their own plans, 2 still on our family plan and getting the phones that WE say they will have.  They know if they want more, they will pay their own bills.  One daughter has the Intensity II and cares little about data; the oldest son has had every iPhone since it was introduced and has them pre-ordered so he gets it as soon as he can.  But they pay their own, and can do what they like.

  • Cannot synch or d/l new os5 software. Cannot access apple store. I called support and they wouldn't help unless I pay for it. Called apple store and they laughed over the phone

    Very frustrated with Apple. I have removed and re-downloaded itunes software at least a dozen times. When I plug in phone to synch, itunes does come up. Cannot access apple store. Programs stalls in middle and freezes my PC. I cannot download any apps, music or new OS5. Tried calling support, they will not help unless I pay for the help.  Then called the nearest Apple store and they laughed at me over the phone.
    I did notice that quicktime did not download with itunes. Had to download quicktime separately.
    What do I do to get this software to work?

    Very frustrated with Apple. I have removed and re-downloaded itunes software at least a dozen times. When I plug in phone to synch, itunes does come up. Cannot access apple store. Programs stalls in middle and freezes my PC. I cannot download any apps, music or new OS5. Tried calling support, they will not help unless I pay for the help.  Then called the nearest Apple store and they laughed at me over the phone.
    I did notice that quicktime did not download with itunes. Had to download quicktime separately.
    What do I do to get this software to work?

  • Having trouble with Dreamweaver and fireworks willing to pay for support

    I'm new to the forum and i was hoping to get some help with
    dreamweaver and fireworks.
    I built a site on my own using dreamweaver 3 years ago but
    have forgotten almost everything. I am planning on building a new
    web site and have been messing with dreamweaver for over a week
    trying to figure it out, with little success. I bought a web
    building package years ago that included fireworks, dreamweaver,
    freehand and maybe more, but i lost my books on dreamweaver and
    fireworks somehow.
    Anyways, I was trying to learn dreamweaver 3 and fireworks
    and was having a lot of trouble with it. The dreamweaver bible
    assumes you know how to make a navigation bar using fireworks and
    that simply isnt the case for me. So I need help with that.
    Also, i have been having trouble with my template. This is
    how you save your basic page correct? For some reason it doesnt
    save the whole page for me. I figured out the editable regions
    part, I think, but since i didnt know how to make a navigation bar
    I made my own links out of text, and this part isnt saving with the
    template.
    I have a lot more questions but i think ive taken enough of
    your time. I am willing to pay someone to help me build this site,
    i cant afford a lot but i think my questions are pretty basic.
    Thanks

    There is a recent thread on the FW forum that may interest
    you - it's called
    "Firworks and HTML". The advice there applies in your case,
    too.
    One problem with your use of DW3 is this -
    the browser world has changed quite a bit in the almost 10
    years since DW3
    was released. Some (many?) of the behaviors in DW3 simply
    won't work any
    more because of these (significant) changes. Are you
    absolutely locked into
    using DW3?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jfmalewitz" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm new to the forum and i was hoping to get some help
    with dreamweaver
    > and
    > fireworks.
    > I built a site on my own using dreamweaver 3 years ago
    but have forgotten
    > almost everything. I am planning on building a new web
    site and have been
    > messing with dreamweaver for over a week trying to
    figure it out, with
    > little
    > success. I bought a web building package years ago that
    included
    > fireworks,
    > dreamweaver, freehand and maybe more, but i lost my
    books on dreamweaver
    > and
    > fireworks somehow.
    > Anyways, I was trying to learn dreamweaver 3 and
    fireworks and was having
    > a
    > lot of trouble with it. The dreamweaver bible assumes
    you know how to make
    > a
    > navigation bar using fireworks and that simply isnt the
    case for me. So I
    > need
    > help with that.
    > Also, i have been having trouble with my template. This
    is how you save
    > your
    > basic page correct? For some reason it doesnt save the
    whole page for me.
    > I
    > figured out the editable regions part, I think, but
    since i didnt know how
    > to
    > make a navigation bar I made my own links out of text,
    and this part isnt
    > saving with the template.
    > I have a lot more questions but i think ive taken enough
    of your time. I
    > am
    > willing to pay someone to help me build this site, i
    cant afford a lot but
    > i
    > think my questions are pretty basic.
    > Thanks
    >

Maybe you are looking for

  • How to link a webi report from crystal report

    Hello everyone,                       I am trying to link a webi report from crystal XI. In my crosstab, the data is divided grouped by periods. So for every country it shows data along a period of time. The details for the value of the crosstab are

  • Problem with "Edit in Photoshop" and Lightroom 2.1 failing to import new file

    I am a new user to Lightroom, so I won't be surprised if the problem is at the dull end of the keyboard... I am working with Lightroom 2.1 (still in my 30-day free trial), Photoshop CS3 with ACR 4.6, on Windows XP (fully updated). My image files are

  • [cs3 vba] How to move textframe with TOC generated?

    I read one answer here, that "CreateTOC" give reference for story. But how can i use this reference? line myDoc.CreateTOC MyTOCStyle, True, , Array(20, 90) do not give any possibility to have textframe as object. I need this, because: myInd.ActiveWin

  • Display the phone number of person to whom you are calling

    It is stange & funny Black Berry Z10 gives option of displaying your phone no while making call but doesn't have option of displaying phone no of person to whom you are making call. It only display the contact name.

  • Do not update N95 to v11

    To one and all do not update your nokia n95 to version 11 i have found that v11 has solved many issues but has also created 2 which are really annoying the good wlan is more stable Gps locks in quicker maps seem to be updated(no more 'no results foun