Help : Lost in Code - Trying to make a simple Click-Through

Hey Everyone -
I've come in search of some help and expertise. I've found a
website which I would like to copy in functionality - in hopes of
creating a simple slideshow of images. They are using the MOOTOOLS
framework for the Slide animation - i've gotten that to work
- but i can't figure out how to replicate the clickthrough-
SO - what i'm trying to do is copy this page exactly -
http://www.thegraphicgraphic.com/
you'll see that it's just three lines of text ( rollovers )
and the last line opens up a javascript slider window - now i've
managed to copy most of it by taking the code and figuring out the
urls for the javascript and such .
check out my version here :
http://www.nontype.com/beograd.html
i've got the css and java stuff working okay - but what i
can't seem to figure out at all is how they are getting the
rollover links to link to the NEXT IMAGE - they're using some tags
that i don't understand : it looks something like this : : :
<div id="header">
<ul>
<li>
<a href=""
onmouseover="this.innerHTML = 'NEXT'"
onmouseout="this.innerHTML = 'THE'">
THE</a>
</li>
<li>
<a href=""
onmouseover="this.innerHTML = 'PREVIOUS'"
onmouseout="this.innerHTML = 'GRAPHIC'">
GRAPHIC</a>
</li>
<li>
<a href="#" id="button" onmouseover="this.innerHTML =
'INFORMATION'"
onmouseout="this.innerHTML = 'GRAPHIC'">
GRAPHIC</a>
</li>
</ul>
</div>
AND The JAVASCRIPT Used for both the sliders ( and I assume
the click-through functionality ) is :
window.addEvent('domready', function() {
var Slider = new Fx.Slide('about',{mode: 'horizontal',
duration: 100}).hide();
$('button').addEvent('click', function() {
Slider.toggle('horizontal');
function noSpam(user,domain) {
locationstring = "mailto:" + user + "@" + domain;
window.location = locationstring;
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
I just want to click NEXT to progress to the next background
image / and PREVIOUS for the prev. image . . . . . . . . Could
anyone here tell me how to do this as in the first site ? ? ? Would
I be able to simply create multiple HTML Pages - use an Embed tag -
and then link the PREV and NEXT buttons with tags ?
I'm just trying to make this work by any means but am finding
the code impossible to crack -
I tried asking this question in the mootools forum but was
told to look elsewhere - I'm more than willing to use
any other means in order to make this work .
MANY THANKS IN ADVANCE FOR YOU HELP . . .

Have you asked the authors?
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
==================
"aerolex" <[email protected]> wrote in
message
news:f2naeu$q66$[email protected]..
> Hello - would anyone have any advice - or should i
somehow reword the
> question ?
>
> or could some provide some insight as to where i might
look to resolve
> this question ?
>
> THANKS AGAIN

Similar Messages

  • Help! I am trying to make triangle which is made up of tiny blue dots which gradually get denser and denser, and by the middle of the triangle (ie. two-thirds of the way in) are solid blue.

    Help! I am trying to make triangle which is made up of tiny blue dots which gradually get denser and denser, and by the middle of the triangle (ie. two-thirds of the way in) are solid blue.

    Illustrator would be better than Photoshop, but you can do it after a fashion.
    Create a new layer, and run a blue to white gradient down it.
    Now go Filter > Sketch > Halftone.  Set dot size to what ever you need, and contrast to high.
    This will do it, but maybe not with the sort of control you need.
    An alternative would be to use Google images to find the halftone gradient, and Hue/Saturation > Colorize to make the black dots blue.

  • Im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    im trying to make a simple 360 rotation for a 3d logo in CC 2014 but when i tried to create the 1st key frame the image when out axis

    I find that if you have multiple 3d object  they must be merged into a single 3d layer their positions reset to align to the same axises then sized and positioned along them. The layer should then be able to be animated well around an axis like the y axis. Here a Sphere, Cylinder and ring. http://www.mouseprints.net/old/dpr/McAssey-CC.mp4

  • Trying to make a simple voting/poll system.

    Hi everyone. I am trying to make a very basic voting system and the only part i am having trouble with is the results. The DB table has QuestionID and VoteResult. In the VoteResults you can enter the word "Excellent", "Good", "Bad". I would like it to show the result of all the "excellent" vote and add a recordcount next to it showing how many people voted Excellent and how many selected good...and so on.I also tried showing the results with cfchart, but i have a very limited knowledge or the cfchart and just couldn't get it to work....so ya.
    For example:
    Excellent 20 votes
    Good 5 votes
    Bad 75 votes
    Hope this makes sense.
    Thanks

    Here is my code
    =====   Code  =====
    <cfparam name="URL.Question" default="1" />
    <cfquery name="qResults" datasource="poll">
    SELECT QuestionID,COUNT(VoteResults) AS Votes
    FROM PollSystem
    WHERE QuestionID = <cfqueryparam value="#URL.Question#" cfsqltype="cf_sql_numeric">
    GROUP BY QuestionID
    </cfquery>
    <!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>
    </head>
    <body>
      <cfchart format="flash"
                 scalefrom="0"
               scaleto="100"> 
    <cfchartseries type="bar" 
                   query="qResults">
    <cfchartdata item="Excellent" value="#qResults.Votes#">
    <cfchartdata item="Good" value="#qResults.Votes#">
    <cfchartdata item="Bad" value="#qResults.Votes#">
    </cfchartseries>
    </cfchart>
    </body>
    </html>
    ===== End code =========
    It's showing me 4 bars, 3 are named according to the code, but there's an extra one with no name and i don't know where it came from. Plus it's show the entire vote results, for example questionid 1 has 9 votes in total. it's counting the excellent, good and bad votes together.
    Again the database table only consists of QuestionID and VoteResults. that's it.

  • CS4 - Trying to make a simple walking animation symbol

    I've searched everywhere online, and can't find the help for this!
    I've found some videos, but they did not seem to offer any sort of help for me.
    I still cannot for the life of me figure out how to take 3 images, and make them into a simple walking animation and to convert that to one symbol.
    Can anyone offer their help to me please so I can get my project going?
    I'm using CS4, and all articles I can find are of the older versions of flash.

    I managed to figure out how to do it, and yes it was as you stated. I was trying to use motion before to make my images animate together, and now I realized that that is not how to do it.

  • Help me make a simple "click to link" action

    I'm trying to add an action to a button, so that if clicked,
    you are transfered to a certain link. Very simple stuff, but I just
    got into flash coding and understanding the basics, so forgive my
    noobness =)
    Here is the code so far (the action script for this one
    button):
    [code]
    // Action script...
    on (rollOver)
    gotoAndPlay("menu2")
    on (rollOut)
    stopAllSound();
    [/code]
    Hope someone can help me out =)
    -Stigma

    try:

  • Trying to make a simple background color change.

    I double clicked the foreground/background black and white squares as usual. This brought up the color selector and I changed to the color I wanted. When I clicked ok the foreground color changed to a medium gray instead of the color I had selected?

    Are you in Greyscale mode by any chance? Image > Mode > Select RGB.

  • Trying to make my calendar work through iCloud, but every event shows up twice on my devices.  Why?

    I'm attempting to have iCloud keep my calendars in sync over my devices.  But the events show us twice on each device. Why the duplicates?

    Hey briannagrace96,
    Welcome to Apple Support Communities! I'd check out the following article, it looks like it applies to your situation:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    You'll want to go through the following troubleshooting steps, and for more detail on each step follow the link to the article above:
    Try the iPod troubleshooting assistant:
    If you have not already done so, try the steps in the iPod Troubleshooting Assistant (choose your iPod model from the list).
    If the issue remains after following your iPod's troubleshooting assistant, follow the steps below to continue troubleshooting your issue.
    Restart the iPod Service
    Restart the Apple Mobile Device Service
    Empty your Temp directory and restart
    Verify that the Apple Mobile Device USB Driver is installed
    Change your iPod's drive letter
    Remove and reinstall iTunes
    Disable conflicting System Services and Startup Items
    Update, Reconfigure, Disable, or Remove Security Software
    Deleting damaged or incorrect registry keys
    Take care,
    David

  • How to make a simple animation within text area ?

    Hi guys ,I am getting familiar with the Flash animations so I would appreciate a bit of help.
    I am trying to make a simple animation within the text input area i.e.
    1.FAN BASE
    2.FA   NBASE
    What I want is the letter N to move slowly towards letter B.I have done motion tweening but it doesn't work - either the whole text is moving left right  or the letter N is simply skipping to the second position without smooth animation.( there's no error on motion tween by the way) any ideas ?
    Thanks.

    best would be you would create your sentence "fanbase" and break down the single letters into objects by selecting the whole textfield and pressing CTRL+B, convert everyone of them into single movieclips or graphics and tween them accordingly.

  • Help me please  !  Trying to publish NEW site to .mac

    HIya
    Not sure if anyone out there can help me but I tried to make changes to my web site. I keep getting the error message
    an erroe occured while publishing file 'Web/Sites/iWeb/Site'.
    Was working fine last night and yet this morning nothing happens. ALSO not sure whyt but now ALL web site seems to have been completely lost and there is now a Mac page in its place saying that NOTHING exists ! cool ( not ! ) can ANYONE suggest how to re-upload a web site ?????
    yours at wits end
    D

    hmmmmmmmmmmmm at the risk of sounding an utter
    moron, what do you mean by
    'name which your site has within the app '???
    It's the word which appears at the top of your site organizer at the left inside iWeb. "Site" by default.
    It's your .Mac url that people need, not your personal one. Your site is on .Mac.
    The page which cannot be found is Able images .html. Is this really on your site? Can you provide another page name that is? (Perhaps there is a spelling error -- people wouldn't normally put a space between images and .html).

  • Help me make a simple TextArea plz !!!

    i'm trying to make a simple 2 text areas and a send button, that don't do anything right now i just want them there, i was trying this
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;             
    import java.awt.event.*;       
    import java.net.URL;
    import java.io.IOException;
    public class swing1 abstract extends JFrame
                              implements ActionListener {
         private String newline = "\n";
         protected static final String textFieldString = "JTextField";
         protected static final String passwordFieldString = "JPasswordField";
            protected JLabel actionLabel;
         public swing1()
         super("swing1");
         //Create a regular text field.
                  JTextField textField = new JTextField(10);
                  textField.setActionCommand(textFieldString);
                 textField.addActionListener(this);
                             Frame frame = new Frame();
                             frame.setLayout(null);
                             frame.setBounds(100,100,150,70);
                             Button button1 = new Button("send");
                             frame.add(button1);
                             button1.setBounds(10,30,50,25);
                             frame.setVisible(true);
    }any help would be great thanks, i'm atempting to make a password reconision thingy for a lesson at uni
    thanks
    Ant

    i changed my code to this:-
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.io.IOException;
    public class swing1 extends JFrame implements ActionListener
         private String newline = "\n";
         protected static final String textFieldString = "JTextField";
         protected static final String passwordFieldString = "JPasswordField";
         protected JLabel actionLabel;
         private JTextField textField;
         private JPasswordField passwordField;
         private Container p; // make a panel to witch the components can be added
         public swing1()
              super("swing1");
              //Create a regular text field.
              textField = new JTextField(10);
              textField.setActionCommand(textFieldString);
              textField.addActionListener(this);
              //Create a password field.
              passwordField = new JPasswordField(10);
              passwordField.setActionCommand(passwordFieldString);
              passwordField.addActionListener(this);
              //Create some labels for the fields.
              JLabel textFieldLabel = new JLabel(textFieldString + ": ");
              textFieldLabel.setLabelFor(textField);
              JLabel passwordFieldLabel = new JLabel(passwordFieldString + ": ");
              passwordFieldLabel.setLabelFor(passwordField);
              //Create a label to put messages during an action event.
              actionLabel = new JLabel("Type text and then Return in a field.");
              actionLabel.setBorder(BorderFactory.createEmptyBorder(10,0,0,0));
              //Lay out the text controls and the labels.
              p=getContentPane(); //get te contant pane of this Swing1 to add the componets to
              p.add("West",textField); //add your fist component, add it west on the dafault borderLayout
              p.add("East",textFieldLabel);// add another component, add it east on the dafault borderLayout
              p.add("South",passwordField);// add it south on the dafault borderLayout
              p.add("North",actionLabel); // add it north on the dafault borderLayout
              setSize(400,100); //make it a bit bigger
              setVisible(true);
              public void actionPerformed(ActionEvent e)
              JFrame frame = new swing1();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
                   new swing1(); //make a new instance of your class
    [\code]
    but now it will compile but not run, i think its because i don't have a main method, whereshould i put my main method ?
    thanks
    Ant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to make a simple form layout without ad RAD tool

    I'm trying to make a simple form, but I'm not finding the right layout manager to make the components goes in Y axis. The BoxLayout could solve my problem, if it does not fill all the panel with the components.
    My SCCEE:
    public class TestSimpleForm extends JPanel {
        JLabel nameLbl = new JLabel("Name:");
        JTextField nameField = new JTextField();
        JButton okBtn = new JButton("OK");
        JButton cancelBtn = new JButton("Cancel");
        public TestSimpleForm() {
         add(nameLbl);
         add(nameField);
         add(okBtn);
         add(cancelBtn);
        public static void main(String[] args) {
         JPanel panel = new TestSimpleForm();
         // if i make it a boxlayout panel, the text field size goes huge
    //     panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
         JFrame f = new JFrame();
         f.setContentPane(panel);
         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         f.setSize(400, 600);
         f.setLocationRelativeTo(null);
         f.setVisible(true);
    }

    wellington7 wrote:
    ..My SCCEE:While I don't know what an SCCEE is, I am very familiar with the SSCCE, and..
    public class TestSimpleForm extends JPanel {
    .....this code is surely not an SSCCE.
    Running tool: Java Compile
    /media/disk/projects/numbered/all/TestSimpleForm.java:1: cannot find symbol
    symbol: class JPanel
    public class TestSimpleForm extends JPanel {
                                        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:3: cannot find symbol
    symbol  : class JLabel
    location: class TestSimpleForm
        JLabel nameLbl = new JLabel("Name:");
        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:4: cannot find symbol
    symbol  : class JTextField
    location: class TestSimpleForm
        JTextField nameField = new JTextField();
        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:6: cannot find symbol
    symbol  : class JButton
    location: class TestSimpleForm
        JButton okBtn = new JButton("OK");
        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:7: cannot find symbol
    symbol  : class JButton
    location: class TestSimpleForm
        JButton cancelBtn = new JButton("Cancel");
        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:3: cannot find symbol
    symbol  : class JLabel
    location: class TestSimpleForm
        JLabel nameLbl = new JLabel("Name:");
                             ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:4: cannot find symbol
    symbol  : class JTextField
    location: class TestSimpleForm
        JTextField nameField = new JTextField();
                                   ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:6: cannot find symbol
    symbol  : class JButton
    location: class TestSimpleForm
        JButton okBtn = new JButton("OK");
                            ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:7: cannot find symbol
    symbol  : class JButton
    location: class TestSimpleForm
        JButton cancelBtn = new JButton("Cancel");
                                ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:17: cannot find symbol
    symbol  : class JPanel
    location: class TestSimpleForm
         JPanel panel = new TestSimpleForm();
         ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:22: cannot find symbol
    symbol  : class JFrame
    location: class TestSimpleForm
         JFrame f = new JFrame();
         ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:22: cannot find symbol
    symbol  : class JFrame
    location: class TestSimpleForm
         JFrame f = new JFrame();
                        ^
    /media/disk/projects/numbered/all/TestSimpleForm.java:24: cannot find symbol
    symbol  : variable JFrame
    location: class TestSimpleForm
         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                                    ^
    13 errors
    Exited: 256

  • Having lost my password, et al., I obtained a new one successfully, but now when I tried to make a purchase, I was asked for my Security Code. How do I obtain a new one since I have lost all my iPad documentation?

    Having lost my password, et al., I obtained a new one successfully, but now when I tried to make a purchase, I was asked for my Security Code.  How do I obtain a new Security Code since I have lost all my iPad documentation?   Thank you,    Dzurek123

    That refers to the 3 digit security code on the back of your credt card, not a security code for the iPad.

  • HT5622 I tried to make a purchase with a credit card to I have been using with I Tunes for 2 years.  Now it's saying my security code is wrong??????

    Tried to make a purchase thru Itunes with a credit card I have been using for years.  Now it wants my security code which I entered three times and it said it was wrong (I know the correct) number.  Then I changed to another credit card, and it is still denying by purchase.  I was prompted to go to this website so here I am.  Can you please help me out
    Thank yyou

    whenever you attempt to put a card on itunes it puts a temporary $1 authorization hold for 24 hours - 48 hours depending on your bank - since you attempted so many times that is why that $1 is showing up so often - are you using a debit card? because if you are then if even the authorization hold doesn't go through like it should it will show a "ghost" charge that will drop off soon - it isn't fraud though - make sure your billing address is correct - if that doesn't work contact itunes store at getsupport.apple.com - click itunes - itunes store and follow the prompts and you can chat or email them.

  • Code does not make any effect:need help

    hello friends,
    now i am going to describe the problem i am phasing
    actually i have embedded japplets in a jsp page(appletjsp) and want to communicate japplets indeed jsp to a servlet in the diffrent derectory but in same context root.
    moreover, i have written code at applet and servlet side both. actually there is a next button in one of japplets(embedded in appletjsp) and i have written the code(for servlet communication) inside button's mouse clicked event. and at servlet side, as usual i have got an inputstream from request and want to forward this request(after getting request dispatcher) to another jsp page(proposing to display this jsp page after clicking next button inside appletjsp ).
    now the problem that made me a bit confused is that when i click next button after running jsp page(containing japplets) then neither there is any error/exception at server/IE's sun java console nor any effect of code at servlet side.
    actually i am not sure that the servlet side code does not make any effect rather it is ony my assumption.
    although i am very new in java and as what i know, to send back response to client side, servlet class needs to be run at server side and probabbly for that there must be a sepreat request from client's applet to server(please dont flame me if i am wrong).
    so please tell  me how can i get running another jsp page running(to which i trying to get request dispatcher inside servlet) after clicking next button?
    applet code
            try{      
            String[] data    ={"santosh","kumar","tripathi"};        
            String strwp ="/UASProject/RegistrationData";              
            URL jspURL = new URL(getCodeBase(),strwp);             
            System.out.println(jspURL);
            URLConnection jspCon = jspURL.openConnection();               
            jspCon.setUseCaches(false);
            jspCon.setDoOutput(true);
            jspCon.setDoInput(false); 
            jspCon.setDefaultUseCaches(false);   
            jspCon.setRequestProperty("Content-Type", "application/x-java-serialized-object");      
           BufferedOutputStream bos=new BufferedOutputStream( jspCon.getOutputStream());
            ObjectOutputStream oboutStream = new ObjectOutputStream(bos);             
            oboutStream.writeObject(data);         
            oboutStream.flush();        
            bos.close();
            oboutStream.close();        
         //  getAppletContext().showDocument(new URL(getCodeBase().getProtocol(),getCodeBase().getHost(),getCodeBase().getPort(),"/UASProject/faces/Editpage.jsp"),"_self");        
         }catch(Exception e) 
           {System.out.println(e);}servlet code
             try { 
                    //    response.setContentType("application/x-java-serialized-object");
                         BufferedInputStream bis=new BufferedInputStream( request.getInputStream());
                        ObjectInputStream inputFromjsp = new ObjectInputStream(bis);                                      
                        reg_data = (String[])inputFromjsp.readObject();                             
                        out.println(reg_data[1]);
                        bis.close();
                        inputFromjsp.close();    
                       HttpSession session =request.getSession(true);
                      session.setAttribute("first_name",reg_data[0]);
                        getServletContext().getRequestDispatcher("http://localhost:8084//UASProject/faces/Editpage.jsp").forward(request,response);
                   } catch (Exception e) {e.printStackTrace();}    although this topic has been made too long, even then please fix my problem.
    thanks

    When you formatted the system you erased everything on the harddrive, obviously, and so its just a matter of putting back the Apps and data that you want from your Backup that you made, BEFORE reformatting the harddrive.  You did make a backup, didn't you??   Your Time machine or other external harddrive backup can be used with Migration Assistant to return the iLife Apps to the iMac.  If he indeed purchased the iLife Apps from the App Store, then you would need to use His Apple ID account to redownload them; not yours.
    Oh, and to answer your other question, no, iLife is not a part of any version of OSX itself.
    Hope this helps
    Message was edited by: Radiation Mac

Maybe you are looking for

  • ORA-02070: While inserting data through a DB link

    Hi, I am trying to insert into a table using the DB link. This Db link is created between similar schemas in different Instances. I am getting following error. SQL Error: ORA-02070: database  does not support  in this context Select statement is work

  • I no longer have any contractual obligations, and i have iphone 3GS and iphone 4, I want to change carrier, but my phones are locked. Help

    I no longer have any contractual obligations, and i have iphone 3GS and iphone 4, I want to change carrier, but my phones are locked. Help I live in Lithuania. BR

  • Searching - Help Please!

    Here is my code I wrote to find the amount of letters in the string.but i need to know how to edit this so I can search a paragraph for a string. I have tried many things but no luck. Please Help!! Thanks Michael. import java.io.*; import java.util.*

  • IPhone 5 Unable to be Restored

    Yesterday, my six-month old iPhone 5 randomly stopped responding (black screen). The Home / Power buttons did not trigger any response from the device, even when attempting a reset. I tried plugging the device into my PC, to no avail. I then plugged

  • Podcast Download to iPhone 3gs

    I do not seem to be able to download podcasts over WiFi to my iPhone. If I look into iTunes, the podcast is there when I go via my iMac. When I look at iTunes on the iPhone, the new podcast is not there. Consequently I can only get podcasts when conn