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 TouchToneTommy 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: brutteforcce
  • Content: Threads
  • Order by date
  1. brutteforcce

    Scrollpane - jumping to line...

    I have a swf with a dynamic text as content for a scrollpane component. I want to jump to different lines of the text by pressing some buttons. I found this method scrollpane.setScrollPosition(0,100); but it doesn't seem to work. How can I do that? Please help me...
  2. brutteforcce

    Advanced scrollbar, like in Internet Explorer

    So, I want to build a scrollbar that resizes according to the amount of text from a dynamic text box. Something like the one that it is using the Internet Explorer. I found what I want on the Internet, a component called Plasmaplugs Scroll Bar, but it is a trial version and it has some...
  3. brutteforcce

    Creating a zoom area...

    I want to create a button that activates a movable zoom area that zooms the text from the area where it is dragged. How can I do that? Please help me...
  4. brutteforcce

    Scaled Text....

    If I scalled a text how can I make it like it was, with the original size of the font that it has.
  5. brutteforcce

    Pascal file limit...

    I have to assign some files in Pascal that have more than 8 characters. What can I do?
  6. brutteforcce

    Continue a program after it gets an error...

    I have a list with the names of possible files that I want to work with. If it reaches at an inexistent file the program should do something and after that it should continue to the next files from the list. I don't know how can I make it go on after it returns an error because it didn't find a...
  7. brutteforcce

    Preloader for al swf-s that willl be used

    I use a lot in my site a movie clip loader called myMCL. Every time it loads something the preloader is working. Firt I thought that it is a good idea but now I want that preloader to preload all the swf-s that I load using the movie clip loader... stop()...
  8. brutteforcce

    Moving menu...

    I made a menu that has a button called menu... When you roll over the mouse on the button menu the menu oppens, when you roll out the mouse the menu closes... If you press a button the menu must move in another position and stay there... The moving of the menu it has nothing to do with the menu...
  9. brutteforcce

    Text movie clip problem

    Now, the buttons work exactly the same like they did when I made different actions for all of them, but I still have a problem that I had since the begining... The text of the buttons is a movie clip... On roll over the text must go to the right edge of the button and stop until I take the...
  10. brutteforcce

    On release action...

    I have this code... for (i=1; i<6; i++) { this["buton"+i].onRollOver = function() { var n = this._name.substring(5); this._parent["txt_"+n].gotoAndPlay("txt_init"); this._parent["disp_"+n].gotoAndStop("disp_init"); }; this["buton"+i].onRollOut = function() {...
  11. brutteforcce

    Instance names in action scripting... Help please!!!

    How can I use a part of an instance name in action script... I have button1, button2, button3 and button4. This are the instance names for some buttons. I want to fin with the action script the number after button and to use it in the name of other instances... How can I do that? Please help...
  12. brutteforcce

    Action for button

    I made an action for the buttons of my site and now I want to generalize that action. This is the action that I used for the first button... on (rollOver) { if (release_about_us==0) { txt_about_us.gotoAndPlay("txt_init"); disp_about_us.gotoAndStop("disp_init"); } } on (rollOut) { if...
  13. brutteforcce

    Mouse XY position capture...

    I need a script that calculates all the time the XY position of the mouse on a page and can be moved over the page... --------- | x = 0 | | y = 0 | --------- It should look something like this when the pointer is at the begining of the page and it should be grabbed and put in any place on...
  14. brutteforcce

    Loadmovie - image resize

    I putted some place holders for images and I loaded the images into them using the loadmovie action, but I don't know how can I make the image to resize in the borders of the place holder... Please help me!!! PS: Please look at the "Check Box for test" thread because my problem isn't finished...
  15. brutteforcce

    Check Box for test...

    I want to make a test with check boxes... I made a model, but I don't know how to demark a marked one when I chose another one... The code is this : on (release) {gotoAndStop(20); _root.a=_root.a+1; } This is the code when it marks it... on (release) {gotoAndStop(1); _root.a=_root.a-1; }...

Part and Inventory Search

Back
Top