Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: krigbert
  • Content: Threads
  • Order by date
  1. krigbert

    Flash not passing variables on to my php mail script

    Whenever I click the "send" button, I get a blank email. I've tried changing the variables in mail.php, and it works, I've also checked for capitalization errors and such there – I think that means the trouble is somewhere in the actionscript. I'm using actionscript 2.0 and this is the code in...
  2. krigbert

    Simple e-mail form not sending mail (some flash)

    It's been a good while since I did any web programming of any kind, since I've decided to focus more on just design and illustration – but apparently an old bug has shown up, and I don't really know what to do. It's a flash page that has a simple mail form, this is the essence of the code in...
  3. krigbert

    div alpha filter thing not working for me in IE6

    Working on this page: http://fortelle.no/test/index.php?p=Illustrasjon The div #bakbar and a bunch of others have something like this defined in my stylesheet: #bakbar{ background-color:#FFFFFF; opacity:0.25; filter:alpha(opacity=25); width: 230px; position:fixed; height: 100%...
  4. krigbert

    While loop that finds out whether an image exists and then shows it

    The above is what I'm trying to do. Now, all the images have names like "illustration20thumb.png" - $p (the category) and $no (the number of the page within the category) are variables given through the url of the page. $lili = 20...
  5. krigbert

    Encoding problem in everything but IE

    This page: http://www.fortelle.no/ahram/indexar.htm Displays correctly (in Arabic) in internet explorer, but not otherwise. Why? It's UTF-8 encoded and I can see nothing wrong in the code: it even works offline :( http://en.fortelle.no, illustration and webdesign
  6. krigbert

    Return false not working in IE for some reason

    I'm using this simple script: function openWin(myURL) { window.open(myURL.href, "win"+(new Date()).getSeconds(), 'width=525,height=500,resizable=yes,scrollbars=yes'); return false; } and writing the links like this: <a href="link" onclick="return openWin(this);"></a>...
  7. krigbert

    How to translate to ISO-8895-1 from UTF-8

    I have a mail form in flash that sends mails using a PHP file. The mails are to be in Norwegian, which means that there are three funny letters that need "special" encoding. Unfortunately, using the form to send mails to Hotmail and several other places will have the mail turn up with yen-signs...
  8. krigbert

    Sending UTF encoded mail

    I'm using a simple form to allow users to send emails through flash. The problem is, that the emails need to be unicode, as the site is Norwegian. The form is in flash, but I don't think that's where the problem is (the flash manual says "By default, Flash Player 7 and later assumes that all...
  9. krigbert

    If a variable hasn't been defined, I want to define it (easy question)

    Poor assed headline, but it is descriptive :p Here's what I have: define("GOTOO", $_GET['goto']); if (defined('GOTOO')) { }else{ define("GOTOO", 2); } $goto = GOTOO; So, if goto is defined (in a link), it gets passed over to the constant GOTOO, which I then see if is defined - if...
  10. krigbert

    gotoAndPlay(variable); not working properly with

    Hopefully it's an easy question - Bad karma to ask all of these stupid things without being able to answer anything :p This is the code for my preloader (all code is on the main timeline): preLoadah.onEnterFrame = function() { prosoo = _root.getBytesTotal()/100; prosentload =...
  11. krigbert

    Trying to do a certain animation with actionscript

    The effect I'm trying to get is something along the lines of the effect on this site: http://www.bang-olufsen.com/web2/systems/product.asp?section=systems&sub=ms&prodid=563 (click the [+]) I'm using this code _global.abneLukke = function(){ if (teppeoppe._height>=200) {gotoAndStop(goto);}...
  12. krigbert

    Dunno what the problem is, some variables not getting set properly?

    Okay, I have a frame with this code: h = 0; abne = 'pres'; forHoide = 200; eftorHoide = 700; this.onEnterFrame = function() { if (teppeoppe._height>=260) {gotoAndPlay(maal);} if (abne='pres') { if (teppeoppe._height<=150){h=eftorHoide;} teppenede._height -=...
  13. krigbert

    mail thing won't work

    Very simple question. Should this work? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html lang="en"><head><title></title></head> <body> <?php mail("my@mail.com","testing title","It's working"); ?> </body> </html> Just checking if there's anything...
  14. krigbert

    Why won't my text stay aliased?

    http://www.liessem.no/Arbeidsmappe/index.php as you can see, all the text is aliased, except "presentation" and "map" - why is this? (you can mouseover "presentation" to see that even "play presentation" - which is within the same button, is aliased. What the eff? http://en.fortelle.no...
  15. krigbert

    Are divs allowed within object tags?

    Seems to be the only thing that causes the site I'm working on not to validate. This is the validation report: http://validator.w3.org/check?uri=www.liessem.no%2FArbeidsmappe%2Findex.php This is the site (no, there's no php in it yet): http://www.liessem.no/Arbeidsmappe/index.php But why...
  16. krigbert

    Getting a movie clip to smoothly move in one direction and decelerate

    It's kind of hard to be descriptive here, but I want one movie clip to move downwards on a page, quickly at first, then decelerating. So I write this in the first frame of the movie clip: while(this._y<500){ mango=(500-this._y)/30; this._y += mango; } Now, when I do this, I get the old...
  17. krigbert

    Making the sub-options hide when making a css dropdown menu

    I'm sort-of following a tutorial from "a list apart"for making css-dropdowns ( http://www.alistapart.com/articles/hybrid/ ), but even though I've written #nav li ul { display: none; } The sub options simply won't dissappear. Also, how can you make the hover state of one thing...
  18. krigbert

    Making a layer height: 100% minus 330px in IE

    I want the layer "scene" to be streched from top:80px to bottom:250px. With firefox, this code takes care of that, no problem: #scene { top: 80px; bottom: 250px; width: 100%; left: 0px; position: absolute; } IE, of course, doesn't have a clue, and simply places the...

Part and Inventory Search

Back
Top