Spry Slide Show-how to use one size photo for large photo and thumbnail?

Hi all,
I'm am using Adobe's Spry Slide Show. I can only use one size photo 640x480px for both the large photo and the thumbnail.
I changed the size of the small thumnail on the html:
                 <li><a href="Photos/TestPhoto640x480.jpg" width="490" height="367"><img src="Photos/TestPhoto640x480.jpg" width="63" height="47" alt="photos-1.jpg" /></a></li>
The thumbnail looks fine until you hit Live View or Preview in Browser then photo comes in full size and you can only see the upper left hand corner.
I assume that the java is doing this. But I have no training in Java.
How can I change the Java Code so the thumbnail comes in at 63x47px?
Many thanks.

Wish I could use scaled down versions of the thumbnails-but I can't.
Why not?
    img.src = info.src;
    img.style.width =  "490px";<!--Large Photo size on internet-changed from info.width + "px"; to "490px";  *********-->
    img.style.height =  "368px";<!--Large Photo size on internet-changed from info.height + "px"; to "368px";  *******-->
You're shooting yourself in the foot with this.  It's overriding your HTML and CSS  values.
As an FYI, Adobe Abandoned the Spry framework late last year.
http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l
You might want to cut your losses right now and switch to something better suited to modern web devices & browsers.
jQuery Fancybox
http://fancybox.net/
20 of the best jQuery Slideshows
http://vandelaydesign.com/blog/web-development/jquery-slideshow/
Nancy O.

