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 SkipVought 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. rolan18

    conflict involving menubar

    so I've determined that Flash is retarded in some senses... The problem was that the menuBar would not release the focus, so my buttons were not able to execute their on press command properly.( hence the need to double-click on the button, or to move before clicking) I resolved it by adding...
  2. rolan18

    conflict involving menubar

    where/how can I post my fla?
  3. rolan18

    conflict involving menubar

    In my applet I have a menubar with menus and some buttons... I have found that before I use the menubar my button works every time I click on it, but after I open the menu (even if I don't select anything) I can't click the button more than once. If I move the mouse before I click the button...
  4. rolan18

    using the curveTo function properly

    I've looked in the flash help for the curveTo function and it isn't very clear on what the control and anchor points are... I'm trying to draw 1/4 of a circle rotating around a single point, and so far my only problem has been in creating the curve properly. right now I have 2 lines at right...
  5. rolan18

    changing mouse cursor

    no thanks, I found out that I just needed to remember to export the movieClip for actionscript... thanks a lot!
  6. rolan18

    changing mouse cursor

    I was wondering if there was a way to change the appearance of the pointer to that of an icon. I would like to have the cursor change from the pointer to a that of a resize icon. is there any way I can do this? Thx
  7. rolan18

    rollover colors for the menubar

    I have a menubar that outlines all my options on rollOver with green. I s there a way to change this rollover color to say, red or something like that?
  8. rolan18

    making classes work

    As it happens, when you get values into functions in an .as file, if you initialize them with, this.value= value; you can refer to them using this.value throughout the entire .as file... this seems to have solved my problem, but thanks
  9. rolan18

    making classes work

    So I'm having some trouble making a call to my .as file. I use the make particle an instance of "3dobject". var particle:threeDObject = new threeDObject(ball, focal, CenterX, CenterY); and then I use particle to call a function moveParticle _root.particle.moveParticle(); moveParticle is a...
  10. rolan18

    cursor change when over a textField

    Is there a way to stop the mouse pointer from changing into a text "pointer" when it is over a text field?
  11. rolan18

    creating multiple textboxes during runtime

    thanks a lot!
  12. rolan18

    creating multiple textboxes during runtime

    I am trying to create multiple textfields during runtime using the createTextField method in my actions layer. I've tried to create them all in a loop in one movieclip, but that was only displaying one textfield, so I figured it was a problem with the movieclip... so now I'm trying to create a...
  13. rolan18

    Selectable submenu checkboxes

    I was also wanting to know if there is a way in which I can make it so that I can only select one item in a menu when it is chosen. When one item is selected and then another is selected afterwards, I would like the first item to no longer be selected. Do I have to make the menubar using the...
  14. rolan18

    Selectable submenu checkboxes

    I am looking at making submenus that create small checkmarks beside a submenu after you've selected them much like in flash under the Window menu when you select Library there is a checkmark beside it... is there a way i can do this using the addMenuItem() command, or do I have to take a...
  15. rolan18

    RGB tracing

    Is there a way to find the Red Green Blue value of a pixel on the screen, or is that only possible when in reference to objects? Because I would like to be able to decipher and change a heat map using flash if possible. Thanks
  16. rolan18

    embedding characters at run-time

    I was just wondering if you can create a text field at run-time and embed characters into that textfield. I'm trying to use the _rotation command and unless I create a textfield before run-time and embed the character sets that I'll allow into it, the text will not show up. Any ideas?
  17. rolan18

    ActionScript 2.0 scope issue

    Ok, so I have an actionscript file that is not working the way I intend it to. I'm calling a function in the actionscript file from within the actionscript file, however I have to use this.objectRef to refer to a function that should act independently of any object. I'm thinking that I might...
  18. rolan18

    possibly a bit of a no-brainer

    I'm creating a video clip of a ball that moves, and I'm doing this all with actionscript.(except for the creation of the objects) Essentially, I'm trying to pause my animation in my actionscript file by calling this function: function stopMoving():Void { this.targetMC.onEnterFrame = null...
  19. rolan18

    Component Command overridden?

    Ok, so I fixed it in a way... I just added a mouselistener onto it and put my code there and it seems to work just fine.
  20. rolan18

    Component Command overridden?

    I made a custom component that is essentially a start/stop button. The only thing that really changes is the text when it is clicked on. What I'm wondering is if I put the commands: on(press){ _root.particle.startMoving(); } on an instance of this...

Part and Inventory Search

Back
Top