Need help getting scrollbar from design to code

First off id like to say I'm VERY NEW to coding I know the basics of CSS and I even less of flash. But im willing to learn anything iv only been doing this for 3 months.
i have CS5 master colection
ok Here is my design for the cliant's site
the part im having trouble with is the gallery on the left.
i sent the the scrollbar to flash Catalyst CS5. but then i could not find out how to make my custom scrollbar work in dreamweaver so i sent the whole gallery. then i ran in to the problem of
how do i make the gallery control which embedded youtube video is going to play.
i would like to just do it with out making the whole gallery a swf file.
so in the most simplest terms i would like a custom designed scrollbar on the left side of my gallery div
here is what i have uploaded to my test file on the back end of the quick version of his site http://http://resettheus.com/Test/Big_Gov.html
plz help even if you could just point me to a tutorial that would be great.
thank you

thank you for the help JTANNA let me try to be a little more clear (this is y i never post on these things i never say the right thing)
this is what i would like the site gallery to look like
the scrollbar (B) is one of those black papper clips and the gallery (A)is just going to be thumbnails linked to a iframe that will be youtube videos
so i re worked the CSS code from what i posted earlier to somthing like this (im not on my work comp with the sntax at hand)
<div class=player_gallery>
     <div class=gallery_header>Video Galler</div>
     <div style="width:24px; height:415px;">   was hoping to put the scrollbar (B) here    </div>
     <div style="width:226px: height:auto;">
               <a href="http://www.youtube.com/embed/o5gEceNyp0M" target="player">
               <img src="Images/Markets-Exploitation-or-Empowerment.jpg" width="82px" height="50px"/>
               <p>Markets Exploitation or Empowerment</p></a>
                    </div>
something like that. i know that i have things wrong in there but i hope from this post and my last post i can get the answer im looking for
thanks again

