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 derfloh 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: *

  1. GeeBee2

    Actionscript question

    I am actionscript neophyte so to speak, I am loading scores from a text file with the following format filelist=100,95,78,90,80 when attaching this to a button I am not envoking the trace function, nothing happens. This works fine without attaching it to a button--- it doesn't work when...
  2. GeeBee2

    Dynamic Drag and Drop

    I am working to decipher Bob Skidmore's tutorial regarding Dynamic Drag and Drop, you can view it here http://www.flashkit.com/tutorials/Dy...-212/index.php I have tried to reconstruct it as best I could, here is the .FLA file, I have applied all of the actionscript and movieclips per the...
  3. GeeBee2

    Actions Script Syntax problem

    Thanks wangbar, trace statements work fine. I forgot to put } in front of the else if statement. It works fine now..thabs for the reply though!
  4. GeeBee2

    Trapping Quiz response variables

    Hi all The code below will track how many questions were answered right and wrong and it works great, however I want to trap which question the user missed and compile a list of the questions missed. I know it lies in this section of the code but how would I tie the variable userAnswerNumber...
  5. GeeBee2

    Actions Script Syntax problem

    ok I have syntax problem, I get an error can't find the matching if....I am a newbiew with action script so please be gentle! Thanks in advance for any help if (userscore<84) { comment6 = +firstname+", you answered "+numOfQuestionsAnsweredCorrectly+" % "+"of the answers right. Please study...
  6. GeeBee2

    Passing Variables to a Database

    Thanks Pix I finally figured it out early this morning...it is interesting what happens when you get a good nites sleep and feedback from fellow programmers. I commented out what I did, it was really placement of my code..I moved two lines of code to the right place...
  7. GeeBee2

    Passing Variables to a Database

    I am using action script to pass quiz data to an ASP application that will save the data to a database. The problem that I am experiencing is that when the action script calls the ASP app it inserts a blank record than it will insert my data...."I am pulling my hair out" I have included the...
  8. GeeBee2

    Passing Variables Syntax Question

    Thanks again Kenneth, you put me in the right direction, this is what I ended up doing. <% newQuiz = "Http://www.faithavenue.com/" & thisMovie & "?embed" %> I could probably take the ?embed out, but it works and use the syntax below for the FLASH object <PARAM NAME=FlashVars...
  9. GeeBee2

    Passing Variables Syntax Question

    Thanks Kenneth, you da man! That worked perfectly, I am confused about one thing though below is the code that I am using to play the movie. I want to pass the variable newquiz to the movie. I have tried <PARAM NAME=FlashVars VALUE="xmlPath=newquiz"> That doesn't work - I know it is...
  10. GeeBee2

    Passing Variables Syntax Question

    Thanks Pixl8r, for putting that together for me, What would the correct syntax be in my falsh document. so instead of this myData.load("http://www.faithavenue.com/quiz.xml"); is this the correct syntax? do I put it in quotes? myData.load("myvariable name here"); Thanks
  11. GeeBee2

    Passing Variables Syntax Question

    Is there a way to pass the name of a file to my movie, right now I have it hard coded with the name, how do I pass it the name of a file via a variable instead. I am somewhat familar with ASP and Javascript Thanks in advance var quizItems=new Array(); var myData=new XML()...
  12. GeeBee2

    Passing variable from ASP page to populate list box.

    Hi, Is there a way to pass the name of a file to my movie,with either javascript or asp. Right now I have it hard coded with the name, how do I pass it the name of a file with a variable instead. Thanks in advance var quizItems=new Array(); var myData=new XML(); myData.ignoreWhite=true...

Part and Inventory Search

Back
Top