Is this possible to use in iWeb?

Since my site seems to have a fragmented loading sequence because the size is so large, I was searching to see if there was some sort of plug-in that could be used to transition between pages...
I found this site, but I didn't know if the coding could be used in iWeb?
http://tiny.cc/I08tO
If this can't work, is there anything that is similar to this that does work in iWeb? I would welcome any suggestions.
thanks!

It loads very fast for me. A nicely designed site by the way. If the site is loading slow for you on a Mac it could be your connection. If the problem lies with Internet Explorer on PCs then there is some optimizing you can do to speed it up. See Roddy's post in this thread: http://discussions.apple.com/thread.jspa?threadID=1837981&tstart=0. He has a site, iWebforMusicians.com, which has many good tips dealing with IE.
OT

Similar Messages

  • What should be I have to do , If I want IDM-CC add-on in my firefox 4? Firefox do not support IDM-CC add-on. Is this possible to use idm-cc in firefox 4?

    What should be I have to do , If I want IDM-CC add-on in my firefox 4? Firefox do not support IDM-CC add-on. Is this possible to use idm-cc in firefox 4?

    Hello! I had this problem and fixed it by entering here: http://www.internetdownloadmanager.com/support/firefox_integration.html
    You just need to go down below the page and click on "Install"... Then, firefox gonna install the new IDM CC complement. Restart firefox, and enjoy it :D

  • This possible? ==   use iTunes to sync your contacts to Macbook contacts?

    Hi guys,
    As I am unable to sync my contacts from Mobileme to my contacts in my macbook (my earlier post), a possible solution I was thinking of is if I am able to use iTunes and sync the contacts from my iphone into my contacts on my Macbook.
    Is this possible and if so, can you tell me the steps please.... a million thanks

    No. The iPhone stores no data on a sim card, thus there is no way to do what you want using iTunes.

  • Is this possible to use no default security realm?

    Hi,
    I created new security ReadOnlySQLAuthentication provider in the default realm and it works. Now I have all the users from all applications in one realm. If they use the same enterprise roles, user can log to one application with login and password from another application. To prevent it I created another security realm. I've added ReadOnlySQLAuthentication provider, set in my application new realm name - in jazn-data.xml and web.xml. But it doesn't work. My questions are:
    It is possible to use few realms? So one application will use default realm, another no default realm.
    If so, how to bind an application to no default realm?
    Bart

    Hi,
    A WLS instance only supports a single realm. So the answer unfortunately is no (was different with OC4J)
    Frank

  • Is this possible? Using Illustrator Script to duplicate EPS file 35 times & changing C,M,Y,K value?

    Hi everyone,
    I need HELP I have a bunch of vector clip arts, which are Black (C,M,Y,K100). I need it in 35 different colors Saved as Illustrator 8 EPS and I also need those file in 72 DPI PNG Transparent files.
    Thanks for any help.
    Akkudo.

    Good evening,
    0) In your templates give a specific namme to each path or groups or items via the layers window.
         The objective is to use a script like these two:
        Set myLayerCercle = my_Laieur_elements.GroupItems("Laplupart").PathItems("LaplupartCercle")
            myAiApp.Redraw
            myLayerCercle.FillColor.Spot.Color.Cyan = 0
            myLayerCercle.FillColor.Spot.Color.Magenta = 100
            myLayerCercle.FillColor.Spot.Color.Yellow = 80
             myLayerCercle.FillColor.Spot.Color.Black = 0
           myAiApp.Redraw
    or
      textRef.Paragraphs.Add ("myNewText")
        textRef.Paragraphs(1).ParagraphAttributes.Justification = aiRight
        textRef.Paragraphs(1).CharacterAttributes.Size = 12
        textRef.Paragraphs(1).CharacterAttributes.HorizontalScale = 10
        textRef.TextRange.CharacterAttributes.BaselineShift = fontBaseLineShift
        textRef.TextRange.CharacterAttributes.TextFont = myAiApp.TextFonts.Item("Times")
        textRef.TextRange.CharacterAttributes.FillColor.Black = 0
        textRef.TextRange.CharacterAttributes.FillColor.Magenta = 100
        textRef.TextRange.CharacterAttributes.FillColor.Yellow = 0
        textRef.TextRange.CharacterAttributes.FillColor.Cyan = 0
    If you agree please send your eps file via my email. I could be than more efficient.
    Have a good evening
    Patrice
    *) open an office sofware (Word or Excel) and go to the Visual basic editor (alt+F11) and
    copy and paste these script; replace nom_docAi  with your eps file name
    Public nom_docAi
    Sub myPrg()
    call OpenAi
    call openBaseFile                          '= open the eps file
    call myRectangle(100,100,200,300)
    call saveEPS(nom_docAi )
    call savePNG(nom_docAi )
    end sub
    Sub OpenAi()
    '*** le fichier excel et illustrator se trouvent dans le même répertoire
    myPath = ActiveWorkbook.Path
    '*** Définition de la variable "application"
    Set myAiApp = CreateObject("Illustrator.Application.CS4")
    End Sub
    Sub openBaseFile()
    '*** Définition et ouverture du fichier illustrator de base
    nom_eps = "cycle.eps"
    'nom_docAi = myPath & "\" & nom_eps
    nom_docAi = "G:\graph" & "\" & nom_eps
    Set myDocAi = myAiApp.Open(nom_docAi, 1)
    End Sub
    Sub saveEps(myPictureName)
    '*** Sauvegarde fichier
    Set myDocAi = myAiApp.ActiveDocument
    Set myEpsSave = CreateObject("Illustrator.EPSSaveOptions.CS4")
        myDocAi.CropBox = myDocAi.VisibleBounds
        myEpsSave.EmbedAllFonts = True
        myEpsSave.Preview = aiColorTIFF
        myEpsSave.postscript = ailevel3
        myAiApp.ActiveDocument.SaveAs myPictureName, myEpsSave
    End Sub
    sub myRectangle(x, y, LenghRect, HeightRect)
    '*** Sélection du calque recevant les rectangles
    Set Laieur = docAi.layers("data")
    myAiApp.Redraw
    Set myRect = docAi.PathItems.Rectangle(y, x, LenghRect, HeightRect)
    myRect.FillColor.Cyan = 0
    myRect.FillColor.Yellow = 100
    myRect.FillColor.Magenta = 35
    myRect.FillColor.Black = 0
    myRect.Stroked = False
    myAiApp.Redraw
    'mTab = myCColor(mType)
    End Function
    Sub savePNG(myPictureName)
    '*** Sauvegarde fichier
    myPictureName = Replace(myPictureName, ".eps", ".png")
    Set myAiApp = CreateObject("Illustrator.Application.CS4")
    Set docAi = myAiApp.ActiveDocument
    Set pngExportOptions = CreateObject("Illustrator.ExportOptionsPNG24.CS4")
    pngExportOptions.AntiAliasing = True
    pngExportOptions.Transparency = True
    docAi.Export myPictureName, aiPNG24, pngExportOptions
    End Sub

  • Is this possible to load HTML Widget to CS4 like CS5

    Hi Everyone!
    I have used Photoshop CS4 & CS5. I have created one CS5 Extensions Panel using HTML Widget from Adobe Configurator II .
    In Photoshop CS5 Extensions Panel HTML widget shows Image & Text in HTML window.
    Hence Is this possible to use HTML Widget in Photoshop CS4 or How to Load HTML file in Photoshop CS4 to Extensions Panel.
    Thanks in advance.
    -yajiv

    Not exactly sure how you where planning to display that HTML content in relation to the overall page, but given the limitations of Flash... that may just not be possible...
    But, it would be a simple matter to display an HTML iframe over the top of or behind a Flash .swf... So while the iframe would not be a part of the .swf, it certainly could be designed to make it look as though it were.
    Controling the stacking order or layering of content on a Web page is accomplished through z-indexing. Correctly positioned and z-indexed, the iframe could apear over the top of the .swf... the .swf in effect being the background... OR the iframe could appear behind the .swf and with a transparent section in the .swf, the iframe would appear through that hole. If there is navigation or links in the iframe, they will be blocked by the .swf though.
    http://www.w3schools.com/cssref/pr_pos_z-index.asp
    But this may be an option....
    Best wishes,
    Adninjastrator

  • Is it possible to have 2 iWeb sites with one .mac account?

    I am trying to create a business site with my CV (resume) and work credentials as well as a personal site with photos etc for family and friends. Is this possible to do with iWeb?

    To keep sites totally separate for publishing you
    need to keep their data files totally separate,
    either by switching them in and out or by running
    iWeb from separate user accounts. The data file is
    located at
    Users/username/Library/Application
    Support/iWeb/Domain
    thank you -- that's gonna have to be the answer I guess, til they hopefully add a new feature.. my non-.mac site is for my kids' swim team, so I'll just create a 'swim team' user account for now. Not TOO inconvenient, I don't suppose.
    If you have two sites in the same data file already
    you can separate them by making a copy of the current
    Domain, then deleting one site from the current
    Domain, putting that somewhere safe, inserting the
    old Domain copy, and deleting the other site from
    that, giving you two Domains each with one site.
    keeping my fingers crossed that this works.
    thanks again,
    Jo

  • I'd like to edit my site from iWeb on two computers, is this possible?

    I'd like to edit my site from iWeb on two computers, is this possible?
    I started creating my site on a PB 15", but when I'm home I like the speed of my iMac and I'd like to continue the editing process on my iMac but I can't find the files that iWeb saves.
    I'd ideally like to save my site on my 30gig iPod using it as a hard drive between both. I would love for this to happen but I can't find the files saved by iWeb. Is this even possible?
    I've even tried linking my PB to my iMac via firewire as a hard drive. No Luck.
    Please Help . . .
    john
    PB G4 15" 167GHz 80HD, iMac G5 2Ghz, 160HD Mac OS X (10.4.5)
    PB G4 15" 167GHz 80HD, iMac G5 2Ghz, 160HD   Mac OS X (10.4.5)  

    I think iWeb only recognizes the 'domain.sites' file so while you can set up more than one site, they are in the same project.
    Of course, the workround is to move the domain.sites file out of the default location, which them makes iWeb create a new one. You can then work on any number of projects, only moving the correct file into the default location for work on each one. Not elegant by any means, but until someone suggests a better way (or Apple produce a more flexible version of the software) it works fine that way.

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

  • Using one ipod on 2 computers - is this possible?!

    Hi guys I would really appreciate it if somebody could help out with this:
    I want to buy my girlfriend an 80gb Ipod Classic for xmas and load it with some music using my existing version of itunes (version 7.3.2.6) and then give it to her so that she can use the ipod with the verison of itunes that it comes with or she downloads. *This music will NOT be music purchased from itunes.*
    Is this possible? When her friend connects her new nano to my girlfriends pc and tries to use my girlfriends slightly older version of itunes all of the songs are greyed out and not useable.
    I do not want to buy the ipod and load it up only to find she can then not use it with her version of itunes.
    If anyone is certain about this i'd be greatly appreciative of an answer.
    David

    To change it back to automatically syncing you remove the check mark from "Manually manage songs and videos" and press Apply. If you don't want to use it as file storage device and want it to automatically eject when it is finished updating you also remove the check mark from "enable disk use" (this is checked by default when you set the iPod to update manually. Remember though that if you go back to updating automatically, any songs on the iPod that aren't in iTunes will be removed. You can't "sync" that is automatically update an iPod from multiple libraries or computers: Loading songs onto iPod automatically - Windows

  • I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    A third-party app probably cannot obtain a stream from another app. To the best of my knowledge, such a capability is not provided in the software development kit, apps being "sandboxed" from each other and so allowed to communicate only in very specific and limited ways.
    I'm not completely sure what you mean by "limitations on video capture". An iPhone, to the best of my knowledge, can natively record video only through it's built-in camera, and audio while doing video recording only through the built-in microphone or mic/headphone jack. There might be a video recording app that would allow audio input from an external device connected to the dock connector, but I'm not sure.
    Regards.

  • Can Time Capsule be used as a time machine on a Windows Server.  Is this possible, and how do i configure this?

    I like to use the new TC in my office as a time machine on a Windows Server.  Is this possible, and how do i configure this?
    In fact my plan is to make the first back up by connecting to the server via an ethernet cable, but thereafter i like to bring the TC to my home and perform the incremental backups over the internet.  This is for safety reasons, in case for example the office is broken into, or flooded, or fire (god forbid).
    I sincerely hope it is possible, and not complicated.
    Alternatively i would not mind replacing our current Windows server 2003 with an Apple server, but all computers in the network (except mine) are Windows 7 or 8. Would it work?
    Thanks in advance.
    Paris

    I will consider the WD My Cloud device.
    It is a NAS.. it is designed to provide a cheap centralised file storage.
    What is NAS?? http://en.wikipedia.org/wiki/Network-attached_storage
    A file server like windows uses heaps of power to do very little.. in your setup.. In most setups like SBS it will do exchange server and provide a heap of useful connectivity to your clients.
    Since you are not using the windows server in anything but simple file serving you can replace with a NAS..
    Problem with the TC is, it is a router with a hard disk inside.. designed specifically for Time Machine.. it fails to provide what a NAS does.. easy access to any clients, local or remote.. TC is designed by apple for apple and the rest of world is not really invited to the party.
    It provides no backup.. no data protection.. and is so specifically apple orientated I do not think it works at all well with windows.
    For a simple example.. windows will have file issues with large files.. because it is only NTserver FAT32 to windows.. bad luck if you have large files.. !!
    Plainly if you use active directory in windows that facility is gone.
    I just like Apple products, find them more stable than Windows and easier to use.  Plus i can access the server from home if it is an Apple Server.
    If you only need remote access for yourself that is fine.. too bad for the windows clients I guess.
    Or you open it up to the world and bad luck for security.
    Apple do not design for mixed environment.. in fact with the TC there is no provision for windows access officially at all.. so anything you do is a fudge.
    You can use the TC for your Mac backups within the network.. that is fine. Apple provide no software at all to help with your windows clients.

  • When i send a text message with my new iphone 5 to my wife who is now using my old Iphone 4 we both receive the message. How is this possible? Also she receives all text messages sent to me

    when i send a text message with my new iphone 5 to my wife who is now using my old Iphone 4 we both receive the message. How is this possible? Also she receives all text messages sent to me. She obviously has a different phone number and a different provider

    See here to create a new apple ID
    http://support.apple.com/kb/HE37
    good luck

  • I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    It can be done with analog but not digital thanks to "good 'ol" HDCP copy protection which apple (and most other manufacturers) unfortunately respect.
    So you can take the analog output from your cable box (component -- 5 cables -- if it has it but generally they all have composite -- 3 cables) and feed it into some kind of converter or into some appropriate pci card for your mac pro.  But none of them are going to let you directly use the HDMI output from the box to your computer.
    Bottom line, no single cord is going to work and it will never be the higher quality digital picture you get on your tv.
    Some qualification:  There are boxes that I think support hdmi input.  Look at Blackmagic.  But I still don't think you can get around the HDCP from the cable box (might depend on the kind of cable box). 

  • I have an ipad and iphone sharing icloud.  The ipad is using 268mb, the iphone 2.6.  My plan is 5gb but it keeps saying I don't have enough space to back them up.  How is this possible?

    I have an ipad and iphone sharing icloud.  The ipad is using 268mb, the iphone 2.6.  My plan is 5gb but it keeps saying I don't have enough space to back them up.  How is this possible?

    Hey sameyrs2,
    Thanks for the question. Based on what you stated, it seems like you are getting a message when trying to backup to iCloud. I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    iCloud: Understanding Backup alert messages
    Manage your iCloud storage
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