Similar Messages

  • Need help getting contacts from outlook 2010

    I need help getting my contacts from outlook 2010 to icloud and/or my iphone. I have icloud up and logged in on pc. when I go to a contact to import it says there was a problem reading the vcard. any help is welcomed.

    I do have the latest version of DTM and working with OUTLOOK 2000.  I know it is old, but it still does what I need it to. I did try to uninstalland reinstall.  No luck.  The only options listed to sync are yahoo, outlook express, and ASCII inport/export.  Obviously it is not syncing my other data either, but it is my contacts that I am most concerned with at this point.  The calader would be nice too!  Any other suggestions, or is my outlook too old to sync?   

  • NEED HELP GETTING FILES FROM ITUNES ON ONE COMPUTER TO THE OTHER.

    So I was using a PC to backup my iphone 5 to itunes; however, i just bought a macbook pro and it wont let me transfer the files from one computer to the other and i need help!

    Click here and pick the option which best fits your situation.
    (93771)

  • Need help getting songs from itunes to ipod shuffle/ help

    i seem to having problems getting songs from itunes to ipod?
    any one want to hwlp me with this?
    m

    Perhaps if you posted what the problem os we can try to help. And also what steps you have taken to try and fix this mystery problem.
    Patrick

  • Need help getting pics from Adobe Starter Edition to Photoshop Elements 10!!!

    I had Adobe Photoshop Starter Edition already installed on my computer when I bought it.  I hadn't used it in quite a while because my camera was broken.  I recently got a new camera.  I tried to export my pics to my computer and as soon as it came up my pics immediately went to Adobe Photoshop Starter Edition.  It wants me to put in a registration code which I don't have because it is no longer a working product.  I talked to someone in chat and they said to install Photoshop Elements and I should be able to get them into the new program.  I've installed that and I still can't figure out how to do it when the starter edition won't let me do anything without a registration key!!!!!!!!!!!  I want my pics back!!!  These pics are precious to me.....the sad part is I clicked on the box to NOT erase them from my camera....and it erased them anyways.  Can someone please help???
    Thanks,
    Lisa

    Your pictures are not really in the starter edition program.
    From an adobe employee Mark Dahm:
    "It is a common misconception that Starter Edition 'stores', or copies, your files into it. But the program does not move or copy files at all, rather it scans your system's My Pictures directory, and generates miniature versions of your pictures (called thumbnails) so that you can browse a 'flat' list of thumbnails of your photos, overcoming the inconvenience of having to go into separate folders in Windows Explorer to have to find files.The thumbnails, as well as any tags, and Albums that you create in Starter Edition are all stored in the Photoshop Album catalog file, separate from your pictures, and your pictures remain where you originally copied them to your computer.
    If you use Photoshop Album to subsequently download files from a digital camera or scanner, the default location where the program will create those files would be in the My Pictures>Digital Camera Photos folder. But if you do NOT use Photoshop Album Starter edition to download files from your camera, then you will find that folder empty.
    The thumbnails in the Starter Edition catalog will exist, even if you decide to move or delete the original photos that were added to the program. This will cause files in the Photoshop Album catalog to become 'disconnected' from the original photos. To reconnect the files, you can use the File>Reconnect Missing files command to see if the program can locate the original files in a new location, and once again re-link the catalog thumbnails to the files they once referenced.
    Since Photoshop Album has been discontinued, I recommend that folks find an alternative solution. One alternative that will preserve most of what you've created in Starter Edition is the Photoshop Elements 8 trial. Install that, and it will automatically convert the Photoshop Album catalog to a current format, and the program will not time out, as Starter Edition did. If you want to purchase more Editing power, you can also choose to purchase the full program, but it's not required.
    If you are like many who have come to this forum wondering how you can get to your photos, now that the program has become locked or expired, don't worry; your photos have never been moved by Photoshop Album; they remain wherever you intially put them, on your hard drive. To get to them, you can navigate your file system using Windows Explorer. They are typically in your My Documents>My Pictures folder. Here is a handy How-To that you could refer to to find photos on your system, as well as some other tips for how you can use folders to keep your photos organized: http://www.microsoft.com/windowsxp/using/setup/maintain/filemgmt.mspx
    Hope those tips help!
    -Mark"

  • Need help getting icons from jar

    I switched to the latest java plugin, 1.4.2 and now I can't get the applet to retrieve the GIF image within its jarfile. The class files and imagery are all located in the same jarfile. If I use the following code:
    ivjJToggleButton20.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/MoveVertex2.gif")));
    The jarfile is downloaded again and the image is retrieved from the downloaded jarfile instead of the jar currently displayed in the browser.
    any help or ideas are greatly appreciated!

    I usually do something like this to load an icon from a JAR:
    java.net.URL iconURL = getClass().getResource("/yourImageFile.gif");
    if (iconURL != null) icon = new javax.swing.ImageIcon(iconURL);
    JButton.setIcon(icon);
    This should work.

  • Need help getting servername from afp volume mount

    Hello I am trying to write a script to take the path of a selected file or folder, put it on the clipboard, and make it a PC friendly link/path to email to pc users in my company. We are sharing files off of 3 servers.
    My problem is not with the scripting, but with the fact that all mounted volumes from these servers show up only from their mountpoint in the Volumes folder, i.e. /Volumes/DeptShare/Inbox/ and the like. In the "Get Info" Window I can see the servername (Server: afp://servername/pathtofile/etc) but I cannot find any clean way to call that from a script, to tie a mountpoint (Volumes/DeptShare) to the server it's on, if the user has volumes from more than one server mounted...
    So my script can't replace "Volumes" with the proper servername.
    Hope Im being clear, happy to elaborate, much obliged for any help.

    Hi Bob, thank you so much for the quick response.
    Unfortunately system_profiler SPNetworkVolumeDataType isn't revealing a server name for me. I think part of the problem is that it is afp; smb does reveal the server name there. Similarly, when I type "mount" in terminal, the afp server/login for the volume is just listed as a long character string starting with afp_ instead of a username@servername like with smb. With the SPNetworkVolumeDataType all I'm seeing re: server info is this: (I think the first part is just bonjour looking at our domain, I actually can't browse any servers through that. But I included it anyways in case)
    Servers:
    Type: autofs
    Mount Point: /Network/Servers
    Mounted From: map -fstab
    Automounted: Yes
    MyShareName:
    Type: afpfs
    Mount Point: /Volumes/MyShareName
    Automounted: No
    Another way I was trying to do this was to try and somehow "ping" a path to filename on each server, to see if the file/path could be checked or return an error and the script could know which server it was on. But I can't figure out the right language to do that either. I can do it like this in terminal:
    \[-a /Volumes/path/file\]
    but not like this:
    \[-a /servername/path/file\]
    or this:
    \[-a afp://servername/path/file\]
    so I still don't have the server name tied to the path.
    The only other thing I can think of is having the script check the mountpoint name against a list of share names on each server, but that's a little heavier than I was hoping this would be. Plus it drives me nuts that the "Get Info" window can see the servername I can't call it easily somewhere!!
    Message was edited by: Mr hotdogz

  • I need help getting information from my jsp into my servlet

    i have a list box in my jsp and it is being populated with some beans that were processed in a servlet. here is the code for the list box in my jsp.
    <SELECT size="5" name="lstAccounts">
    <OPTION value="1" selected><%= AccountNum1 %></OPTION>
    <OPTION value="2"><%= AccountNum2 %></OPTION>
    </SELECT>
    AccountNum1 and AccountNum2 are the name of the beans populating the list box.
    on this current jsp, when i click on a submit button i need to send some info, including which option in the list box is selected to a servlet. here is the code i have in my servlet in the doPost() method. what i'm trying to do is pass the choice that was selected from the list box to servlet below.
    String strAccountNumber;
    strAccountNumber = req.getParameter("lstAccounts");
    req.setAttribute("AccountNumber", strAccountNumber);
    //then forward it to another jsp
    when i load the jsp it shows the correct choice from the lstAccounts list box, but it shows its corresponding value instead of the choice itself. Instead of showing whats actually in the bean AccountNum1 or AccountNum2, it shows either 1 or 2 (the value from the html in my jsp). is there anyway i can put a method on the lstAccounts string in my getParameter() method. something like...
    strAccountNumber = req.getParameter("lstAccounts.getSelectedItem()");
    i hope this made sense. thanks in advance if anyone decides to respond!

    Why not just do this?
    <SELECT size="5" name="lstAccounts">
    <OPTION value=<%=AccountNum1 %> selected><%= AccountNum1 %></OPTION>
    <OPTION value=<%=AccountNum1 %> ><%= AccountNum2 %></OPTION>
    </SELECT>

  • I need help getting assistance from Adobe Technical Support.  Ideas?

    I feel that I am getting the run around by Adobe technical support and wondered if anyone had any recommendations on how to handle this problem.
    Any recommendations or assistance would be greatly appreciated.  This is very important to me.  In previous upgrades this has been fixed with the update, but Adobe has not added an update to RoboHelp 8.0 yet.  Does anyone know of an update in the works?
    I have repetedly contacted Adobe Technical support with a bug that I have found and also reported a bug on the website where you report bugs. 
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    I continually am told that it is worked on by the "highest level" but each time they try the bug out as if it is not being worked on.  Does anyone have a recommendation about how to get my bug worked on.  I have confirmed that it is in fact a bug and can be replicated on other computers.  Sometimes they say they will help and then put in a ticket that it is my turn to submit information.  Most of the time I just am told I will get a call and do not
    I have posted my problems on an earlier posts and have gotten some work around recommendations but they do not solve my problem.  This is a very used feature that does not work and it is a really cool feature in my online help system.
    http://forums.adobe.com/thread/522651 and http://forums.adobe.com/thread/92958?tstart=0

    LOL, your last reply? Or the last line of your reply? Which says: Please contact me via my site.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Need help getting artwork from iTunes

    New iPod / iTunes user here. After importing my CDs directly into iTunes, I am encountering artwork problems with two CDs that are available in iTunes, yet for some reason I can't use for my imported music.
    I researched enough to figure out that the album tags seem to be the culprit in this situation, and was successful in fixing a few other albums, but the following two I cannot figure out what's wrong:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=41228583&s=143441
    Henryk Gorecki: Symphony #3 by Zinman, Upshaw, and London Sinfonietta
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=27287148&s=143441
    Oliver Messiaen: Eclairs sur l'au-dela by Simon Rattle and Berlin Philharmonica
    With both, I've edited the tags to match exactly (as far as I can tell) with the versions in iTunes, including spelling, diacritic marks, and punctuation, yet I still get the "artwork not found" message.
    I've even tried adding random spacing at the end of the tags, but still nothing. Can anyone help me with this? I was hoping maybe someone who bought these albums off iTunes or got the tags right would be able to let me know if there's some sort of hidden spacing that I'm not catching.
    Thanks for any help!

    well if you're trying to just get the artwork it's easy enough to do by yourself...
    just look up an image in (for example) google search and when you find the one you want as your album artwork just right click and save to a picture file on your comp that you can easily find...
    then go to a song in that album in the "music" tab in itunes and right-click. select "get info" and then go to the last tab called "artwork" and select the "add" box. pick the picture and select "ok"
    then that pic should show up as your album artwork...
    hope this helps

  • Need help getting photos from a shared photo stream in iCloud

    I received several invites to several shared photo streams from the same person. Some of them worked fine. Others said "from unknown" and don't show up, even though they are all from the same person. What do I do?

    Welcome to the Apple Community.
    If you delete photos from a shared photo stream they are removed everywhere, however if the other party has already copied the photo to one of their own albums, you can't delete that.

  • Need help getting songs from iTunes to iCloud and to ios devices.

    I just added some CDs onto my iTunes account on my MacBook and they won't transfer to my iPhone or iPad.  The titles of the songs show up on my IOS devices within the Music app but they are grayed out and won't play. I'm using iCloud and Music Match. Hopefully something simple.  Thanks in advance for your help!

    UPDATE - 20 minutes at the Genius Bar and it was resolved.  The tech that helped me out had never seen anything like it before but he and another tech starting looking up stuff on one of the iPads that they have which provides them with solutions to all kinds of problems.  He tried a few things on my Mac and then kept switching pages on his iPad for solutions.  I'm guessing it said "try this and if that doesn't work then go to the next step".  Eventually he got it to work so obviously there is a "fix" out there for issues related to iMatch, iCloud, and the Moutain Lion update. 
    I asked him what all he did to fix it but he said it was too complicated to explain even though it was very simple.  Oh well, rest assured that it can be corrected and hopefully someone will be able to post the fix on here so as to save people trips to an Apple Store.  One last thing, nothing had to be removed or reloaded in my iTunes account.  I hope this helps you out some.

  • Need help getting songs from computer to iPod

    I have an iPod classic and already have songs on it. I bought some new cds and put them in my itunes library and cant get them to tansfer onto my classic. Ive put a checkmark next to the songs and hooked up my ipod. it goes thru the syncing but thats it. songs dont get to the iPod. What am  doing wrong?

    I have an iPod classic and already have songs on it. I bought some new cds and put them in my itunes library and cant get them to tansfer onto my classic. Ive put a checkmark next to the songs and hooked up my ipod. it goes thru the syncing but thats it. songs dont get to the iPod. What am  doing wrong?

  • Need help getting cloud infofrom PC to new phone

    the wifi quit working on my 4s phone so i saved my info to the cloud on my PC. now I need help getting info from PC to new iphone 4s. thanks

    Problem solved. I just unplugged the machine and started over. I'll migrate my files at a later time.

  • Need to Get Data From Siebel On Demand ( I am new to Siebel Please Help)

    Hi All,
    I have a project in which i need to get data from Siebel On Demand and Automate this process.
    I have downloaded the Custom WSDL file and the Schema file from Oracle Siebel On Demand. I am using IDE WSAD and when i import these files into WSAD i am getting an error stating the schema definitions are wrong. Can anyone help me.....
    I need to complete it asap....
    Edited by: user491578 on Nov 11, 2008 6:50 PM

    You should probably ask Advantech. This question really has nothing to do with LabVIEW SE or NI-ELVIS. You could try posting to the LabVIEW board but there have only ever been two posts regarding 'advantech 4716'.

Maybe you are looking for

  • Voicemail access using Plantronics Discovery 925 Bluetooth Headset

    Does anyone know if a future update of iPhone software is likely to fix the problem of not being able to access voicemail with this headset? Does anyone know how to send a suggestion/request to Apple to fix this. The voicemail is accessible with prev

  • Interrupted Setup Assistant

    In the middle of answering the questions on Setup Assistant on my new iMac, the power cord disconnected. The idiot setting up the iMac (me) did not realize that the power cord was not securely in place. When I fixed my mistake and rebooted I was take

  • New feature in Camera Raw 8.4

    I absolutely LOVE the new before/after comparison feature in ACR 8.4! Just why did this take so long?

  • Error in running installer

    A installer is created successfully. After running it in another PC, an error shows "Fatal Error!! Required NIPathsDir property MOZILLADIR is undefined. " Any comments? Thanks,

  • Starting SOAMANAGER from Application server Problem

    Hello,   We can get SOAMANAGER to start when attached to the Database server in our ERP2006 running with Oracle on Solaris, but when we are running on one of the Application servers we can not get SOAMANAGER to start.  Is there some parameter or setu