Family has problems viewing my page + other questions about iweb 08???

Hello: I have been using iweb 08 since it came out and have had nothing but good things to talk about it. I ususally test my website on the library pc's or on my mac using firefox. I never see anything not working. My family and friends however always tell me about things not working and not showing up. They say it takes a long time to load - I am not sure if that is the problem overall or if it comes from them using Pc's (windowns xp mainly).
My questions:
1. How can I make sure that the content of my page does not take too long to load if I am using music, videos and images? (I know to look at the file sizes of all of them, but is there another trick)
2. Can I have a main page for everyone to view my welcome page and then password protect the rest of the page only to my family? Or even make some pages only available for eg. Mom and Dad with another password?
3. Does a Hit counter not work when publishing to my own domain? If yes, why do comments and password protection work then?
4. Is it possible to link a page from my start page where I incorporated a picture and enable my viewers to see it larger when clicking on it without me making a new site that shows up in the top panel (just like about me, blog, photos, movies)
5. There used to be a page to look at .mac customers and what they did with their membership. Starting their own business, military wife uses web gallery etc. I can't seem to find this page again, does anyone know the link.
I know this is a lot, if I could I would offer a reward for all the answers I need. Thanks though for helping me out, I try to help out as much as I can myself. Thank you. Sabina

Your site is loading OK but slow in Windows XP running IE V 7. The form is loading too. Maybe its a Vista problem?
My general rule is that if your site locks IE then you have to reduce the page size and optimize.
If it loads slowly and shows layout anomalies, then optimizing will usually cure it.
I have been using Web Site Maestro for several years and can highly recommend it. Download the trial version which will optimize 50% of your files and watch the screen to see how much it reduces the individual file sizes.
For an example of photo file reduction see....
http://roddymckay.com/PhotoStuff/PhotoFile.html

