Simple website interaction

I want to make a simple website-interaction program. The program will run on my computer. It needs to connect to a webpage, get some numbers from specific places on that page, do some calculations with those numbers and then click some javascript buttons based on those calculations.
My question is what is the way to do this? Do I need a specific programming language (do I need to write this in javascript or html? It seems not to me, but I don't know), is there some tutorial about website-interaction? This seems like a common problem, which suggests there is a (relativly) easy way to do this, but I can't find it (mainly because I don't know where to look).

If you want to develop web pages with Java, here are the rough steps.
It will take you quite some time:
* read a book on Java (Head First in Java is recommended).
* run a a number of the book's examples on the DOS command line
to get familiar with that before moving onto an IDE.
* Download and install the Eclipse IDE (its free).
* Practice writing small java projects in the IDE.
* read a book on JSP and Servlets (a JSP book typically covers both)
* Install apachie Tomcat (its free)
* configure Eclipse to work with Tomcat
* create a hello world JSP page in Eclipse and get it to display
* create a hello world servlet in Eclipse and get it to display
* Have the JSP page submit user input to the servlet.
Then, have the servlet process the input and put its results in request scope.
Then, have the servlet dispatch to the JSP page.
Then, have the JSP display the data.
* Read a book or on-line tutorial on JSTL
* Read a book on XHTML
* Read a book on Javascript
* Read a book on JDBC
* Install a free database such as Oracle Lite (there are others)
and learn how to create a database table via its browser utility tool.
* Get your JSP page to submit data to the database via the servlet.
* Read up on MVC separation of concerns for creating a web application.
* learn how to create a war file to run your applicaiton in Tomcat independent of Eclipse.

Similar Messages

  • Simple ALV interactive list...

    <b><b>hi i am a fresh Learner in ABAP and i am doing a small program in simple ALV interactive report in SD module that  gives me::
    1. SALES and then the invoice details of one particular value i click ,when delivery document number is given.
    2. Deivery and invoice details of one particular value i click ,when sales order number is given.
    3. Sales and delivery details of one particular value i click , when invoice order details are given.
    so i need a clear code for the above. i can input any one of the three inputs to get the correct solution.. please give me a valid solution and not useless ones..
    .. please help me with the same at the earliest !!!!!!!!!!!</b></b>
    Message was edited by: ashokkumar ramkumar, please urgent replies...........

    An Interactive ALV Report
    *& Report  ZZ_22038_22098_002                                          *
    *& This is an Interactive ALV report, where on line slection we can see
    *&  the secondry list
    REPORT  ZZ_22038_22098_002 NO STANDARD PAGE HEADING LINE-SIZE 650
    MESSAGE-ID ZZ_9838                      .
    TYPE-POOLS: SLIS.
    *type declaration for values from ekko
    TYPES: BEGIN OF I_EKKO,
           EBELN LIKE EKKO-EBELN,
           AEDAT LIKE EKKO-AEDAT,
           BUKRS LIKE EKKO-BUKRS,
           BSART LIKE EKKO-BSART,
           LIFNR LIKE EKKO-LIFNR,
           END OF I_EKKO.
    DATA: IT_EKKO TYPE STANDARD TABLE OF I_EKKO INITIAL SIZE 0,
          WA_EKKO TYPE I_EKKO.
    *type declaration for values from ekpo
    TYPES: BEGIN OF I_EKPO,
           EBELN LIKE EKPO-EBELN,
           EBELP LIKE EKPO-EBELP,
           MATNR LIKE EKPO-MATNR,
           MENGE LIKE EKPO-MENGE,
           MEINS LIKE EKPO-MEINS,
           NETPR LIKE EKPO-NETPR,
           END OF I_EKPO.
    DATA: IT_EKPO TYPE STANDARD TABLE OF I_EKPO INITIAL SIZE 0,
          WA_EKPO TYPE I_EKPO .
    *variable for Report ID
    DATA: V_REPID LIKE SY-REPID .
    *declaration for fieldcatalog
    DATA: I_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
          WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA: IT_LISTHEADER TYPE SLIS_T_LISTHEADER.
    declaration for events table where user comand or set PF status will
    be defined
    DATA: V_EVENTS TYPE SLIS_T_EVENT,
          WA_EVENT TYPE SLIS_ALV_EVENT.
    declartion for layout
    DATA: ALV_LAYOUT TYPE SLIS_LAYOUT_ALV.
    declaration for variant(type of display we want)
    DATA: I_VARIANT TYPE DISVARIANT,
          I_VARIANT1 TYPE DISVARIANT,
          I_SAVE(1) TYPE C.
    *PARAMETERS : p_var TYPE disvariant-variant.
    *Title displayed when the alv list is displayed
    DATA:  I_TITLE_EKKO TYPE LVC_TITLE VALUE 'FIRST LIST DISPLAYED'.
    DATA:  I_TITLE_EKPO TYPE LVC_TITLE VALUE 'SECONDRY LIST DISPLAYED'.
    INITIALIZATION.
      V_REPID = SY-REPID.
      PERFORM BUILD_FIELDCATLOG.
      PERFORM EVENT_CALL.
      PERFORM POPULATE_EVENT.
    START-OF-SELECTION.
      PERFORM DATA_RETRIEVAL.
      PERFORM BUILD_LISTHEADER USING IT_LISTHEADER.
      PERFORM DISPLAY_ALV_REPORT.
    *&      Form  BUILD_FIELDCATLOG
          Fieldcatalog has all the field details from ekko
    FORM BUILD_FIELDCATLOG.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'AEDAT'.
      WA_FIELDCAT-SELTEXT_M = 'DATE.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'COMPANY CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'BUKRS'.
      WA_FIELDCAT-SELTEXT_M = 'DOCMENT TYPE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'IT_EKKO'.
      WA_FIELDCAT-FIELDNAME = 'LIFNR'.
      WA_FIELDCAT-NO_OUT    = 'X'.
      WA_FIELDCAT-SELTEXT_M = 'VENDOR CODE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG
    *&      Form  EVENT_CALL
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    EXCEPTIONS
       LIST_TYPE_WRONG       = 1
       OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "EVENT_CALL
    *&      Form  POPULATE_EVENT
         Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'USER_COMMAND'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'USER_COMMAND'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-NAME.
      ENDIF.
    ENDFORM.                    "POPULATE_EVENT
    *&      Form  data_retrieval
      retreiving values from the database table ekko
    FORM DATA_RETRIEVAL.
      SELECT EBELN AEDAT BUKRS BSART LIFNR FROM EKKO INTO TABLE IT_EKKO.
    ENDFORM.                    "data_retrieval
    *&      Form  bUild_listheader
          text
         -->I_LISTHEADEtext
    FORM BUILD_LISTHEADER USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
      DATA HLINE TYPE SLIS_LISTHEADER.
      HLINE-INFO = 'this is my first alv pgm'.
      HLINE-TYP = 'H'.
    ENDFORM.                    "build_listheader
    *&      Form  display_alv_report
          text
    FORM DISPLAY_ALV_REPORT.
      V_REPID = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_CALLBACK_PROGRAM                = V_REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
         I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
         I_GRID_TITLE                      = I_TITLE_EKKO
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         = ALV_LAYOUT
         IT_FIELDCAT                       = I_FIELDCAT[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
        i_default                         = 'ZLAY1'
         I_SAVE                            = 'A'
        is_variant                        = i_variant
         IT_EVENTS                         = V_EVENTS
        TABLES
          T_OUTTAB                          = IT_EKKO
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "display_alv_report
    *&      Form  TOP_OF_PAGE
          text
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
       i_logo                   =
       I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN '&IC1'.
          READ TABLE IT_EKKO INTO WA_EKKO INDEX RS_SELFIELD-TABINDEX.
          PERFORM BUILD_FIELDCATLOG_EKPO.
          PERFORM EVENT_CALL_EKPO.
          PERFORM POPULATE_EVENT_EKPO.
          PERFORM DATA_RETRIEVAL_EKPO.
          PERFORM BUILD_LISTHEADER_EKPO USING IT_LISTHEADER.
          PERFORM DISPLAY_ALV_EKPO.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  BUILD_FIELDCATLOG_EKPO
          text
    FORM BUILD_FIELDCATLOG_EKPO.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELN'.
      WA_FIELDCAT-SELTEXT_M = 'PO NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'IT_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'EBELP'.
      WA_FIELDCAT-SELTEXT_M = 'LINE NO'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MATNR'.
      WA_FIELDCAT-SELTEXT_M = 'MATERIAL NO.'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MENGE'.
      WA_FIELDCAT-SELTEXT_M = 'QUANTITY'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'MEINS'.
      WA_FIELDCAT-SELTEXT_M = 'UOM'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    WA_FIELDCAT-TABNAME = 'I_EKPO'.
      WA_FIELDCAT-FIELDNAME = 'NETPR'.
      WA_FIELDCAT-SELTEXT_M = 'PRICE'.
      APPEND WA_FIELDCAT TO I_FIELDCAT.
      CLEAR WA_FIELDCAT.
    ENDFORM.                    "BUILD_FIELDCATLOG_EKPO
    *&      Form  event_call_ekpo
      we get all events - TOP OF PAGE or USER COMMAND in table v_events
    FORM EVENT_CALL_EKPO.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         I_LIST_TYPE           = 0
       IMPORTING
         ET_EVENTS             = V_EVENTS
    EXCEPTIONS
      LIST_TYPE_WRONG       = 1
      OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "event_call_ekpo
    *&      Form  POPULATE_EVENT
           Events populated for TOP OF PAGE & USER COMAND
    FORM POPULATE_EVENT_EKPO.
      READ TABLE V_EVENTS INTO WA_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
      IF SY-SUBRC EQ 0.
        WA_EVENT-FORM = 'TOP_OF_PAGE'.
        MODIFY V_EVENTS FROM WA_EVENT TRANSPORTING FORM WHERE NAME =
    WA_EVENT-FORM.
      ENDIF.
      ENDFORM.                    "POPULATE_EVENT
    *&      Form  TOP_OF_PAGE
          text
    FORM F_TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_LISTHEADER
       i_logo                   =
       I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    *retreiving values from the database table ekko
    FORM DATA_RETRIEVAL_EKPO.
    SELECT EBELN EBELP MATNR MENGE MEINS NETPR FROM EKPO INTO TABLE IT_EKPO.
    ENDFORM.
    FORM BUILD_LISTHEADER_EKPO USING I_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA: HLINE1 TYPE SLIS_LISTHEADER.
    HLINE1-TYP = 'H'.
    HLINE1-INFO = 'CHECKING PGM'.
    ENDFORM.
    FORM DISPLAY_ALV_EKPO.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = V_REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = 'F_USER_COMMAND'
       I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      = I_TITLE_EKPO
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = I_FIELDCAT[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         =
       I_SAVE                            = 'A'
      IS_VARIANT                        =
       IT_EVENTS                         = V_EVENTS
      TABLES
        T_OUTTAB                          = IT_EKPO
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.

  • Deploying simple website made up of JSF pages

    Hi all,
    I have made a simple website containig only JSF pages.
    But I could not able to deploy it on the oracle app server 10.1.3.0.
    At the time of deploying it is not showing any error message.
    But the website is not showing when I enter the given URL.
    Can you plesase help me out.
    Can you tell me any propper user guide to deploy JSF pages on oracle app server 10.1.3.0.
    Thanks in advance.

    Hi,
    Except for specifying deployment plan, the procedure to deploy from JDev is the same. So, if your JSF application is running fine on the Embedded OC4J, then try deploying from JDev to App Server.
    Check if the JSPX files are extracted properly in the applications folder of the OC4J home.
    Check http://download.oracle.com/docs/cd/B31017_01/core.1013/b28764/deploy_em.htm#CACJCCEJ for more info
    Rgds
    Vikas

  • Is iWeb08 up to making a simple website?

    Hi,
    I am going to need to make a simple business website. I have looked at some other programs and was hoping that iweb would be the answer. Is iWeb the easiest way to go, or would you recommend something else.
    All I need is a simple website that I can easily work with. No shopping cart or ecommerce needed.
    Thank you

    iWeb can do what you want and is an easy way to go. I would advise you not to publish it on .Mac but use a commercial server for the following reasons...
    Too many people have publishing problems with .Mac.
    If you publish to a folder you can optimize your pages for faster download.
    You get tech support and more storage space.
    Its cheaper and more reliable.
    To optimize and upload I use Web Site Maestro...
    http://www.tonbrand.nl/
    I have used Host Excellence for two years and I am happy with their service...
    http://www.hostexcellence.com/index.php

  • Website Interactive PDF? What programs to use out of the Creative Suite?

           We are looking to add an Interactive Pdf type of document that would pop up when prompted for online customers.  They would fill in predetermined areas for text and logo uploads.  This could not be downloaded by them, it would be filled in then saved to our website.  Also we need to program in or be able to have the customer change font sizes and colors as well.
           We have the Adobe CC and have the tools, just not sure which program or programs would be the best to use?
           Any or multiple ideas would be great, maybe some links to examples?
           I should note that I believe our website team does not use adobe programs for coding.  So I would be looking for something that could be made in an adobe program and usable on our site.  We do have the adobe web suite though if needed to make something then save for later coding.
          Thanks in advance Adobe Community!!

    This has nothing to do with PDF or website design as such. You need a dynamic system based on a content management system with PHP and a suitable web server.
    Mylenium

  • Help about Dreamweaver to make a simple website.

    Hi all,
    I am trying Dreamweaver and honestly I know very little about it, for that reason, I would like to make a simple HTML website but I have some problems with it. I have some Photoshop  backgrounds files and I would like to put some text buttons on these photoshop backgrounds and then link them between each other, for it, Could anybody help me?
    Thanks for your time.
    Best Regards
    Alejandro Castan

    Alejandro:  At this point, the only person who can help you is you, yourself.  You need to have some understanding of HTML (and hopefully CSS) to really get started on this job.  Without that, you will find your experience with DW to be very frustrating, and your results to be well less than satisfactory.
    I have some Photoshop  backgrounds files and I would like to put some text buttons on these photoshop backgrounds and then link them between each other
    Approaching a web page like this is not productive.  There is ever so much more to it than  just making a background and placing buttons on it....
    You can find good tutorials about HTML here - http://www.w3schools.com

  • Is it possible to create a simple website like this in Muse?

    Take a look at this website:
    Shaun Weaver - A fullstack developer and digital creative from London, UK aiming to bridge the gap between great code & …
    I have designed my website and it works in a very similar way - one pager with full screen graphics. What I like about the example above though, is the ability of the site to detect the size of the web browser window. Each section of the webpage takes up the whole browser window, no matter what size the browser is. Is it possible to recreate this in Muse?
    Thanks

    You can mimic this type of a  design style but not from a functional standpoint. Let me explain. Here's what muse cc or 2014 is missing from functional side of things to allow you to create that type of a site:
    First and foremost:
         • Responsive Scaling is not part of the equation in muse, not yet at least. In fact its a top most requested feature that adobe is neglecting to add to muse (their workaround is you can create a seperate phone/tablet design) if you ask me its a shame and labor intensive.
         • Smooth Rollover Animations its easy to hack muse into creating a smooth rollover effect animations its not an actual feature, by hack I mean its 'doable' but its just a pathetic/foolish 'workaround' - see tutorial Adobe Muse CC 7.0 Tutorial | Smooth Fading Rollovers - YouTube
         • No Muse Native animations you have to switch to adobe edge for animations and export files as .oam files and import them back into muse (labor intensive process - if you ask) and your limited with that too.
         • The widgets are not as complex as you want them to be to allow you to create slideshow animations.

  • Automator and Website Interaction

    Can Automator do this?
    Go to web site
    Click Login link
    Enter login info
    Click specific image links that download csv files
    Specific download folder
    I got this working with Watch Me Do, but Automator doesn't actually look at the properties of things - its all spacial. If the FireFox icon on my dock got moved, it clicks on the icon in the place where FireFox was - opening the wrong app. If I add a folder to where I download the file so the list is in a different order, it saves to the wrong folder.
    I was hoping Automator would be more like WinTask for Windows. If Automator can't do this, does anyone know of something else. Applescript? I don't think so.

    Actually I've tried Fake and it seemed more limited than Automator. I did figure this out though. It was the login that throw me. I can get to the .csv files without logging in by using the absolute URL which I got from the source code. So it was really just two actions for each file - Get Specified URLs and Download URLs. Quite easy.

  • How do I Create interactive images to be used in another website?

    Our office is contracted with a simple website company, so from the begining the framework is there. I want to add an interactive map that has each county hyperlinked to information about that area. I was told that Dreamweaver is the program I would need in order to create it.
    So, I have the program now but every tutorial I read is about making your own website in dreamweaver and I can't find anything about how to create the image to upload into a different website.
    Anyone know how to do this????
    Thank you!

    This helps, thanks. I have the content on the web page (where the hyperlinks will attach to), I have the image of the map, and I am making the shapes for the hotspots, just not how to get it all to link up.
    Also, when I saved a trial (just to make sure it would all work) it doesn't successfully upload as an image onto the website, just a little box with a red X. Any more thoughts anyone? 

  • Simple image slideshow --- How??

    How is it possible to make a simple, non-interactive slideshow of images - with NO LINKS, NO BUTTONS - nothing, except the pictures as a non-interactive slideshow.
    I did find some jQuery scripts but I'm unable to make it work. Check the links below:
    Here is the website that I used as a help reference: http://www.geckodesigns.com/tutorial-dreamweaver-javascript-slideshow. php
    Here's my website's subpage: http://rockworksstudio.fi/rantatylli/pages/palvelut.html where I have tried putting up this slideshow.
    So I have done everything as guided on the first website but as you can see, it doesn't "play" the slideshow. Any help from you guys?
    Please mail me to: [email protected] or answer on this forum. The help would be greatly appreciated.

    I had the darndest time getting my first slideshow to work. I kept making really stupid errors, but stupid errors are only stupid in retrospect.
    First: You must have the jQuery library in your website and your page must correctly point to it. Gecko Designs is using jQuery 1.7.2, so you should not use any other version, as later versions may "break" the code. Also, if you don't create the JavaScript instructions for Gecko's Cycle plugin in your <head> area (if you put it into the <body> of your webpage), it won't work.
    One mistake I made is when I put in the instructions, I forgot my head. The full code for their instructions ought to be:
    <script language="javascript" type="text/javascript">
    jQuery(document).ready(function($) {
    $('#slideshow').cycle({ fx: 'fade'});
    </script>
    I generally put these things just before the closing head tag: </head> But I put the calls to jQuery and the specific plugin before I put in the instructions. It's calling something that is supposed to be loaded before it calls it, so I put it above.
    So, do this:
    <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
    <script type="text/javascript" src="js/jquery.cycle.all.js"></script>
    <script language="javascript" type="text/javascript">
    jQuery(document).ready(function($) {
    $('#slideshow').cycle({ fx: 'fade'});
    </script>
    </head>
    Also, make darned sure that jQuery is in your /js folder. I generally will select the path and filename and right-click, choose Code Hint Tools> URL browser and then click on Browse… then select the file within your defined site to make sure that I have the correct path.

  • Mobile to Website

    I am truly sorry for posting this here as I tried asking a lot of forums (must be the wrong ones) about that and got no satisfactory result. I hope some of you could help me..
    I am going to build a simple website that interacts with cellular/mobile phones. How is it possible for users to send a command message to the website regardless of regions? For example, user X has an account on ABC.Com and he can ask for a particular picture from the site by following a particular formatted text message. How can it be done?
    A year ago in school, I made a simple experimental application where students register for an account using their phones, add their current subjects so that they can get quiz, exam, grade related info using their phones. I made one client side program to send the formatted message to another phone which is connected to internet. The phone that is connected to the internet receives the messages and forwards 'em to the server using HttpConnection. The server is a Java Servlet that listens to incoming requests and sends a response back. It was just for fun.
    Any help would be highly appreciated.
    Edited by: S.A.J on May 13, 2008 3:28 PM

    C'mon guys.. Share some thoughts please..
    Any good link would do..

  • How do I get my bridge web gallery to actually work in my photoshop website

    Hi
    Can anyone explain to me in simple english (please - as I'm just a learner) how I get my web gallery (created in bridge) to work with my photoshop website.
    This is what I have done so far:-
    (1) I've created my root folder called 'test'. It has 3 subfolders called:-
    - 'page1' (which is my homepage created as said below)
    - 'page2-gallery' (where I want my bridge web gallery to be)
    - 'page3-other' (for another page link - not important here).
    (2) I have also created a simple website in photoshop (my homepage said above), using the slice tool and have saved it by saveforweb. So I now have my html website file and which works when tested online. One of the slice segments is for my 'gallery' icon on the homepage which, when clicked, should go directly to my bridge web gallery created.
    (3) I have also created a web gallery in bridge and I saved it applying the 'savelocation' as being in page2 of my root folder. But when I checked it online the 'gallery' icon on my homepage does nothing. I then tried saving the gallery to my root folder instead (i.e. not in the page2 of my root folder) but with zero results.
    (4) I've then dragged the root folder's html file (my website's homepage) into dreamweaver, clicked the 'gallery' icon and tried to apply the page2 of my root folder file to the properties inspector's link box (bottom of dreamweaver workspace) - but this wouldn't work either.
    I know that I must be close to solving this riddle and so can anyone help me please.
    J in London, UK

    http://forums.adobe.com/community/photoshop
    http://forums.adobe.com/community/bridge
    http://forums.adobe.com/community/dreamweaver
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • Get form values from an uploaded offline interactive form.

    Hi,
    I have created a simple offline interactive form with 2 text input elements Email and PhoneNumber.
    I have created a button on the view. In the action, I have to get the values of the Email and PhoneNumber
    How to capture input values from an offline interactive form.
    Thanks
    Srinivas

    Hi Arafat,
    I followed the how to do document https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/wdjava%20archive/offline%20interactive%20pdf%20form%20using%20download.pdf , and it mentioned what you just said. But I couldn't understand your suggestion "In second view you need to embed the IF element and create the required context attributs mapping for fields. Set the pdfMode as usePDF."
    In the second view, I have created another interactive form for previewing the offline form.
    I am able to preview the offline form. On submit action (submit button is on the view), when I print the context values, I get nulls.
    Thanks
    Srinivas

  • Can't republish to my website from iWeb

    I created a very simple website with FatCow as my host, using a website design program made available by the host. Then I used iWeb to make some minor changes and republished to my FTP server, and that was successful. Then, using iWeb, I chose to redesign and enlarge the site with additional pages, each page consisting of a large iPhoto album, and attempted to re-publish it. That attempt failed, and so have a few other attempts to re-publish it with minor changes to pages. Some of the changes were successful, but none of the photo album contents were published - that is, they are just empty pages except for navigation bars and headers -no photos.
    I have re-published successfully to a folder on my desktop with no missing content, but I don't know what this tells me. Why can I publish to a folder, but not to the site on the Web? I will be grateful to any or all who can explain what I'm missing or doing wrong.
    Thanks, Rudd

    Same issue here. I actually am able to see my test website in Firefox but not in Safari. Check this out:
    www.happymarriageproject.com
    Thanks,
    Ben

  • Carrying website over to a new computer ...

    I have been using iWeb to build a simple website and I need to know how to save and be able to get back my already created pages once I moved to my other computer from right within the iweb application?
    Presently I am using a mac mini and order an iMac i7 a few days ago. The machine won't be here until Jan. 7th, so I am just planning ahead.
    I remembered when I switched from a macbook pro to the mini a few months back, I had to again rebuilt the site from the beginning. I am trying to avoid having to do that again.
    help would be greatly appreciated. thanks

    You want to copy the Domain.sites2 file to the other Mac. It's located in your User/Library/Application Support/iWeb folder. It's the heart and soul of your site so keep a current backup of it at all times.
    Happy Holidays

Maybe you are looking for

  • Report row highlight based on a page item

    Is there a way to highlight a report row based on the value of a page item? In my case I have a report where the application user requests data in a detail report using a column link in the master report. This loads an id number from my report into a

  • How do I find background music loops on Captivate 7?

    I'd like to put background music in, but can't find it on Captivate 7 AND can't import loops from Garage band.  Either one would work. Thanks, Mary

  • Transfering songs/videos from iPod to iTunes...?

    Until recently I have been using iTunes software on our home pc. A few weeks ago, however, I purchased a laptop and have intstalled iTunes on it. However, I havent been able to find a way to get the songs and videos on my ipod to my new iTunes progra

  • HR-payroll Error in simulation

    hello experts i am getting error in simulation plz guide me . how to resolve it.Error msg is shown below. P2003      S**  DPS       Insert Shift Substitutions in PWS                               No entry in table T556 for key 02                     

  • If (XML){ javascript.generateErrors()} *grrr*

    Hi, I've written an XSL-File who reads out an XML. The XSL file should also use an JavaScript to check user input. But it wouldnt work. It always says ")" is missing in Line....! I4ve made an tTest output of the JavaScript as text in browser and used