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 bkrike 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 fiuPikeOY

  1. fiuPikeOY

    need to display the user's resolution on the screen

    Thanks for your post. Don't I need a variable or something inside that TD? thanks
  2. fiuPikeOY

    need to display the user's resolution on the screen

    Hello, I have a function that determines the user's resolution onLoad(). But I don't know how to display it on the screen in a TD. Can someone help me? The function is below. Thank you <script LANGUAGE="JavaScript"> <!-- Hide JavaScript from old browsers function my_resolution() { if...
  3. fiuPikeOY

    pictures are poping up in an existing window...

    Hello, I have a page with a series of thumnails. Each is supposed to launch a pop up with that picture but larger. The problem is that the first one works fine, but when you click on any other thumbnail, the picture is loaded on the pre-existing pop-up which is now behind the main page, and...
  4. fiuPikeOY

    numbering a double sided document

    Hello, I'm printing a document in a double sided format, and these pages are numbered. Is there a way that the numbering doesn't take into account the blank pages. How can I do that? Thank you
  5. fiuPikeOY

    looking for ideas to show subtitles while sound is playing

    Hello, Does anybody have any ideas on how to show subtitles while a narrator's sound is played. reading the text dynamically from a text field or something. I only have space to display about 2 lines at a time. Any ideas? Thank you
  6. fiuPikeOY

    need to make an equation into a variable

    Actually, I solved the problem by using a 2-dimensional array. Bill, remember that it's reading from an array so you would need the [] there somewhere right? Thanks to both.
  7. fiuPikeOY

    need to make an equation into a variable

    Hello, I have several arrays that are like this... ch1sounds['test1.mp3', 'test2.mp3'...] ch2sounds['test1.mp3', 'test2.mp3'...] ch3sounds['test1.mp3', 'test2.mp3'...] and I have the following expression to get the correct sound file to play soundToLoad = "ch" + chapter+ "sounds[" + i + "]"...
  8. fiuPikeOY

    open new browser at position 0,0

    Actually, I thought that was working but it's not. Here's my code <a href="#" onclick="MM_openBrWindow('indexFlash.htm','','width=1020,height=700', 'left=0,top=0' )">Tutorial</a> Is there anything wrong here? Thanks
  9. fiuPikeOY

    open new browser at position 0,0

    thank you Dan, that did it.
  10. fiuPikeOY

    open new browser at position 0,0

    Hello, I have a pop that unless it's launched in position 0, 0 you can't see the whole thing. Can some one tell me how I can give the new pop up window an absolute location? Thanks
  11. fiuPikeOY

    making a variable a frameLabel inside a gotoAndPlay()

    that is correct... And I just solved the problem by changing the label to L1, L2, L3... then, after step = step + 1, I added frameToGo = "L" + step gotoAndPlay(frameToGo) That solved the problem. Like always, you led me to the solution. Thanks a million.
  12. fiuPikeOY

    making a variable a frameLabel inside a gotoAndPlay()

    The thing is that the navigation increments when the user clicks next. So when the user clicks next, steps = step + 1, and if you were on step 2, now it should take you to the frame labeled 3. Does this make sense? Can I still use a number? Thanks
  13. fiuPikeOY

    making a variable a frameLabel inside a gotoAndPlay()

    Hello, what is the syntax for gotoAndPlay(frameLabel) if frameLabel is a variable. See my labels are numbers, so when frameLabel is 3, I need it to go to the frame labeled 3, and not frame #3. Make sense? How can I do this? Thanks
  14. fiuPikeOY

    looking for the best way to implement a Next / Previous navigation

    Oh man....I think I found the problem. right now I have _level10.gotoAndPlay(_level0.step), which is understanding to go to frame number _level0.step, but I need it to go to frame Label _level0.step. What's the syntax for this. Translating a variable as a frame label. Thanks
  15. fiuPikeOY

    Need to know how to read news from a public news feed

    Hello, Does anybody know how news websites post the news dynamically on their site. I know there are several public news feeds that they read and convert to html using XML, but that's is as much as I know. Does anybody know where I can find a tutorial on how to do this. Thanks in advance

Part and Inventory Search

Back
Top