More clear question  for slideshow help - Kin?

Hi Kin,
You have been very helpful in getting me this far - I know
this last detail would be a very easy thing for you to do.
I tried to get it to work for the dssmTitle by adding another
dssmTitle.addObserver
http://www.tsgraphics.net/slideshow_test/
The mouseover function is fine the way it is. It's how it
behaves during the slideshow that is a little wierd - it just sits
on the first story. It would be great if it switched to each story
like the small nav at the bottom highlights to each corresponding
nav to its story during the slideshow.
I hope this is more clear.
Thanks!
TS

Hi TS,
So it sounds like you want to change the current row of
dschapters and stop the slide show on mouesover, and then re-enable
the slideshow on mouseout right?
Try something like this:
var gTimerID = 0;
var gInterval = 3000;
function StartSlideShow()
StopSlideShow();
gTimerID = setInterval(function(){
dschapters.setCurrentRowNumber((dschapters.getCurrentRowNumber() +
1) % dschapters.getRowCount()); }, gInterval);
function StopSlideShow()
if (gTimerID)
clearInterval(gTimerID);
gTimerID = 0;
dschapters.addObserver(function(nt,n,d)
if (nt == "onPostLoad")
StartSlideShow();
<div id="nav" spry:detailregion="dschapters"
spry:repeatchildren="dschapters" spry:choose="choose">
<div spry:when="{ds_RowID} == {ds_CurrentRowID}"
id="nav2" class="currentChapter" spry:setrow="dschapters"
spry:hover="hoverRow"><img src="{thPhoto}"
onmouseover="StopSlideShow();
dschapters.setCurrentRow('{ds_RowID}');"
onmouseout="StartSlideShow();" /> </div>
<div spry:default="default" id="nav2"
spry:setrow="dschapters" spry:hover="hoverRow"><img
src="{thPhoto}" onmouseover="StopSlideShow();
dschapters.setCurrentRow('{ds_RowID}')"
onmouseout="StartSlideShow();" /></div>
</div>
On a side note, if you are trying to bring your question to
the top of the forum again, post a message in your original thread
... that is don't create a new thread each time ... that way the
context of your questions is preserved for others to read. If you
post new threads each time, folks have to search for your previous
posts/threads to get context.
Thanks,
--== Kin ==--

Similar Messages

  • Asking for Slideshow Help

    I'm having a problem with a slideshow I'm trying to recreate to make some small changes. The original flash video is at the bottom of this page...
    http://www.fsip.biz/About.html
    I don't have the original .fla file, and I did not create it.
    I'm relatively inexperienced with Flash, and I'm at a point where I'm stuck with this. I can do all of the transitions and such, but I'm at a loss for how to do the navigation, i.e. the stops, next/back buttons, and the start slideshow over button.
    Should I be setting this file up as a slideshow presentation? If so, do all of the buttons & stops go on the main presentation slide? Any advice as to what actions I should be using for the navigation?
    Thank you in advance for any help, I'd really appreciate it.

    1.Whats your OLD OS...Version? and the NEW ?
    2. OLD OS is 32bit version or 64 bit version? and for the NEW?
    2. OLD Raid configuration? and for NEW?
    Just three days before we changed a server and the stoHow did you move to the Another server? What method was used to migrate across servers?

  • HT201303 i forgot my security questions for itunes help me

    hi how are you i make my id befor 6 month or 7 i don't remember and i forgot my security questions for itunes and i have the new pass and old and i'm ready for any questions to belive me and my email [email protected] and i have know iphone 5 and ipad 2 and mac air and i change my iphone every month i love apple aloooot please help meeeee

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (99646)

  • Question for apple help

    help me i need a f&*&&*(((ken email or phone number for sume F&()&((&^&(ken help
    with i tunes have asked for help here 3 times get no help
    help me

    If the iPhone has Activation Lock - that is, it's asking for the previous owner's Apple ID and password to activate the device - then you will need that information, or you'll need to get the previous owner to remove the device from his/her iCloud account:
    http://support.apple.com/kb/PH2702
    If you can't reach the previous owner or he/she is unwilling to cooperate, then the device is unusable by you. Return the iPhone for a refund if you can.
    Note also that the Japanese cell carriers will not unlock iPhones for use with carriers in other countries, so you probably cannot use the iPhone in Vietnam even if you can get Activation Lock cleared.
    Please be aware that you are not communicating with Apple when you post in these forums. These are user-to-user support forums, so in almost all cases the only people who will reply to your posts are, like me, your fellow users.
    Regards.

  • This is a question for Schillj HELP!!!!

    Last week you helped me with this code
    unfortunately I am so novice that I cant get it to work anywhere I understand it completely I just dont know where to put it in java code. Unfortutnately the logic is the easy part for me right now. I have researched everything that I dont understand in the code and understand it now. but the code and syntax make very little sense at this point.
    I have a program that allows to input a number and then hit a calculate button that would obviously run the number through this code but how do I implement this or place insert it into a program. HELP!!!!
    final static int MAXVALUES = 7;// 1, 5, 10, 50, 100, 500, 1000// is there a 5000 symbol and beyond?
    final static String[] Symbols ={"I", "V", "X", "L", "C", "D", "M"}; 
    String toRoman(int input) 
      if(input < 0)    
      throw new IllegalArgumentException("Error! value less  than 0");  
    if(input > 3999)     
    throw new IllegalArgumentException("Error! value exceeded 3999");   
    int[] values = new int[MAXVALUES];  
    int scale = 1;  
    int mult = 5;  
    for(int loop = 0; loop < values.length; loop++)  
       values[loop] = ( input % (scale * mult)) / scale;       scale *= mult;    
    mult = (mult == 5 ? 2 : 5);    }  
    // values are now set as per my last post   
    // the fives, fifties, five hundreds values can only be 0 or 1   
    StringBuffer buf = new StringBuffer("");  
    // now evaluate string   
    for(int loop = 0; loop < values.length; loop++)  
       switch(values[loop])    
        case 4:       
      // this can only happen on a 1s, 10s, 100s, etc      
       if(loop != values.length-1)      
    if(values[loop+1] == 1)          
         // special case, this does "IX", "XC", etc                  buf.append(Symbols[loop+2]).append(Symbols[loop]);          
       // now increment loop as we have taken care of the next symbol             
    loop++;          
       else          
    // this does "IV", "XL", etc.           
      buf.append(Symbols[loop+1]).append(Symbols[loop]);          
    break;      
    case 3:
    // this does "III", "XXX", etc        
    buf.append(Symbols[loop]);       
    case 2: // this does "II", "XX", etc        
    buf.append(Symbols[loop]);      
    case 1: // this does "I", "X", etc        
    buf.append(Symbols[loop]);         
    break;       
    case 0:       
      break;      }    }
        return buf.reverse().toString();  }

    I am sorry I am really not trying to scam anyone. here is my code.
    package newroman;
    * Title:        newRoman
    * Description:
    * Copyright:    Copyright (c) 2001
    * Company:
    * @author Matt Wilson
    * @version 1.0
    public class NewRoman {
       private int vNumber;
       public NewRoman()
       public NewRoman ( String roman, int number)
       this.setNumber(number);
       public int getNumber()
          return vNumber;
       public void setNumber ( int number )
          if ( number <= 0 )
          vNumber = number;
       public String getRoman()
          String strNumber = new String( String.valueOf(this.getNumber()));
          String romNum = new String();
          //find blank position in number
          int blankPos = strNumber.indexOf(" ");
          // get the number out of the string
          int stdNum = Integer.parseInt( strNumber.substring(0,blankPos));
          // determine thousands
          if ( stdNum >= 1000)
             romNum = threeDigits (stdNum / 1000);
          // determine hundreds, tens and ones
          romNum = romNum + threeDigits ( stdNum % 1000);
          return romNum;
       private String threeDigits ( int roman )
           String onesVal[] = {"", "I", "II", "III", "IV", "V", "VI", "VII", "VIII",
                              "IX", "X"};
           String tensVal[] = {"", "XX", "XXX", "XL", "L", "LX", "LXX", "LXXX", "XC"};
           String hunVal[] = {"C", "CC", "CCC", "CCCC", "D", "DC", "DCC", "DCCC", "CM"};
           String thouVal[] = {"M", "MM", "MMM", "MMMM"};
           int thouAmount = roman / 1000;
           int rem = roman % 1000;
           String romNum = new String();
           if (thouAmount > 0 )
              romNum = thouVal[thouAmount];
           int hunAmount = roman / 100;
           if (hunAmount > 0);
              romNum = hunVal[hunAmount];
           int tensAmount = rem / 10;
           if ( rem < 20 )
              romNum = romNum + onesVal[tensAmount];
           else
             // int tensAmount = rem / 10;
              int onesAmount = rem % 10;
              romNum = romNum + tensVal[tensAmount] + onesVal[onesAmount];
          return romNum;
    }If anyone can give me any pointers on how to make it better especially with jbuilder. I just want to learn it is my only goal not to scam anyone anywhere.
    thanks!

  • Sign in question for LINKSYS help

    When I type "admin" in the username spot it then asks me for a password. I have NO idea what my password is. How can I still access all that I need to? Is there a way to reset it?
    Thanks!
    Sunshinelover

    Hi,
    We have had the same ADSL Router for a year now and we have not had this problem before. I was on the phone to LINKSYS support for 3 hours last night and they could figure this out.
    PROBLEM: For some reason we can see the airport bars or if we connect via Ethernet we see it as a connection on our laptops but it doesn't allow us to connect to the internet.
    The little green light on the router which sits bellow where it says internet isn't green and flashing anymore -  there is no light.
    I called our ISP and they said that our modem had to be reconfigured by LYKSYS and gave me a really long list of letters and numbers. But LYNSIS didn't know what they meant???
    Does anyone know what I am talking about????? PLEASE!!!  

  • 2 Questions for Layout Help (new to DW)

    Hey All,
    I'm semi- new to dreamweaver, and although I know the basics, I'm having trouble creating the layout I had planned.
    Currently I'm working off a 2 column + header and footer template.
    I'm trying to make it so that the header, footer and sidebar are fixed, snapped to their respective sides of the browser no matter how the browser is resized. I would also like to make the main content offer a scroll bar if it exceeds the room between the header and footer. (so that the "room" look isn't ever changed. ie, the floor and ceiling, and dresser stay visable.)
    It looks pretty good here.
    figure A.)
    Though here when I resize the browser the dresser comes off of the floor, and I don't know why.
    Figure B.)
    So, most important questions are.
    1.) What kind of positioning method should I be using to keep the dresser snapped to the floor which is snapped to the bottom of the browser?
    2.) What should I change in the #mainContent CSS to offer a scroll bar if the content exceeds the room available?
    Bonus Questions if anyone feels extra awesome today.
    1.) I have 3 div boxes in the header, Roof_right, Roof_left are both absolutely positioned. The middle Div box has a background of the logo. If I resize the browser enough, the logo actually gets hidden behind the absolutely positioned pieces, which isn't good. How can I fix this?
    2.) I would like to stick the dresser about 50px down into the footer if possible, instead of sitting directly on top of it. Is this possible?
    Thank you
    B

    It comes down to how you slice your layout.
    http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    I would avoid APdivs if at all possible as they take content out of the normal flow and can trip you up if you're not careful.  I would start with the following basic CSS layout.
    CSS:
    #Container {width: value in pixels; margin:0 auto; /**centers on screen**/; background: url (page-background.jpg) repeat-y;}
    #headerWrapper {width: value in pixels; min-height: value in pixels or ems; background: url (roof.jpg) no-repeat;}
    #header-left {float:left; width: 25%;}
    #header-right {float:right; width: 25%;}
    #mainContent {margin-left: value in pixels; height: value in pixels; overflow: scroll; /**scrolling division**/}
    #SideBar {float:left; width: value in pixels; background: url (middle-dresser.jpg) repeat-y}
    #footer {background: #FFF url {dresser-feet.jpg) top left no-repeat; min-height: value in pixels; text-align:center}
    2-column, fixed width, centered
    http://alt-web.com/TEMPLATES/2-col-fixed-layout.shtml
    Floats & Margins demo - 3-boxes
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • I don't remember my security questions and I tried guessing them and now I can't buy anything for 8 hours please fix this so I can download stuff and I don't remember any of my security questions. Please help me out as soon as possible

    I don't remember my security questions and I tried guessing them and now I can't buy anything for 8 hours please fix this so I can download stuff and I don't remember any of my security questions. Please help me out as soon as possible

    Username188 wrote:
    I don't remember my security questions and I tried guessing them and now I can't buy anything for 8 hours please fix this so I can download stuff and I don't remember any of my security questions. Please help me out as soon as possible
    Go to https://getsupport.apple.com ; click 'See all products and services', then 'More Products and Services, then 'Apple ID', then 'Other Apple ID Topics' then 'Forgotten Apple ID security questions'.

  • Hi, i have edited a clip in hd with final cut, now I need to export it in 2K format . anybody knows how i can do it in FCP?  in internet I found only few info about 2K format: no more than frame size.  nothing about codec or similar. thanks for any help.

    Hi, i have edited a clip in hd with final cut, now I need to export it in 2K format. anybody knows how i can do it in FCP?  in internet I found only few info about 2K format: no more than frame size.  nothing about codec or similar. thanks for any help.

    SoCal thanks for the attention,
    sorry for having wrote the question directly in the subject, but first i wrote it by text edit then copied it, but in the wrong place too.....
    coming to my question, timeline settings are:
    as it is a commercial promo that must be projected in a multiplex cinema, the 2K format is needed.
    I've heard about transcoding services, and they are very expensive. 
    so i'm looking if there is a way to do everything by fcp.
    the project will be delivered as SD DVD for archive pourposes and as a single file for the projection or eventually transconding.
    p.s.: sorry for my english, i'm from italy: had my last english lesson 35 years ago!

  • Help on settings for slideshow export. Please!

    I could really use some help on this one, I’m new at this.
    My imovie project is a slideshow plus audio. There will be still photos, opening titles, transitions, jpegs with text created in PPT and closing credits. The show will be 40+ minutes long. I then need to make a master copy of the finished product and burn it to a DVD for subsequent DVD PAL printing.
    My question is: what export settings would be best to produce this master copy? I have had problems with exports in the past with other smaller slideshows using Expert settings >Movie to Quicktime.
    I feel a bit pressured in this project and want to do a test run before the real deal.
    Thank you,
    Jenifer J.

    Thanks for the response Ian.
    I have had some problems in the past with exporting Expert Settings > Movie to QuickTime Movie that produced a stuttering first title frame and jerky transitions. Have you any experience with the export you suggested using title frames and stills? I am also wondering about the maximum length of the piece using this export. I am thinking my slideshow will be about 40 minutes. Feel free to give me any information or advice that seems obvious to you, but that I may not know!
    thanks for your help,
    Jenifer J.

  • HT5312 Dear Apple Support ,  I can't remember my security question answers , so Please help me to Create new Security Question for my Account .  Best wishes

    Dear Apple Support , I can't remember my security question answers , so Please help me to Create new Security Question for my Account .  Best wishes
    <Email Edited by Host>

    Welcome to the user to User Technical Support Forum provided by Apple.
    Please do not post personal information on a Public Forum.
    I have requested the Hosts remove it for you
    For your issue...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers.

  • HT1222 How do I increase the total amount of space I have on iPhone for things like iTunes n more music n like MusicTube n YouTube. Thank you in advance for any help that can be given.

    I am running out of usage space. How do I increase the total amount of space I have on my iPhone4S: for things like programs &amp; apps such as, iTunes &amp; more music &amp; like MusicTube &amp; YouTube. The only reason I have any space now is because the music that I had downloaded and synced onto my phone from iTunes I had to take it all off. I would really really love to be able to put my music back onto my iPhone. Currently I'm using apps like Spotify, AOLradio, and MusicTube to listen to music. Thank you so very much in advance for any help that may be given!

    Also to add to my original question: is what I'm asking even a possibility??? Meaning is there even a way to get more usage space? Or do I have to just continue to work within the confines that apple has preset on the phone?

  • I am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    i am going to buy unlocked iphone 5.. i will be going to india nxt months and will stay there for a while... so my question is will i get warrenty in india.. and will there be any problem with using indian sims..?? thnx for the help..

    The warranty for the iPhone is not and has never been International.
    Warranty and support are ONLY valid in the country of origin.  The only exception is the EU where the entire EU is treated as one country.
    If the device will be used in India, buy it in India.
    An unlocked iPhone will work on any supported GSM carrier world wide.  The LTE portion of a US purchased, unlocked iPhone is unlikely to work outside North America as it does not support the appropriate bands used in other countries.

  • Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    What about this?
    https://itunes.apple.com/ru/app/best-secret-folder/id488030828?l=en&mt=8

  • I was updating software and suddenly my IPHONE  started asking for I tunes on mobile screen ,  how can  i  get by screen back or How i can restore without loosing data , I m more worried about data , Please help in resolutio

    i was updating software and suddenly my IPHONE  started asking for I tunes on mobile screen ,  how can  i  get by screen back or How i can restore without loosing data , I m more worried about data , Please help in resolutio

    What exactly are you seeing on the phone's screen ? If the iTunes icon and cable then the phone is in recovery mode, in which case it's too late to take a new backup or to copy any content off the phone - you will have to connect the phone to your computer's iTunes and reset it back to factory defaults, after which you can restore to the last backup that you took or just resync your content to it