Maybe you are looking for

  • Issues with using webcam in Flash Windows 8.1

    Hi there Anyone else experiencing this and can help? I have recently upgraded to Windows 8.1 and ever since then I cannot get Flash Player to display my webcam on various chat sites and realtime messaging tools. All i end up with is a white pane wher

  • Field & Table name of tarnsport vendor in migo - Goods reciept

    Can anybody tell the table name and field name of transport vendor in MIGO Goods reciept. If I press the f1 then it shows the table name as GOFRIGHT field name VENDORNAME. but the GOFRIGHT is the structure not he table. Atul

  • Need help with custom column in BI Publisher

    Hi Guru's I have started working with BI Publisher Recently and need with below issue Can you please let me know how can i create a custom column like % based on two existing measures in the report I tried creating it in obiee report and used that SQ

  • Drilldown a hierarchy in Answers

    Hi, I'm new with OBIEE and I created a dimension Geography with hierarchy State -> Region -> City using BI Admin. After that I update my repository (consistency checked), restart the BI server and go to Answers webpage, but when I select my Subject A

  • Low and bad screen resolution with radeonhd [SOLVED]

    Hi Archers, I just setted up a brand new PC with an ATI HD4550 GPU and a 22'' 1680x1050 monitor. I can run Xorg and even Gnome using the radeonhd drivers, but the max resolution I can get is 1280x1024 (which isn't even the correct ratio). The lower s