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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JonnyPT

  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

Part and Inventory Search

Back
Top