Maybe you are looking for

  • Newbie Simple app issue most likely related to user coding error

    I'm fairly new to the Cyberflex infrastructure and most likely the issue is with my CODE. Basically, I wrote a simple java cardlet without much error checking to try to retrieve a stored object on the card such as a userId. What I think I'm missing o

  • What happened to my screensavers?

    Mid 2010 17" MacBook Pro, upgraded to 10.7.1.  I was using the Apple Hot News screensaver since day one, but today I noticed it came up as Computer Name.  I went to System Preferences to set it back, and all the screensavers are gone except Computer

  • Hr/hr schema Locked

    Hi, I have problem in log in to HR/HR schema. USERNAME ACCOUNT_STATUS LOCK_DATE SCOTT LOCKED 30-MAR-09 HR LOCKED 30-MAR-09 so I did this: alter user HR account UNLOCK; alter user SCOTT account UNLOCK; then: USERNAME ACCOUNT_STATUS LOCK_DATE SCOTT OPE

  • Problem in doing MERGE

    Hi, I have a problem in using MERGE. Say if my table called "AtmosphericParams". The primary key is AtmosphericParamsId (auto-sequence) and the unique index is TileId. If the existing table contains: 1 | 1 | <some data> If my AtmosphericParamsTemp ta

  • New W8 pc, won't run firefox

    I download firefox and hit run. Get a message asking for the program to make changes and I click yes but nothing happens. No icon or nothing to click.