Jump to content

crmamx

Members
  • Posts

    417
  • Joined

  • Last visited

Posts posted by crmamx

  1. Alternatively, you could use the best web browser Chrome, and not have to worry about tedious updating because it happens in the background without you even knowing. You get updates and bug fixes without ever having to do anything. And more importantly, for us web developers, it means 99%+ of users are always using the newest version just weeks after it comes out.

     

    Well as a developer, the problem isn't just about having the latest browser/patch, but the addons actually working for it.  And as a web developer, you aren't just working in a single browser (or browser version), so you don't get the option to pick the "always up-to-date" Chrome option and give everybody else the finger.  I need to make sure stuff works in FF, even if Chrome is my browser of choice, you know?  And therefore I heavily depend on a handful of Addons to work with it, as it makes my job 1000 times easier, arguably possible at all.

    As a developer making a living at it I completely understand your point. I wish I had come around during your generation because the PC is something else. I spent my career with Cobol and mainframes. But as a novice with only one hobby web site that has 32 members, and after I have busted my ass for hundreds of hours developing the site, if they are too lazy to update from IE6 after I have told them, then I have the luxury of just giving them the finger.

  2. Alternatively, you could use the best web browser Chrome, and not have to worry about tedious updating because it happens in the background without you even knowing. You get updates and bug fixes without ever having to do anything. And more importantly, for us web developers, it means 99%+ of users are always using the newest version just weeks after it comes out.

     

    Never looked at it but I will take your advice. I was using IE when I first started. One of the admin's here was answering one of my first questions and found that out and I got an earful... :'( He mentioned Firefox and cssfreakie, who is a good friend, agreed so I could use Firebug. At that point I did not even know what CSS was. I have been using it every since.

  3. Because Mozilla now bundles virtually all security patches with each version upgrade, users stuck on Firefox 4 are now running a browser vulnerable to 20 different bugs.

     

    Just ran across this. Damn, guess I had better change my mind and at least go to 5.

  4. I don't believe I'm going to upgrade to 6.

    Mozilla's aim here is to catch up with the current browser version numbers, so as to blend in better somehow.

     

    It won't be long and Firefox 7 will be out, then 8,9 & 10.  They might even go as far as 11.

    I think I'll just upgrade to the even numbered ones.  :D

     

    I'm just going to upgrade to the numbers that are only divisible by themselves.

     

    So.. none of them?

     

    Dumb ass me as usual. I left out the word evenly...evenly divisible by themselves....1,3,5,7,11...ect. Are they called prime numbers?

     

    No, you used the word correctly. You forgot to say "..and 1" :P, all natural numbers have a divisor of 1. Prime numbers have only themselves and 1 as divisors.

     

    Can I use 58 years since I graduated from high school as an excuse?... :shrug:

  5. I don't believe I'm going to upgrade to 6.

    Mozilla's aim here is to catch up with the current browser version numbers, so as to blend in better somehow.

     

    It won't be long and Firefox 7 will be out, then 8,9 & 10.  They might even go as far as 11.

    I think I'll just upgrade to the even numbered ones.  :D

     

    I'm just going to upgrade to the numbers that are only divisible by themselves.

     

    So.. none of them?

     

    Dumb ass me as usual. I left out the word evenly...evenly divisible by themselves....1,3,5,7,11...ect. Are they called prime numbers?

  6. I don't believe I'm going to upgrade to 6.

    Mozilla's aim here is to catch up with the current browser version numbers, so as to blend in better somehow.

     

    It won't be long and Firefox 7 will be out, then 8,9 & 10.  They might even go as far as 11.

    I think I'll just upgrade to the even numbered ones.  :D

     

    I'm just going to upgrade to the numbers that are only divisible by themselves.

  7. I downloaded FF6 yesterday. My avast web rating add on stopped working as did my firebug add on and a couple of others. Straight away I went to the firebug website and there was already an option to download a firebug that works with FF6. This latest update hasn't really hindered me in any way. The avast add on still doesn't work but when I updated to FF5 from 4 it took about a week to keep up to date so I'm not too fussed.

     

    Thanks. I will try 5 again but am not going to mess with 6 for a while.

  8. I am not sure but I believe it was Lightshot and Firebug that would not work with 5.0. Seems like they would have made sure those two important developer tools worked before they released a new version. I am certainly not a developer or close to it but I do maintain our Club site and use both frequently.

  9. I would suggest  starting with the tutorial at W3Schools simply because it provides a "Try It Yourself Editor." A lot more learning takes place when you "DO" something after you read about it. And you can play with the code in real time to see what will happen. It is the only editor of this type on line that I know about.

    http://www.w3schools.com/

     

    However, once you get your feet on the ground, abandon W3Schools and use Tizag as suggested previously or one of the other good tutorials. W3Schools has some deficiencies but I think the value of the Editor outweighs them for a beginner.

     

     

  10. Firefox 6 is being promoted as

    Firefox 6 does include some nice new tools for web developers. Scratchpad is a new JavaScript editor that’s well worth checking out, and the Web Console panel has also been improved.

     

    But I downloaded Firefox 5 and the add ons I was using with 4 (don't remember which ones)would not work. So I had to go back to 4.

  11. do you have an online example of your code that is not working?

    I am not a fan of w3schools but since they have an example with a horse i must link to it :P

    http://www.w3schools.com/html5/tag_audio.asp

    Also the browser must be ready for it

     

    Here is what  works on the PC.

    <object>
    <param name="autostart" value="true">
    <param name="src" value="Orange_Blossom_Special.mp3">
    <param name="autoplay" value="true">
    <param name="controller" value="true">
    <embed src="Orange_Blossom_Special.mp3" controller="true" autoplay="true" autostart="True" type="audio/wav" />
    </object> 
    

     

    This works on the PC where the html and audio are in the same file. Note that type=audio/wav. If I change that to mp3 it will not work.

     

    Here is the code I have uploaded to the server and it will not work.

    <object>
    <param name="autostart" value="true">
    <param name="src" value="Orange_Blossom_Special.mp3">
    <param name="autoplay" value="true">
    <param name="controller" value="true">
    <embed src="public_html/Web_Page_Files/Sound/Orange_Blossom_Special.mp3" controller="true" autoplay="true" autostart="True" type="audio/wav" />
    </object> 
    

     

    I have tried every variation of the embed src= that there is including putting the audio in the same folder as the program but I can't get it to work.

  12. Did you actually try turning them back on, like Adam suggested?  The add-on/status bar for Firefox 4+ and Thunderbird 5 defaults to off.

    Change me from enthusiast to Dummy. I went to Tools/Add-ons instead of View/Add-on-Bar and could not see anything there to do. I turned it off when I turned the Yahoo toolbar off, not realizing what it was. It is ok now.

     

    It is good you people have patience. But I found that out when I was getting daily help with my website. Great bunch of smart people here.

  13. The html5 embed tags are what I have been trying to use...with different options. Can't get any of them to work on the server.

     

    My pc files and server files have identical names. I have tried mp3, midi and wav files and I am positive they exist on the server.

     

    As a side note my video files play ok.

  14. I have tried everything I could find to embed an audio file (wav, midi, mp3) on a web page and get it to work on the server. I am sure the file is on the server.

     

    I can get it to work on the PC (double click html program).

  15. Thanks Thorpe.

     

    I tried to think of a way to HTML it but it turned out to be mind blowing. It is a monstrous profit and loss statement.

     

    But come to think of it I could have used my WYSIWYG editor with a table. Too late now. Gonna leave it as is.

  16. That sucks! And I was afraid that was the answer since I've never run across it before.

     

    So I took the .doc, had to increase the font size, scanned it, cropped it and displayed it as a jpg. It will do but the quality of the scan isn't that great.

     

    Any other ideas on how to do it?

     

    Thanks.

     

     

  17. I always wondered when I'd run into someone from this shithole.  Yeah, I used to work at Rib Country in '05.

     

    .. regardless of it being cool to run into someone so close... within 7 years of phpfreak-ship, this has nothing to do with centering a DIV.

     

    I humbly beg your pardon!

     

    There is a ton of stuff in this forum that has nothing to do with the topic including  a lot by admins, mods and gurus. If I had a gleaming I was breaking protocol you can be sure I would have never posted such.

     

    But you can be sure I will never address you again.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.