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 TouchToneTommy 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: SFiend
  • Content: Threads
  • Order by date
  1. SFiend

    MovieClip Array

    Is it possible to make movieclip array? And how I can work with it? for (var i = 0; i < this.childNodes[1].childNodes[3].childNodes.length; i++) { obrazek[i] = new Object(); obrazek[i].urlObrazku = this.childNodes[1].childNodes[3].childNodes[i].firstChild; obrazek[i].nazevKlipu =...
  2. SFiend

    XML object

    hello, I receive via XML.sendAndLoad function this XML data: <?xml version="1.0"?> <telo><nadpis>Ad Net</nadpis><popisek>lfh skahf sjhf kajsh fkajsh fkjhsfjhsakfh a flkjshk jhs fhsk hfkjhs fkjhfk jhskj...
  3. SFiend

    Flash communicating via XML with PHP

    Hello, does anyone have an example of a flash that communicates with PHP via XML? Thanks
  4. SFiend

    function which started when someone closes the browser

    Hello, I'd like to ask you if there is a function that can be started when someone closes the browser or go to another page... I need to measure the time the flash was functioning on the site and I believe that this function would help me to measure it... Thanks
  5. SFiend

    Dynamic text and setNewTextFormat...

    Hi, I have dynamic text a I need to make one line red, next one blue, next one black etc. But when I change color or italic style, Flash change all in the text box. Not only the new text. Where is a problem? Thanks... function InsertText(NewText, NewColor, Italic) { var NewFormat:TextFormat =...
  6. SFiend

    Problem with a few php processes and with filesystem.

    Hello, I have a problem with big traffic counter. From time to time filesystem cut the file with data to zero size. Could you help me with it? Here's the code: <? error_reporting(0); define('Data', './count.cnt'); chdir(dirname(__FILE__)); //php 4 if (file_exists(Data)) $File =...
  7. SFiend

    Redirect with POST variables in PHP

    Hi, I have tried something like that, but with no response... $Data = "Castka=$Castka"; $Size = strlen($Data); header("POST /help/prijem.php HTTP/1.1", false); header("Host: localhost", false); header("Content-Type: application/x-www-form-urlencoded", false); header("Content-Length: $Size"...
  8. SFiend

    Fultext search with Innodb?

    Hi, I use Innodb tables, because I need foreign keys. But now I need a fulltext search which is supported by MyISAM tables only. Do you have any solution? Thanks
  9. SFiend

    LIMIT and total number of rows?

    Hi, is there any possibility to find out total number of rows when I use LIMIT? I use PHP and MySql.. Thank you for any idea...
  10. SFiend

    Javascript overlap Flash, I need to Flash overlap Javascript

    Hello, I have problem with Z-Index??? Javascript overlap Flash and I need to Flash overlap Javascript. Could tou help me? I hope foreing language will not be a problem. http://www.drticeodpadu.cz/index2.php MENU -> informace -> prumyslove drtice -> provozni rady
  11. SFiend

    What is faster?

    SELECT I.* FROM Form F, Inp I WHERE F.Id LIKE $Id AND F.Id LIKE I.IdForm or SELECT I.* FROM Inp I, Form F WHERE I.IdForm LIKE $Id AND I.IdForm LIKE F.Id what do you think?
  12. SFiend

    24 sec different between two same orders...

    Hello, could you tell me where is different or where is an mistake? CREATE TEMPORARY TABLE Pomocna_tabulka SELECT Edar_Nakupy.Sleva AS Sleva, Edar_Nakupy.Duvod_slevy AS Duvod_slevy, ( Edar_Zbozi.Nakupni_cena * ( 1 - ( Edar_Nakupy.Sleva /100 ) ) ) AS Nakupni_cena_po_sleve, (...
  13. SFiend

    Missing fonts, is it possible to insert missing fonts to flash?

    Hi, I have a problem. I use some fonts on my flash site and everything works fine on my computer. But when I open the same site on another computer where the fonts are missing, it replace the fonts with common ones. Is there any solution how I can attach this fonts to flash site?
  14. SFiend

    imagecolorat problem

    Hello, I have a problem with imagecolorat function, I want to find index of color from jpeg and it doesn't work. From gif it works perfectly. Could you help me?
  15. SFiend

    Resize to full screen without explorer menus etc.?

    Hi, I want insert Explorer with my homepage to the "After start" menu... Then I need resize my homepage to full screen without explorer menus and dialogs etc. I hope you understand me, simply resize existing window to full screen without menu... Thanks
  16. SFiend

    New page in explorer for printing, any solutions?

    Hi, Is there an order that says to the printer to start printing on a new page? eg. I want to print just a half of the text on page #1 and then use the order to print the rest of the text on the page #2. In C++ it is \f Thank you.
  17. SFiend

    SELECT and UPDATE problem...

    Here's the query: SELECT Zbozi1.* FROM Zbozi AS Zbozi1, Zbozi AS Zbozi2 WHERE Zbozi1.Id_polozky LIKE Zbozi2.Id_polozky AND Zbozi1.Poznamka LIKE Zbozi2.Poznamka AND Zbozi2.Id LIKE $Id But, what about I want update the result? This doesn't work :( UPDATE Zbozi AS Zbozi1, Zbozi AS Zbozi2 SET...
  18. SFiend

    About using AS...

    I don't know why, but this is not available :( select A, (A*B) as C, (C*D) as E ........ Can you help me? Do I have to use: select A, (A*B) as C, ((A*B)*D) as E ........
  19. SFiend

    How I find out GROUP BY items?

    Hello, how I can find out items which are in GROUP BY? Examle: table: ID NAME 1 john 2 martin 3 taylor 4 john 5 martin select *, count(*) from table group by name; the result will be somethink like this: ID NAME COUNT 1 john 2 2 martin 2 3 talylor 1 and now I want to find out all IDs which...

Part and Inventory Search

Back
Top