User Profile

Collapse

Profile Sidebar

Collapse
phobia1
phobia1
Last Activity: Dec 2 '09, 03:01 PM
Joined: Oct 27 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • phobia1
    replied to How to put the stage behind vectors
    test.zip

    here is my flash file, could anyone help me put the pink rectangles to the back?
    Best
    F...
    See more | Go to post

    Leave a comment:


  • phobia1
    started a topic How to put the stage behind vectors

    How to put the stage behind vectors

    I have a project where I have draw vectors in a new layer.
    When I run the swf the stage layer always appears on top. How can I get the vector layer to appear on top?

    Plus I have a problem in moving the stage layer to an exact position.
    This is the code I have for the images on layer 1

    regards
    F

    1. //image container
    2. var thisThumb:Sprit e = new Sprite();
    3. //add image...
    See more | Go to post

  • phobia1
    replied to how to load image and display in flash?
    I have got images from Mysql into Flash successfully
    See more | Go to post

    Leave a comment:


  • phobia1
    replied to Sliding menu of images
    in PHP
    thread closed as I got it all working fully automatically
    See more | Go to post

    Leave a comment:


  • phobia1
    replied to Sliding menu of images
    in PHP
    This change now enables display but...

    Code:
    echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
     $xml_output .= "<images>\n";
     for($x = 0 ; $x < mysql_num_rows($resultID) ; $x++){
     $row = mysql_fetch_assoc($resultID);
     $xml_output .= "<image src=\"images/tn/";
     $xml_output .= "".$row['smallpic']."";
     $xml_output
    ...
    See more | Go to post
    Last edited by Dormilich; Nov 23 '09, 02:17 PM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • phobia1
    replied to Sliding menu of images
    in PHP
    xml from database

    Hi Guys
    I have this piece of code that is supposed to produce XML from data retrieved from database Garant. Could anyon tell me why it has stopped working? Its bound to be syntax again but I would appreciate a second pair of eyes to look at it.
    Regards FJW

    Code:
    <?PHP
    // slider.php
    require("./resources/globals.php") ;
    // Generate the SQL command for doing
    ...
    See more | Go to post
    Last edited by Dormilich; Nov 23 '09, 02:16 PM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • phobia1
    replied to Dynmaic Flash using SQL
    I looked at the example for this, created a dymanic text field, converted to movie, but cannot add the code snippet as instructed to this field. Maybe I did something wrong...
    See more | Go to post

    Leave a comment:


  • phobia1
    replied to Dynmaic Flash using SQL
    Hi I am wanting to do the same. Have managed to get XML output from my mYSQL database. Now I try with Flash. Where to put the URL?
    so far I have this
    1. //load xml
    2. var xmlLoader:URLLo ader = new URLLoader();
    3. var xmlData:XML = new XML();
    4. var xmlPath:String = "image-scroller.xml";
    5. xmlLoader.load( new URLRequest(xmlP ath));
    6. trace("loading xml from: "+xmlPath);
    7....
    See more | Go to post

    Leave a comment:


  • Thanks

    Thanks, I new it was something to with MYSQL and PHP versions
    Once again thanks a lot.
    Best
    F
    See more | Go to post

    Leave a comment:


  • Updated MySQL version - error:1064 You have an error in your SQL syntax

    Hi once again.
    We have just changed our ISP and things that worked fine now do not, Obviously its in the differences of MYSQL and PHP versions.
    Have fixed most of the problems but this UPDATE routine has got me foxed.
    Code:
    <?PHP
    
    // update.php
    
    require("./resources/globals.php") ;
    require("./resources/common.php") ;
    //echo $detail; 
    //echo $passdata;
    //echo
    ...
    See more | Go to post
    Last edited by Atli; Nov 20 '09, 02:11 PM. Reason: Added [code] tags and removed sensitive information.

  • phobia1
    replied to Sliding menu of images
    in PHP
    Thanks

    I'll get digging into reading.
    Best
    F
    See more | Go to post

    Leave a comment:


  • phobia1
    started a topic Sliding menu of images
    in PHP

    Sliding menu of images

    Hi to all
    I can make a presentation of fixed images easily in Flash.
    I want to ask if its possible to do it dynamically from a database?
    Regards
    F
    See more | Go to post

  • I really really do appreciate the help you gave me. Perhaps one day I can return the favour
    See more | Go to post

    Leave a comment:


  • :-) Superstar
    That fixes the problem. Syntax and understanding of anything takes much time. I just do this stuff for a hobby.
    I'll keep reading as have many things that I would like to be able to.
    Many thanks again
    Fred
    See more | Go to post

    Leave a comment:


  • More than likely:-)
    Obviously I am out of depth for the time being with this problem. Ill do some reading to figure out How I can make the idea to work. To my mind the hardest part works...populat ing the listbox. Now I have to figure out how to get the text value of the selected item.
    Thanks very much for what you tried to tell me.
    Best
    F
    See more | Go to post

    Leave a comment:


  • :-)
    The error is that the onchange action gives me Veliko everytime..no matter what I select.
    areasearch ooooo that doesn't get passed from the listbox...oops
    The form I just submit it back to itself..maybe should be with PHP-SELF action.
    Function output array displays a set of pictures and does work correctly. All I need is the value for areasearch or in other words the text in the selection..for example if I select...
    See more | Go to post

    Leave a comment:


  • Thanks for the reply.. I have made a few changes and it is trying to work, so I hope that the correction is possibly minor:-)
    Code:
    // Generate the SQL command for doing a select from the Database
    1. $query="SELECT DISTINCT * FROM Garant GROUP BY Location";
    
    2. $stmt= substr($query, 0, strlen($query)-4) ;
    
    // Connect to the Database
    3. $link=mysql_connect($location,$userName,$password) or die (mysql_error());
    ...
    See more | Go to post
    Last edited by Dormilich; Oct 27 '09, 11:51 AM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • Database to lisbox...ok but onchange, I need some help please

    The simple code below gets data from a Location field and puts them into a lisbox. What I want to do is to be able to select one from the list and run a new function. How to get $areasearch valid?
    Thanks in advance for any help
    F

    Code:
    <html>
    <body>
    <h3>List Box Form Data</h3>
      <p>Form data passed from the form</p>
         <?php
          require("./resources/globals.php")
    ...
    See more | Go to post
    Last edited by Dormilich; Oct 27 '09, 10:38 AM. Reason: Please use [code] tags when posting code
No activity results to display
Show More
Working...