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 IamaSherpa 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: Sammybobo
  • Order by date
  1. Sammybobo

    Rich Text: Combining multiple RTF text into One

    I need to have multiple rich text boxes on one form and combine them together as one large RTF box in another form (or pageframe). When I tried to combine them only the first referenced text shows. Is there a way to do this and will the solution work even when each of the text boxes are...
  2. Sammybobo

    Prevent double space from On-Screen Keyboard

    Quite thoughtful! Thanks a bunch.
  3. Sammybobo

    Prevent double space from On-Screen Keyboard

    Yes. Thanks, Bill. I'll give it a swing.
  4. Sammybobo

    Prevent double space from On-Screen Keyboard

    Thanks very much gentlemen, for your help. Bill, "my_text.text += chr(Key.getAscii());" seems to be the same for both IF and ELSE. Would that be the case if I am trying to exclude SPACE after the first occurence? Thanks again.
  5. Sammybobo

    Prevent double space from On-Screen Keyboard

    I am making a screen keyboard with a textfield that captures and writes the equivalent of the pressed key. I do not want the space or " " to be captured in the textfield more than once. How could I do this? Thanks.
  6. Sammybobo

    DATE COMPARE FROM XML REVISITED

    Thanks Kenneth for the help.
  7. Sammybobo

    DATE COMPARE FROM XML REVISITED

    Hi: I am having the same problem as the one in thread250-791975. There was no answer posted then and I wonder if someone could give me a quick help. I am extracting a date from an XML node in the form of: 2004,7,29. When I tried to convert it to date using the format below I get an "Invalid...
  8. Sammybobo

    Assigning variables from external text file

    Thanks, Oldnewbie. Can you show how to do it?
  9. Sammybobo

    Assigning variables from external text file

    Thanks Okiiyama. The link deals with loading external text into a textfield. I am asking about loading the value of external text into a variable without the use of a textfield.
  10. Sammybobo

    Illogical loading order with XML

    Wangbar, thanks so much. You are correct. I discovered the same explanation from the ActionScript Bible last night and decided to structure my coding as you explained. God bless you.
  11. Sammybobo

    Assigning variables from external text file

    Is there a way to load values from an external text file directly into a global variable rather than into a textfield on the stage?
  12. Sammybobo

    Illogical loading order with XML

    Please help! I cant understand the logic behind this. I have two XML files, Myxml1 and Myxml2, that I am loading into the first frame of my movie. Myxml1 contains an attribute with a date value that I need to extract to call up the appropriate node’s attribute in Myxml2. I need to manipulate the...
  13. Sammybobo

    Problem Character in XML Node

    Kenneth, thanks for coming to the rescue!
  14. Sammybobo

    Problem Character in XML Node

    I've set up an XML with UTF-8 encoding to be used in Flash. The XML is set up with attributes. I am having problem with any attributes that need to have a quotation mark or an ampersand--like these: <item desc=""Gone with the Wind"" /> <item comb="1 & 3"/> What is the format for displaying...
  15. Sammybobo

    Navigating through long text and Picture files

    I have a some documents that have been broken into pages which I would like to navigate like it is on this page: http://www.ultrashock.com/ff.htm?http://ultrashock.com/goodies/ and would also want to print the pages separately. How could I accomplish this? Thanks.
  16. Sammybobo

    XML Problem: Accessing the Right Node & Attributes Text

    Thanks much for your help, Kenneth. I'll give it a spin!
  17. Sammybobo

    XML Problem: Accessing the Right Node & Attributes Text

    I am working in flash 8 and using an xml file that looks like this: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <lessons> <lesson no="1" book="1" title="The Tree" ref="Chapter 1" /> <lesson no="2" book="1" title="House" ref="Chapter 2" /> <lesson no="3" book="1"...
  18. Sammybobo

    Referencing XML node as variables

    Thanks, Wangbar. Your help is appreciated. I have dynamic textfileds in my movie that correspond to the elements of the book node. Now, if I want to load the contents of the node having "2" as the "no" attribute, could you show me the steps to accomplish that? Also, for an equal amount of text...
  19. Sammybobo

    Referencing XML node as variables

    I am using the Flash Actionscript object XML like this: getxmldata=new XML(); getxmldata.load("mybooks.xml",""); Did I get you right? Thanks.

Part and Inventory Search

Back
Top