Jump to content

Sniffy

Members
  • Posts

    403
  • Joined

  • Last visited

Posts posted by Sniffy

  1. Thanks, that's great, now if you don't mind me trying to solve what this means.#^[a-z0-9._-]+@[a-z0-9._-]{2,}\.[a-z]{2,4}$## - Is the starting and ending delimeter.^- Is what the string begins with.$ - Is what the string ends with, which means that all of the string is expressed in this regex.[a-z0-9._-]+ - The string has any alphanumeric character, a single _ or - once in a row, and these characters are in the expression one or more times. What i don't understand though, is that some emails don't have _ or - in them, but your requesting that they must have it, or are you?{2,} - Your saying that there's at least 2 or more alphanumeric and -_ characters in the domain name.\. - \ means the following character is not a special character in the expression, but part of the string.[a-z]{2,4} - The domain extension is between 2 and 4 characters.Just answer my question about the ._- ; everything else is fine.

  2. The .swf can only have one bg-color for the file and cannot be changed, at least in MX 2004, but as an alternative.....1. Create the layer 'bgchange' or something that you'll remember.2. Click the rectangle tool and give it any size, your desired color, but make sure it has no border.3. Make sure your rectangle is selected, and then open up the properties box. 4. Change the width and length of your rectangle according to the stage size. E.G.: width: 500; length: 400;5. Press F8 to convert the rectangle to a symbol, a movie clip would probably be most convenient, although a graphic may also work.6. Now open the align panel.7. Make sure 'To Stage' is selected, and align horizontal and vertical center.8. Now insert a keyframe on the frame with the final result of the change.9. On that keyframe, open up the properites box again, make sure your MC(Movie Clip) is selected.10. From the dropdown box 'color', select tint, and the desired color of your changed BG.11. In the timeline, right-click > Create Motion Tween, anywhere between the start and end of your change.*If you don't already have the properties or align box open, find them somewhere in Window>.

  3. I've been getting some sort of bug in my Opera today, I didn't think to copy it, but I think it had something to do with memory.If I could have a link to Common Opera Problems that would be great.

  4. This kind looks like spam, should we close this topic before it gets out of hand?I know I was the first to reply but still..... :)BTW: Nice picture smiles.Maybe we should turn this into Christmas Layouts(CSS/HTML) thread, where we make Christmas layouts and let others preview them here.

  5. Thanks for posting the error message, now I know why the border attribute is not working.Did you try using CSS?I see <frameset cols="121,*" border="none">It should be <frameset cols="121,*" style="border: none;">

  6. I'm not sure if I should have put this in the PHP forum or not, but how do I process code but not execute it on my document?e.g

    <?php$fN = "sFile.txt";$fH = fopen($fN, 'a');$fC = "if(my == 0){ //exec }";fwrite($fH, $fC);fclose($fH);?>

×
×
  • Create New...