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. pixl8r

    Flash & Web Traffic

    One reasonably good way to do it is to embed your text/or key terms in a <noscript> tag in the html page that contains your flash movie. Another common way is to create a simple "no flash" alternative site that is indexable by the search engine. My experience is that Search engine...
  2. pixl8r

    form submit script not working correctly

    That is very old syntax. What version of Flash are you using? tellTarget was deprecated with Flash 5. Wow JT that almost looked like you knew what you were doing!
  3. pixl8r

    Help! Using Flash to POST HTML Data

    buttonName.onRelease = function(){ mySendVars = new LoadVars(); mySendVars.varVonageWants = inputFieldInstanceName.text; mySendVars.send("targetURL.asp","POST"); } Hope it helps. Wow JT that almost looked like you knew what you were doing!
  4. pixl8r

    calling/loading functions/sounds of child swf from parent

    You should use _global functions Or an .as file. Your created movie clips can then call the same shared functions. Hope it helps. Wow JT that almost looked like you knew what you were doing!
  5. pixl8r

    Greetings &amp; Questions

    Here's my two bits... 1. Agree with Bill. Go for Flash 8. 2. I don't know that there is a place (other than possibly floating around on the http://www.adobe.com website) that discusses the pros and cons of one version over another. 3. Slicing bitmaps would have no positive effect on the...
  6. pixl8r

    loadVars and html???

    Flash security will prevent you from pulling images in from someone elses web site. Is that what you are trying to do? Wow JT that almost looked like you knew what you were doing!
  7. pixl8r

    I want my mc to be like a button - can I do this?

    On the close button set the "varName" value to nothing. _global.varName = ""; Hope it helps. Wow JT that almost looked like you knew what you were doing!
  8. pixl8r

    I want my mc to be like a button - can I do this?

    OK... your problem was pretty simple. You were using the MC as the criteria for over, out, and press. There is nothing wrong with that until you try to place other buttons inside that same MC. The script on the overall MC was over riding the scripts contained within it. The solution is...
  9. pixl8r

    I want my mc to be like a button - can I do this?

    You have to post them on some web space that you have access to, like where ever your site is hosted... You can not upload them to Tek-tips. Wow JT that almost looked like you knew what you were doing!
  10. pixl8r

    I want my mc to be like a button - can I do this?

    Sure you can upload the files. Just place a link to them here and I will take a look. Wow JT that almost looked like you knew what you were doing!
  11. pixl8r

    I want my mc to be like a button - can I do this?

    Oh well that would be easy enough by using a variable (if I understand you correctly). Try this: on (rollOver) { if (this.varName != "active") { this.gotoAndStop(2); } } on (rollOut) { if (this.varName != "active") { this.gotoAndStop(1); } } on (press) { this.varName = "active"...
  12. pixl8r

    I want my mc to be like a button - can I do this?

    I am afraid you lost me. Can you be a bit more clear on how your movie is built? You have code on the main timeline? Wow JT that almost looked like you knew what you were doing!
  13. pixl8r

    I want my mc to be like a button - can I do this?

    Use an invisible button in your MC to trigger your events. To create an invisible button create a new button (in the library) and draw a rectangle (square, etc..) in the "Hit" section only of the button. You will know you have it right if it appears (cyan) on the screen when added to the...
  14. pixl8r

    Variable, dynamic text box, external movie

    If you are using a reference in the movie like _root.variableName = "whatever" then you will have problems when loading into another movie. So once again I ask how you are loading the movie into the other flash project (it matters so you can be sure that you are referencing the variables...
  15. pixl8r

    _roots and _levels in external swfs

    Use something relative like _parent. Hope it helps. Wow JT that almost looked like you knew what you were doing!
  16. pixl8r

    Variable, dynamic text box, external movie

    Most likely it's a reference problem. How are you loading the offending movie into the other Flash file? Wow JT that almost looked like you knew what you were doing!
  17. pixl8r

    a little help with input tf's &amp; rendering as html

    _root.mytext.htmlText = textstring; Hope it helps. Wow JT that almost looked like you knew what you were doing!
  18. pixl8r

    problems with loadVariablesNum

    Inside the MC with the text box add this: textBoxName.text = _level0.varName; hope it helps. Wow JT that almost looked like you knew what you were doing!
  19. pixl8r

    Passing a variable from Flash into an ASP.net MultiView, how?

    Then in your case you would pass "3" instead of "b2". Wow JT that almost looked like you knew what you were doing!
  20. pixl8r

    Passing a variable from Flash into an ASP.net MultiView, how?

    I should have mentioned that. The view has to be active for the javascript to work. My code requires you to pass the variable for the number (I assume you are doing this). In no case will this code work if the view is not active. Fact is a view is not rendered (in HTML) at all if it isn't...

Part and Inventory Search

Back
Top