Similar Messages

  • I have a Macbook Pro june 2011... I have 8GB ram but I only have 256mb VRAM... I've read some other questions about this and I realized... Why do I not have 560mb of VRAM since I have 8GB of RAM? Is there any way to get more VRAM to play games on steam?

    I have a Macbook Pro june 2011... I have 8GB ram but I only have 256mb VRAM...
    I've read some other questions about this and I realized... Why do I not have 560mb of VRAM since I have 8GB of RAM?
    Is there any way to get more VRAM to play games on steam?
    I've learned  by reading other topics that I can't upgrade my graphics card on my Macbook Pro because it's soldered into the motherboard or somthing like that, but please tell me if there is any way to get more video ram by chaning some setting or upgrading something else. I'd also like to know why I only have 256MB of VRAM when I have 8GB of RAM, since I have 8GB of RAM I thought I was supposed to have 560mb of VRAM...
    So the two questions are...
    Is there any way to upgrade my VRAM, so that I can play games on steam?
    Why do I only have 256MB VRAM when I have 8GB total RAM?
    Other Info:
    I have a quad core i7 Processor.
    My graphcics card is the AMD Radeon HD 6490M.
    I am also trying to play games on my BOOTCAMPed side of my mac, or my Windows 7 Professional side.
    THANK YOU SO MUCH IF YOU CAN REPLY,
    Dylan

    The only two items that a user can change on a MBP are the RAM and HDD (Retinas not included).  You have what the unit came with and the only way you will be able to change that is to purchase a MBP with superior graphics
    If you are very much into gaming, the I suggest A PC.  They are far superior for that type of application to a MBP.
    Ciao.

  • I phone 4 - problem viewing web pages

    When I open any webpage such as google or my email, I can only see the webpage in a tiny sliver at the top of the screen. I can scroll through it, but it appears to be blocked by a white page. Any ideas how I can view the whole page or get the white page to go away?
    Kelly

    It's hard to tell from your description what you may be seeing, but here are a couple ideas:
    Zoom is on? If so, go into settings and turn zoom off. settings > general > Accessibiliy - OR
    You have White on Black on? (same page in settings) - OR
    Reboot your phone. Hold the home and power button at the same time until the Apple Logo appears (keep holding past the swipe to turn off). THen when you turn it back on, see if your problem is solved.

  • TrackControl, Change Track, and others questions about AvTransmit

    Hi there,
    I've got multiples questions about JMF and AvTransmit, hope you will help
    For a small student project, i'm developing a streaming server using JMF, i have used the AvTransmit example.
    Streaming, etc... everything work fine, i stream music over web
    But i need help with "playlist" :
    // Get the tracks from the processor
    TrackControl[] tracks = processor.getTrackControls();
    First Question :
    The Processor use a MediaLocator to get one track, is there a way to indicate multiples tracks, such as a directory containing multiples audio file ?
    At this time, i can only set 1 file in the MediaLocator.
    I'm using a simple class as Playlist (a File[]), and, when i want to change song, i stop the thread, change the MediaLocator with another file, and restart the thread.
    It works on a Lan, but on Internet, Player (I use VLC for my test) lost the connection, i need to restart VLC to get audio again.
    Second Question
    Is there a more "elegant" way to change tracks ?
    Last Question
    I have think about building my own object Playlist... gasp...
    I've look at the javadoc... but i'm a bit lost... does my class have to implement TrackControl ? what are the object inside etc...
    If someone knows information about this...
    That's all ;)
    Thanks !
    Tommy, french student (sorry for the english)

    First Question :
    The Processor use a MediaLocator to get one track, is there a way to indicate multiples tracks, such as a directory containing multiples audio file ?
    At this time, i can only set 1 file in the MediaLocator.No. The processor uses a MediaLocator to get one file. Files (can) contain multiple tracks.
    You can, in fact, combine the tracks of multiple files together, but, there's no need to do that with your application. AVTransmit2 sends each track as a separate RTP stream, so you'd just be sticking them together just to pull them apart again.
    In general, you want to keep your architecture as one processor per file, one RTP stream per track.
    Second Question
    Is there a more "elegant" way to change tracks ?Yes. It's what I refer to as a jukebox DataSource. I discuss it / explain the concept on this previous thread.
    [http://forums.sun.com/thread.jspa?forumID=28&threadID=5400318]
    What you're essentially doing when you change the MediaLocator is starting over from scratch. You end up with a whole new DataSource, whole new Processor, whole new RTP session. On the LAN, this isn't an issue because it looks like you paused the RTP session (because the IP/PORTs don't change).
    Over the internet, though, when you stop sending and restart, you're very likely going to get a new public NAT port. And so when your stream gets to the client, it's going to look like it's from a different person than the original.
    The solution is to use the jukebox datasource to change the media without restarting the Processor or the RTP streams. That'll ensure that your stream won't move between files from the perspective of the client...
    Last Question
    I have think about building my own object Playlist... gasp...
    I've look at the javadoc... but i'm a bit lost... does my class have to implement TrackControl ? what are the object inside etc...
    If someone knows information about this...Ummmm, your "Playlist" object should just be a Jukebox datasource, so follow the link and figure out how that's supposed to work. If you have questions about it, just ask 'em here (rather than on the older thread)...

  • Techie Question about iWeb, outbound links, and Google Analytics

    Hi,
    I have a kind of pretty technical question about using Google Analytics (GA) with iWeb sites to measure clicks on outbound links. Here's the setup:
    1) My website's online, and GA is working properly.
    2) I don't sell stuff directly, but I do have a "Purchase" page which contains a link to a specific Amazon page.
    3) I'm pretty sure I can measure how many people go to the Purchase page using GA, but how do I measure whether visitors click on the Amazon link? It would be interesting to me to be able to gauge what the conversion rate is; that is, how many people actually proceed to purchase the product at Amazon.
    I've checked the GA instructions and there's a page about manually tracking clicks on outbound links but it requires some code inputting. I know zero about coding, but I'm pretty sure that in iWeb you can't get access to the source code to input the required code.
    Am I wrong about this? And if I am, then does anyone here know how to measure the clickthrough rate?
    Anyway, hope you can help. Thanks in advance.

    I don't know about the link tracking but you could have the link take you to a redirect page which automatically sends them to Amazon.com after a preset time, 0 seconds to whatever you'd like. You can put a counter on that redirect page, like StatCounter. StatCounter can tell you how many, from where they came, i.e country and area, repeat visits, etc.
    Tutorials #12 & #13 describe how to put a visible counter on a page but with a redirect page you wouldn't have to bother since it wouldn't be seen. You can get all of your information from your account on the StatCounter site.
    The redirect page would be a simple plain text page titled redirect.html and would look like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="refresh"
    content="0; Destination URL">
    <title>Redirecting or whatever you'd like to appear at the top of the browser</title>
    </head>
    <body>
    </body>
    </html>
    0 Is the number of seconds to wait before redirecting the visitor. If set to zero the visitor would not know they were being redirected. Replace Destination URL with the Amazon URL you want them to go to.
    OT

  • While trying to load scrabble game via my facebook home page, it will not load within the time allotted. Are you getting other questions about this problem? Is it a Firefox issue? Thanks.

    the message "Facebook is taking longer than usual to respond. If this problem persists, refresh your browser or try again later." appears every time I try to access the game. Facebook acknowledges a problem, but I'm wondering if its a problem with my server. Thanks for any feedback.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/

  • Problems viewing all page content in portrait mode

    Have just tried authoring first iBook using templates and when viewed in portrait mode I get titles of pages but content is missing so have to go to landscape mode.
    There seems to no way of starting at front of book as it opens automatically at page one  and only scrolls forward. To ensure continuity and visuals do I author in portrait or landscape mode.

    Layout in landscape....edit in portrait. Verify in both.
    Note some elements have a 'share in portrait' attribute you can set in the Inspector.

  • Problems viewing updated page

    Greetings all,
    I created a website for my high school arts department and I've encountered issues that I can't seem to resolve. Someone please help this teacher out!
    The site I created is www.jghsfinearts.com
    I updated one page on the site (visualart), published the site changes, and uploaded the following to my Lunarpages server: visualart.html and visualart_files. I uploaded them to public_html folder just as I had everything else. However, since making the changes nothing appears on the updated page on my site. When I visit the site, I see the status bar working but when it gets to "Done" the page is completely blank.
    I feel really stressed because there is a lot of student art there and I don't want to let the kids down because of my technical incompetence. Any help is appreciated!
    Thanks.

    I took a guess at it and I was right. I had exceeded my storage capacity with my webhost Lunarpages. I cleared out some space and now all my pages display correctly.
    And now my next question: why can't I get my podcast subscription to work? But that is for another post.

  • RemoteUpdateManager problem... and other questions

    Hi.
    We are trying to evaluate which update solution to use.
    We package the apps with CCP, and the users should never get prompted about updates and they are not able to download/upgrade by them self, and they are not admins on their computers. So far we haven´t implemented any update solution.
    First of all, when i try remoteupdatemanager.exe in an elevated cmd i get the following message:
    RemoteUpdateManager exiting with Return Code (1)
    And the remoteupdatemanager.log tells me this:
    6/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager  
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   ##################################################
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   ##################################################
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   Launching the RemoteUpdateManager...
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   RemoteUpdateManager version is : 3.1.105.0 (BuildVersion: 3.1; BuildDate: Tue Sep 04 2012 13:58:18 )
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   **************************************************
    06/19/13 08:47:15:738 [INFO]  AAMEE Utilities RemoteUpdateManager   Initializing UpdaterCore Library...
    06/19/13 08:47:15:925 [INFO]  AAMEE Utilities RemoteUpdateManager   UpdaterCore library initialized successfully.
    06/19/13 08:47:15:925 [INFO]  AAMEE Utilities RemoteUpdateManager   **************************************************
    06/19/13 08:47:15:925 [INFO]  AAMEE Utilities RemoteUpdateManager   Starting UpdaterCore CheckForUpdate...
    06/19/13 08:47:17:844 [ERROR]  AAMEE Utilities RemoteUpdateManager   UpdaterCore failed for CFU errorCode(212) curRefId((null)) errorCodeString(U41M1C212)
    06/19/13 08:47:17:844 [INFO]  AAMEE Utilities RemoteUpdateManager   **************************************************
    06/19/13 08:47:17:922 [INFO]  AAMEE Utilities RemoteUpdateManager   ##################################################
    06/19/13 08:47:17:922 [INFO]  AAMEE Utilities RemoteUpdateManager   Ending the RemoteUpdateManager Return Code (1)
    06/19/13 08:47:17:922 [INFO]  AAMEE Utilities RemoteUpdateManager   ##################################################
    06/19/13 08:47:17:922 [INFO]  AAMEE Utilities RemoteUpdateManager   ##################################################
    06/19/13 08:47:17:922 [INFO]  AAMEE Utilities RemoteUpdateManager  
    Anyone have any idea about this error?
    And then to other update quistions. when i read the documentation about how to update i dont really get it.
    1: is one possible solution to package the updates in CCP and then use SCCM to deploy them? i tried to create packages yesterday but the CCP didn´t work so i dont know in what format the updates come in, .exe or .msi and so on.
    2: If we go with the solution of having an Adobe update server on our network, do i then need to repackage all our existing apps which have the config "AUM is disabled" and configure the "use internal update server" or can i push out a config for this?
    3: If we start to use internal update server, if i choose "enable adobe update manager" will then user be able to update themself? We want to handle all of it for the users, is that what "disable adobe update manager" is? i find this very confusing.
    4: Today with our non CC packages (acrobat standard and flash) we are using System Center Updates Publisher to publish acrobat and flash updates to SC Configuration Manager to deploy these updates to the clients the same way we deploy MS updates. Can we use this method for all the CC packages?

    ok, first of all we can skip the RemoteUpdateManager problem. I was running the program as an administrator and the administrator did not have the proxy.pac configured. so this is not a problem for now more then figuring out an account and proxy settings that will work in the background.
    now another problem, i testet to configure AUSST for the first time now, and i get this error after running the command: --root=c:\ausst --fresh
    06/20/13 08:59:26:860 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 5416 | Item failed C:\AUSST\updates\oobe\aam20\mac\AdobeCaptivate6Core\6.1\setup.dmg.
    06/20/13 08:59:27:048 | [WARN] |  | AAMEE | Utilities | AUSST |  |  | 5416 | Unable to download update file C:\AUSST\updates\oobe\aam20\mac\AdobeCaptivate6Core\6.1\setup.dmg
    06/20/13 08:59:27:048 | [ERROR] |  | AAMEE | Utilities | AUSST |  |  | 5416 | Server not responding.                                   
    06/20/13 08:59:28:062 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 4448 | Item downloaded C:\AUSST\updates\oobe\aam20\mac\AdobeDreamweaverCS5WS-11.0\11.0.3\.
    06/20/13 08:59:28:093 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 6728 | Item downloaded C:\AUSST\updates\oobe\aam20\mac\AdobeDreamweaverCS5.5-11.5\11.5.3\.
    06/20/13 08:59:29:107 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 4916 | Item downloaded C:\AUSST\updates\oobe\aam20\mac\AdobeDirector12_jp\12\.
    06/20/13 08:59:59:777 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 6728 | Item downloaded C:\AUSST\updates\oobe\aam20\mac\AdobeDreamweaverCS5.5-11.5\11.5.3\.
    06/20/13 09:00:13:786 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 4448 | Item downloaded C:\AUSST\updates\oobe\aam20\mac\AdobeDreamweaverCS5WS-11.0\11.0.3\.
    06/20/13 09:00:13:786 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 2968 | Item: C:\AUSST\updates\oobe\aam20\mac\AdobeCaptivate6Core\6.1\
    06/20/13 09:00:13:801 | [INFO] |  | AAMEE | Utilities | AUSST |  |  | 2968 | AdobeUpdateServerSetupTool Returned with code: 5.
    this error came ofter it had processed 967 out of 1022 items
    Why?

  • My new MacBook Pro 10.6 has problems viewing the web-Flash

    My old Mac Book Pro running 10.5 saw all website perfectly including Adobe Flash content.  My brand new Mac Book Pro running the latest 10.6 gives me Adobe Flash errors when I look at my e-mail and most websites.  Thank goodness my tower is still running 10.5. Is there a Flash solution for 10.6 with out destroying Quicktime?  I ran into that problem in the past when trying to load Flash for Mac.  My Quicktime quit working when i did that install.  What is the work around to get Flash working on my Mac.   
    Apple is lame for not supporting Flash technology.  The "World" runs on Adobe Flash!  BTW, I own a iPad which does not support Flash either. Flash is a big deal.  Come on Apple give in and support it!

    Just install the latest Flash update.  That's all there is to it.
    Apple is lame for not supporting Flash technology.  The "World" runs on Adobe Flash!
    Phfssh!  That's crap.  Very few of the sites I use rely on Flash, and those that do still rely on Flash for significant functionality now that there are better alternatives (and when there are devices - not all Apple's - that can't render Flash) are generally not sites with very valuable content.  Flash is a dead technology...  it's just still twitching.

  • Default values and other questions about MIO-PCI-16E-1

    Hi, I have a few questions involving the above mentioned board.
    First: When doing a data acquisition using an external digital trigger and an external clock, which edge of the clock signal is read by default?
    What is the delay between a STARTSCAN signal being received and a CONVERT signal being generated (signifying an ADC convertion taking place?)
    Finally, what exactly is the sample interval counter? What does it do? This is mentioned on page 4-32 in the E Series DAQ user manual.
    Hopefully these questions aren't too stupid We're designing some custom circuitry to work with the DAQ, and for things to work the timing must be precise. We need ALL the timing details about a single data acquisition t
    hat we can get.
    The system we're running on has Labview 6.0.2, and we are only acquiring data from one analog input.
    Thanks a ton!
    --Randall Cameron

    Hey Randall,
    The internal Scan Clock is a rising edge clock, if you are interested in having the rising edge clock output as high until a scan is complete, please refer here. The internal Convert Clock is always falling edge clock.
    If you are using an external signal, you can specify the polarity of the signal by selecting PFI pin, high to low, or low to high, if you are using the Clock Config VI. The method for setting the polarity changes based on the method of programming the card. And again, I do not know what the digital trigger defaults to, but you can select either polarity.
    The delay between a Scan and a Convert is based on the Convert Clock.
    Ideally, the delay is in the nanosecond range, and then the Convert Clock determines the spacing between any further samples.
    As for the sample interval counter, the following is pasted from page 4-35.
    �The sample interval counter on the PCI E Series device normally generates
    the CONVERT* signal unless you select some external source. The counter
    is started by the STARTSCAN signal and continues to count down and
    reload itself until the scan is finished. It then reloads itself in preparation for
    the next STARTSCAN pulse.�
    So just let us know if you have any questions on getting the polarity set up, or if anything is not fully explained.
    Best regards,
    Justin T.
    National Instruments

  • Verizon iPhone - mobile hotspot and other questions about the data options

    I just ordered the Verizon iPhone. Can anyone explain the options here:
    1) Unlimited corporate email & Web (business and personal email) vs. Unlimited email and web for smartphones (personal email) - what's the difference?
    2) "3G Mobile Hotspot 2GB" - does this mean that there's no way I can share my 3G connection via wifi without paying the extra $20/month?? How about tethering to a single computer (USB, BT, or WiFi) - does that also require this extra option?
    3) equipment protection - what's the difference between Extended Warranty, Asurion Wireless Phone Protection, and Total Equipment Coverage?
    thanks in advance,
    Mike

    Hi
    Regarding your #2 question; yes, you must pay $20/mo to use the 3G Hotspot aspect of the iPhone, same as with any of Verizon's phones that offer this feature such as the Droid X, HTC phones, etc. And, there is NO additional charge to tether it to your computer; it's $20/mo regardless. You can still use the iPhone's WiFi feature to search the web which is part of the regular data plan. We're only talking about paying the $20/mo for the "up to 5 devices" jumping on your phone as a hot spot.
    I'm an Apple fan, have my MacBook Pro, but my phone is a Droid X. I've been a Verizon member since a year before they became Verizon. Additionally, I am part of the Verizon & Motorola test forum; testing new software updates as they come along.
    Something you should know about Verizon's 3G Hot Spot feature; it has issues. Those of us in the Motorola & HTC forums have experienced identical issues with regard to the 3G Hot Spot feature; it disconnects every 2 minutes, even when you are actively surfing the net. Verizon & Motorola Support have been very helpful to provide what they believe are fixes, including: changing the channel, hard resets, clearing cache, etc. It does not work. Most of us believe, this is NOT a Verizon issue, but a phone maker issue.
    I also have Verizon's MiFi 2200. It costs $59/mo and is purely a hot spot device; again up to 5 devices. I use it at home, for my lap top and for those who need connectivity. It outperforms the 3G hot spot feature of the Motorola & HTC phones by leaps & bounds, and I suspect it will out perform the 3G hot spot feature on the iPhone. Additionally, you get 5GB of download with the MiFi which Verizon is planning on offering increases to 8GB & 10GB. There is NO plan to increase the 2GB download limitation on the 3G Hot spot of the iPhone & other phones, and anyone who does basic software downloads & pics, knows 2GBS is not a lot space.
    So, I would recommend not paying the $20 until this is resolved. If you do, you could pay $39 more for a total of $59/mo for the MiFi, download the software to you home computer & notebook, and end up canceling your home internet service. I did this and have saved $70/mo in my total utilities.
    One other important note: Verizon's VZManager Software for their phones & MiFi. If you did pay the $20/mo for the iPhone and decided to tether to your USB port (for power while using) and you were to use the 3G hot spot feature, it will NOT work on 64 Bit computers, regardless if you are using the WiFi feature or directly using VZManager. The MiFi has this same issue. It will only work on 32 Bit when tethered. So, you'd have to reboot your computer to 32 Bit, if you have that ability. On a Macbook Pro, simply restart holding down the "3" & "2" keys.
    I have no idea why Verizon can't simply upgrade the firmware, even recent firmware upgrades have not resolved this. Most new computers are 64 Bit now.
    Despite this, I use my MiFi 100% untethered and carry my charge cord in my bag as it also works on my Droid, and I presume they may do the same for the iPhone; reduces the need for multiple power cords.
    I really looked forward to the 3G feature of the Motorola & HTC phones, but honestly, it's just not there yet; mine was slower than Dial Up, and I'm not kidding.

  • My laptop won't turn on and other questions about it...

    This isn't a problem that is mostly described in imediate forum discussions. My laptop is 5 years old this summer and since day 1 I have had issues with it, especially with the over heating.... Well starting very recently, my computer has decided that whenever its doing work to stop working and freeze up which requires me to force restart it... but now it just stays at the screen.. im sure its a HD problem or something because when i go to the cmd+s screen and attempt to repair it, it says that it's unable to repair. im trying my hardest not to take it into the store. what should i do. ive been told i should just get a new laptop because the generation of mine was infested with system problems with heating up and starting up.

    Hi T,
    No easy way out of that, my friend, sorry. We have other attempts to do.
    It's spread the word that bad super blocks can be repaired with DiskWarrior (http://www.alsoft.com/DiskWarrior/index.html).
    But before you do that you can try to connect your friend's mac to yours using a firewire cable and startup your machine in target mode - I think it's done pressing T key after Power button. Once you do this use his Disk Utility to repair you HDD. Other hardly successful attempt that would be really hardly successful even if you are truly lucky for having your machine and your friend's one with the exactly same hardware configuration is carbon copying his HD in a USB external disk, if you can get to this point then connect your usb disk, press and hold OPTION and then press Power button, choose USB happy disk and cross your fingers (I am already feeling bad writing this down, it's a bit sin, all bits concatenated will be in horror) - if you get somewhere from here I must congratulate you.
    And after this nonsense the good advice is for you to buy DiskWarrior and a Snow Leopard, if you can not recover your HDD with that you'll have to take it to repair as a last resource before buying another one.
    Good luck.

  • One other question about hyperlinks

    I nearly forgot to ask this.
    Is it possible to hyperlink from one part of a page to another, within the same page. For example, if i talk about a style of music that I write, and lower down the page there are some examples, is it possible to write click HEREto listen, and be taken lower down the page?
    I know it can be done in HTML, but i cant see a way in iweb.
    Anyone?
    David Tobin

    Hi,
    This is called anchors. But it is pretty hard to do. Varkgirl has a tutorial here:
    http://www.varkgirl.com/Anchors/One.html
    Cyclosaurus has a different method here:
    http://geocities.com/[email protected]/anchors_1.html

  • Adobe Flash crashes and other questions about Flash

    There have been several instances of Adobe Flash crashes whether I am using Firefox, IE or Google Chrome browsers - and simply reloading the page corrects this BUT recurs again and again.
    I'm running Windows 8.1 64bit in which the Flash program apparently comes embedded in the OS as a 32/64 bit hybrid. When I inspect the Flash version add-on in Firefox, and run an update check, Adobe reports, correctly, that my system is Windows 64bit , English, Firefox. Then, when I do the same in Windows Internet Explorer by checking the embedded version, I get a message that KB2999249 is available for download to correct Flash issues in IE. Since that install, Flash hasn't crashed in IE [yet].
    So, my question is: How can I be certain that when Firefox reports that Flash is "up-to-date" that it is indeed a 64bit compatible version? Note that the Adobe download site only identifies one available version for Firefox, IE and Google - the current version being 15.0.0.152 file: NPSWF32_15_0_0_152.
    Does the "32" part of the file name suggest that it is a 32bit application and, if so, where can I find NPSWF64_15_o_o_152 [if it exists]?
    ''edited the title of this thread to reflect the questions asked''

    I now understand the version nuances between the browsers and thanks for the response. Now what, if anything, can I do to address the continuum of Flash crashes since I find it difficult to believe that I'm the only user experiencing this anomaly?

Maybe you are looking for

  • Javascript:void(null) error while saving a request

    Hi All, I am not able to save/open a request in Answers. Whenever I click on 'save request' or 'open request' button on the top right corner of the screen on the Answers page, it displays javascript:void(null) and do not prompt me to save or open a r

  • My iphone 5s isn't being recognized by Itunes. Any fixes to this?

    My iphone 5s isn't beign recognized by itunes in order to back up the phone. Any fixes?

  • C++ example to use Acroform OLE Automation

    Can anyone provide me with an example for using the Acroform OLE Automation objects AFormApp, Fields and Field.  The only examples provided with the SDK are for VB or C#. When I use CreateDispatch to instantiate AFormApp object in C++, am getting a c

  • Gray screen troubleshooting snow leopard disk eject

    My Mac Pro starts up to a gray screen.  I've gone through the steps to troubleshoot it and am currently at the level of trying to start the computer from the Snow Leopard installation disk.  The computer ejects the disk during the boot process and no

  • Getting rid of extra white space/margins on the left & right

    Hi. I have two problems. 1.) When I create a Muse template at 1024 px wide, the document creates extra margins of about 150-200 pixels on the left and right. No matter what I do, I cannot get rid of this. I have set margins to "0" as well. I need the