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. JonnyPT

    easy-dumping contents of a var into textbox

    i loaded the var like this var T1Q1 = "some question?"; i don't even know if that might be the problem
  2. JonnyPT

    easy-dumping contents of a var into textbox

    in a function in my first scene, data is loaded into the var "T1Q1" many frames later I have a button that i want to load the value of that into a textbox named "question" i have tried on(release){ question = T1Q1; } on(release){ question = var T1Q1; } on(release){ question =...
  3. JonnyPT

    for command and variable variable names

    didn't work, posted my fla here http://www.penguinpage.com/board/board.fla
  4. JonnyPT

    for command and variable variable names

    it might be easier to understand this way, the value of every text box in row 1 will be set to 100 the value of every text box in row 2 will be set to 200 the value of every text box in row 3 will be set to 300.. there are 6 rows total and 5 columns in each row i could just put in code like...
  5. JonnyPT

    for command and variable variable names

    basically {x+y} is supposed to be the variable name when x=1 and y=3 then {x+y} should equal 13 then i want the value of the text box with that variable name (13 in this case) to be set to 300 (which is 100 times 3 (the value of var y)
  6. JonnyPT

    for command and variable variable names

    i have a small 5x6 matrix of textboxes with var names in this scheme 11 means first row first column 12 means first row second column 34 means third row fourth column... i wanted to create a reset function to set them equal to 100 times the row number i am not very fluent in actionscript, but...
  7. JonnyPT

    rollover scroll

    how? i mean i know how if it is embeded in html, but some people will have access to the swf file itself
  8. JonnyPT

    rollover scroll

    i mean when you open the .swf file (like people viewing will) and change the size to make it larger (like a lot of people will) to make it easier to see, it messes up the line spacing.
  9. JonnyPT

    rollover scroll

    i just realized that when i enlarge the window it throws off the line spacing. how can i fix this?
  10. JonnyPT

    rollover scroll

    i know, what i was pointing out is that the htmlText got erased when the next keyframe appeared in the movie and how i solved the problem
  11. JonnyPT

    rollover scroll

    thanks, just what i needed, of course the htmlText disapperas when the next keyframe comes, so i changed myText.text = var; to myText.text = var; myText.htmlText = var; then on the next keyframe i added myText.htmlText = myText.text not sure why, but necessary.
  12. JonnyPT

    rollover scroll

    fixed 2...changed to thesb.setScrollPosition(0); i still don't know about 1 and i am still curious about why it can't start with a text smaller than the text box without totally disabling the scrollbar for the remainder of the movie
  13. JonnyPT

    rollover scroll

    thanks, i'm working on it, but i know i'm an ammature. heres the thing i noticed later on. it only occurs if the FIRST text you load fits within the window. any subsequent texts will not have access to the scrollbar. i solved this by just always loading in long texts. i have fixed some bugs...
  14. JonnyPT

    rollover scroll

    i have a normal scroll bar now, but i can't get it to activate when text larger than the textbox is gathered. here i posted my fla (flash mx 2004) http://www.penguinpage.com/j2.fla if someone can identify the problem with "DBody" i would be very appreciative
  15. JonnyPT

    rollover scroll

    i decided to go with a normal scroll bar, but it never activates
  16. JonnyPT

    rollover scroll

    sorry i was unclear (i always forget to specify) i have a text box that is populated by information via a PHP script. the information is often longer than the box allows for, so i need it to scroll, and i couldn't figur out how to use rollover arrows. the only source i could find showed how to...
  17. JonnyPT

    rollover scroll

    i'm trying to find out how to do those standard onRollOver scroll arrows say for a textbox named mytext
  18. JonnyPT

    get from php

    i need the actionscript necessary to retrieve vars passed from php i use this.loadVariables("load.php","POST"); mydate = thisdate; // thisdate being a var passed from the php it presents "UNDEFINED" in the "mydate" textbox my php output looks like this "&thisdate=09-28-2004" WHAT AM I DOING...
  19. JonnyPT

    Macromedia detection

    SO basically i need to write a VBscript and a JavaScript and include one of them based on what browser they are using, then redirect based on the outcome of that, CONFUSING! o well, thanks for your help if anyone has done this, or has a good idea on it i would appreciate a script, otherwise i'll...
  20. JonnyPT

    can you detect if the Flash player is installed?

    I know that JavaScript can do redirects based on browsers and such, but can JavaScript or any other language for that matter do a redirect based on whether the client has Macromedia Flash installed?

Part and Inventory Search

Back
Top