Similar Messages

  • How to use one Apple ID for mac book and iPhone

    I am to buy a mac book pro and also I already have a iPhone 5. Can I use one Apple ID for both them?

    Thank you

  • How to use one email adress for multiple recipients

    Hello,
    I'd like to know how to use one email adress for multiple recipients. 
    this would be very useful or projects. for example;
    if i send one mail to [email protected], all people in this project get an email.
    I will add the people in this project myself. 
    I know it is possible, but I don't know how to do it ;-)
    please help me! 

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • How to use multiple VCI strings for lap 1300 and 1200 (option 60) in one pool?

    Hi All,
    Hope to you a very happy new year,
    I have two differnt LAP 1300 and 1200 in my network and I need to add theme to the WLC,
    I successed to add one of theme by the option 60 in the DHCP pool at the Core SW,
    So my quetion is below:
    How to use multiple VCI strings for lap 1300 and 1200 (option 60) in one pool?
    Thanks in Advanced,
    Ahmed,

    To add to Scott's post.  Option 60 would be useful if you needed to put certain types of AP on specific controllers.  Otherwise, no real need to use it for the most part.
    Though, I do recall an issue a few years ago that some windows machines had issues getting DHCP if option 43 is being returned.
    Now, on an IOS switch, you can only configure one option 60 per DHCP scope
    HTH,
    Steve
    Please remember to rate useful posts, and mark questions as answered

  • Can I use one itunes account for multiple users and multiple devices

    Can I use one itunes account for multiple users and multiple devices?

    The iTunes EULA, as I understand it (I'm not an attorney )for Apps is basically that one person can use an App multiple devices, or multiple people can use an App one device..so one to many or many to one, but not many to many....

  • How to use a bluetooth cellphone for audio input and output

    Hello, I was wondering how to set-up my Mac Book so that I can use my bluetooth cellphone for audio in and audio out. Ideally, I would like to use my handset for talking on iChat and Skype. Has anyone had any luck doing this? When I bond my cellphone these optiosn do not appear. I know that this is easy to do on a Windows machine but I am not sure about how to do it on my Mac Book.
    Thanks!

    Yes it should do what you want.
    Go to "Audio Midi Setup", and go to the Audio menu and click "Open Aggregate Device Editor". The interface is pretty simple but if you do get stuck, just use the help function in Audio Midi Setup, as it has a step by step guide.
    Then when you return to logic, go to the Preferences>Audio>Drivers section and select Aggregate Device as the new driver rather than either the built in sound or the tascam. Then the inputs and outputs will apply to BOTH devices.

  • How to use Source Code Control for Large Application?

    Hi, All!
    I would like to collect knowledge about "best practice" examples for using Source Code Control and project organization for relative large application (let's say approx 1000 SubVIs).
    Tools used:
    LabVIEW 8.0
    CVS Server
    PushOK CVS Proxy Client
    WinCVS
    With LabVIEW 8 we can organize large project pretty well. This described in article Managing Large Applications with the LabVIEW Project.
    I have read this article too: Using Source Control Software with LabVIEW In this Article Source Safe used, but with PushOK all looks nearby the same and works (some tricks for compare function are required).
    Example. Two developers working together on same project. Internally project is modular, so one developer will work with module "Analysis", and another one with "Configuration" without interferences. These modules placed into Subfolders as shown in example above.
    Scenario 1:
    Developer A started with modification of module "Analysis". Some files checked out. He would like to add some SubVIs here. So, he must also perform check out for the project file (*.lvproj), otherwise he cannot add anything into project structure.
    Developer B at the same time would like to add some new functions into module "Configuration". He also needed to check out project file, but this file already checked out by Developer A (and locked). So, he must wait until lvproj file will be checked in. Another way is mark *.lvproj files as text files in PushOK, but then one of developers will get conflict message by checking in and then merging will be necessary. This situation will coming very often, because in most cases *.lvproj file will be checked out all the time.
    Question: Which practice is better for such situation? Is Libraries better than folder for large project?
    Scenario 2:
    Developer C joined to the team. First, he must get complete project code for starting (or may be at least code of one Library, which assigned to him).
    Question: How it can be done within LabVIEW IDE? Or WinCVS (or other SCC UI) should be used for initial checkout?
    Scenario 3:
    Developer D is responcible for Build. Developers A,B,C have added lot of files into modules "Analysis", Configuration" and "FileIO". For building he need to get complete code. If our project splitted into folders, he should get latest *.lvproj first, then newly added SubVIs will appear in Project Explorer, then he should expand tree, select all SubVIs and get latest versions for all. If Project organized in Libraries, he must do the same for each library, isn't?.
    Question: Is this "normal way", or WinCVS should be used for this way? In WinCVS its possible with two mouseclicks, but I prefer to get all code from CVS within LabVIEW IDE recursively...
    That was a long post... So, if you already working with LabVIEW 8 with SCC used for large project, please post your knowledge here about project structure (Folders or Libraries) and best practices, its may be helpful and useful for all of us. Any examples/use cases/links etc are appreciated.
    Thank you,
    Andrey

    Regarding your scenarios:
    1. Using your example, let's say both developers checked out version 3
    of the project file. Assuming that there are only files under the
    directories in the example project, when Developer A checks in his
    version of the project, there will be new files in one section of the
    project separate from where Developer B is working. Developer B,
    notices that there is now a version 4 of the project. He needs to
    resolve the changes so will need to merge his changes to the latest
    version of project file. Since the project file is a text file, that is
    easy to do. Where an issue arrises is that after Developer B checks in
    his merged changes, there is a revision 5. When Developer A and B go to
    make another change, they get the latest version which will have the
    merged changes to the project file but not the referenced files from
    both Developer A and B. So when A opens version 5, he sees that he is
    missing the files that B checked in and visa versa. Here is where the
    developers will needs to manually use the source control client and,
    external to LabVIEW, get those new files.
    Where libraries help with the above scenario is that the library is a
    separate file from the project so changes made to it outside of the
    project do not require the project to be modified. So this time, the
    developers are using a single project again which time time references
    two libraries. The developers check out the libraries, make changes to
    the libraries, and then check those changes in. So when each developer
    opens the project file, since it references the project file, the
    changes to the library will be reflected. There is still the issue of
    the new files not automatically coming down when the latest version of
    the library is obtained. Again, the developers will needs to manually
    use the source control client and, external to LabVIEW, get those new
    files. In general, you should take advantage of the the modularity that
    libraries provide.
    2. As noted in the above scenario, there is no intrinsic mechanism to
    get all files referenced by a LabVIEW project. Files that are missing
    will be noted. The developer will then have to use the source control
    provider's IDE to get the initial contents of the project  (or library).
    3. See above scenarios.
    George M
    National Instruments

  • How to use the (gigabit) ethernet for data exchange and WLAN for Internet?

    I have following setup:
    - MB Pro SL 10.6
    - Desktop PC Windows 7
    - Wireless Printer
    - Netgear WLAN Router
    At the moment all my data and internet communication is done via the WLAN router on 192.168.1.x That works fine and I can exchange data, print and surf the internet. My problem is that big data exchanges > 10GB take ages via my 54Mbit WLAN Connection. Furthermore the WLAN router is far away from the PC so that it is not possible to plug in the Ethernet Cable of the PC and the MB to the router.
    Now I've thought that there must be a possibility to use a 1 gigabit (cross) cable (like in the 90s ;)) to connect the MB and the PC directly. I know that I will need different IP ranges and so on, but I have no clue how to do that.
    The final solution should be that the setup stays as it is (data exchange, print, internet via WLAN) and that additional it is possible to connect PC and MAC some times for big transfers via a Gigabit ethernet cable. because I only want to connect those two machines I don't think that a switch makes any sense, or?
    Does someone know how to do that?
    Thanks a lot in advance!
    Message was edited by: whitepowder

    Well if it were 2 Macs, I would configure each Mac with a fixed IP address (same subnet as my router, but outside of the routers DHCP assignment range).
    I would give the same fixed IP address to both my Airport AND my ethernet interfaces. I would do the same to the other Mac using another fixed IP address.
    My network service order would have the ethernet higher than the Airport on both systems.
    Normally I would use WiFi, so ethernet would be idle and out of the loop.
    When I wanted faster transfers, I would connect each Mac to the router via their own ethernet cables, and the Mac would automatically detect that the ethernet became available, and would switch to use the faster ethernet. Since Airport and ethernet have the same fixed IP address, I could even do this in the middle of a file transfer and no one would notice as packets were always going to/from the same IP addresses, just using a different route, which doesn't matter.
    NOTE: I've been doing this on Macs since Mac OS X 10.3 days (or was it 10.2; to long ago to remember).
    However, you have thrown a Windows system into the mix, and since I do not use Windows, I do not have a clue about what can be done on Windows. However, maybe this will give you some ideas, and asking the right questions in a Windows oriented forum may provide the Windows side of this setup.
    Sorry, that is the best I can do. Maybe my reply will encourage someone else to offer their approach.

  • Should I combine two 1Tb drives into one logical 2Tb drive or use one 1Tb drive for system/apps and move /users to the other 1Tb drive?  (I'd like ease of b/u too.)

    Hello,
    I have two 1Tb drives in my Mini, the first is full and the second one empty.  (I've been using the 2nd for Time Machine but the full source from dirve 1 soon has Time Machine complaining.)  I am contemplating whether to form one 2Tb logical drive from the two 1Tb drives or segregate their use, i.e. use the first 1Tb drive to hold the system and applications while moving the /users directory tree to the second 1Tb drive?
    I'm assuming both are straight forward to do accomplish but have nagging doubts about segregating drive usage, will moving the /users directory tree to the second 1Tb drive:
    impact apps which might otherwise expect to see particulat fies and directories in specific user related locations on the system drive;
    hinder backing up (by having to setup two separate Time Machine activities)?
    Finally, is there a better 3rt option?
    Thanks,

    Thanks and sorry Allan,
    The supplementary questions would arise should I NOT chose to combine the separate drives into a larger logical one but to keep one of the two drives for system/apps and the other for users data...  I assumed that segregating drive usagel like this might reult in issues with apps which might expect to see some user directories/files on the same drive as the system/apps.  similarly, with two physical drives, I'd be looking to managing separate Time Mchines.  (I have a few 2Tb pocket drives for backups.)
    Final question - if I do combine into a single logical drive (for system, apps, /users ... the whole lot), would I have any problem getting this logical one working from a Time Machine backup?  I ask that this backup was taken from the 1Tb physical drive and now I'd be looking to put it back onto a 2Tb logicl drive.
    Thanks,

  • Switched to MAC and can't figure out how to use PSE 4.0 for MAC photo bin

    I have been using PSE 3.0 and PSE 5.0 but switched to a mac and now am using PSE 4.0. I can't seem to get the photo bin to work/behave as it does in 3.0/5.0. I use PSE for digital scrapping and used the photo bin to drag images to/for and to store layouts I selected for use in my pages. On the MAC I can't seem to drag anything to the photo bin. Sorry this is a basic question I'm sure...I am not so savvy w/ the MAC environment yet. Please help. Thanks in advance.

    duplicate post:
    http://www.adobeforums.com/cgi-bin/webx/.3bc35718/0

  • How to use one af:query for multiple VOs

    Hi all,
    How can we use an af:query component to query on multiple VOs?
    Think of a page with search area and a tabbed pannel with two tables based on different view objects.
    Any ideas?
    Thanks
    Version
    ADF Business Components 11.1.1.56.60
    Java(TM) Platform 1.6.0_18
    Oracle IDE 11.1.1.3.37.56.60
    Edited by: Barbara Gelabert on 28-dic-2010 6:55

    Hi Santosh,
    Not yet implemented, but I was thinking on overriding the query listener and creating a view critera on the second view object as a copy of the first one. That involves capturing operands, operators and values set and then applying the criteria and executing the query.
    Anyway, in case you don't need complex operators in the search area but can add them as where clauses to the query statement, you can use search forms instead of query components as Shay Shmeltzer suggests in [url http://blogs.oracle.com/shay/2010/12/combining_multiple_queries_and.html?goback=.gde_1002457_news_308820955]his post.
    Regards,
    Barbara

  • How to use one Bex Variable for two purposes in one query?

    Hi,
    I want to prompt for a UOM in a query. Then I want to use that one UOM variable to do 2 tasks in the query:
    1. Perform a UOM conversion on one restricted key figure (no filtering)
    2. Filter in a second restricted key figure (no conversion)
    How would I use a variable (or two?) to do this? I do not want to have 2 UOM prompts.
    Thanks!
    Gregg

    Oh, it all seems so easy now!  Hindsight 20-20...
    Solution was to create a new input ready variable for Unit.
    1. Restrict the key figures which need restricting using new variable
    2. For conversions, in BI backend us T-code RSUOM and create new conversion type associated with new variable. Then for each key figure needing conversion, set the conversion parameter to use the new conversion type.
    Between both 1 & 2 above, the same variable is used & thus prompted only once.
    Solution works perfectly.... as it should. Hope this helps someone else!

  • How to use one Account dimension for multiple account structures

    We are implementing a HFM application to replace two general ledger applications, one being Corporate and the other a new subsidiary. We need to maintain both of the chart of accounts and their unique rollup structures. We are facing the difficulty in attempting to combine the two chart of accounts into one HFM Account Dimension because a few of the subsidiary accounts have the same account numbers but they are meant different things. 
    Question:
    How can we set up two distinct account structures in HFM and also have the subsidiary accounts rolled into the Corporate accounts for consolidation reporting? 
    Appreciate your help.

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • How to use one WAD template for all the available queries

    Hi,
    I have created a WAD template... Now we have close to 25 queries which will use that template for displaying their output at Portal...
    Is there any way that i don`t have to create multiple copies of my WAD template...
    I.e. all queries would call that same template through portal...

    Hi,
    The Bex report uses the Standard Template 0ANALYSIS_PATTERN while it is executed.
    So if your sure that the look and feel of all the Reports is going to remain same, you don't need to even attach all these Queries to Templates in WAD.
    When you execute the BEx query, it would pick up the standard template and run it in portal.
    But if you want to customize the Report Template:
    1) You can change this standard template 0ANALYSIS_PATTERN  and customize it according to ur requrement in WAD.
    2) Or you can create a copy of this standard template and change it as required. Then change the template in spro (transaction RSCUSTV27) to point to this Z template.
    Let me know if you need more details.
    Regards,
    Forum

  • HT5622 can I use one apple ID for both iPhone and iPad?

    hello, i just bought a new ipad and want to use the same apple ID that i used in my iphone. is it possible?
    thank you for helping me

    Philly_Phan is absolutely right if you intend to be the primary user of both devices. Is that the case or will one of the devices be used by someone else with whom you want to communicate over Facetime and iMessage?

Maybe you are looking for

  • Adobe Premiere Pro CC / Media Encoder CC Crashing On Export

    Hi, I have a 1 hour project consisting of - iPhone 5 Video clips recorded at 1080p/30fps using app FilmicPro - Various Image files, imported as PSD's - WAV Sound files My Sequence Settings are: Export Settings are: As you can tell by the file name, i

  • Bootcamp not showing up in boot loader

    Today I needed to resize my Windows Vista Ultimate partition for work, so I used Disk Utility to crate an image from the partition. After that I used Boot Camp Assistant to remove the partition, and then create a larger partition. After this was done

  • Problem in Passing parameter

    I'm calling oracle9i package from VB.net using prmArgs(intParam) = New OracleParameter("ONO", OracleDbType.Varchar2, 12) prmArgs(intParam).Direction = ParameterDirection.Input prmArgs(intParam).Value = " " oraCmd.Parameters.Add(prmArgs(intParam)) but

  • Can I find files in "Originals" folder which aren't showing in iPhoto

    I have found some corrupted photos in some events in my "Originals" folder. I think they came from when I tried to import some files from a corrupted CD, and I have since reimported them from a good copy of the CD. They are corrupted in that they are

  • Oracle 10g FRM-41051 on a non-database text item with a LOV

    Hi all, I'm struggling with a problem I'm convinced must have a really simple solution, but for the life of me I can't figure it out! I have a data block called query. It is a non-DB block with a number of items, with either LOVs or drop down lists.