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 Chris Miller 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. Rhiannon

    Need help with stopping mc at certain coordinate

    Hi Lumstar, Understand about you working on a deadline. I don't need this fixed ASAP, but my client would like to see it working soon. I've gotten pretty far along in the site it resides on though so he's happy enough and as long as he knows I'm trying to get the frelling thing working he's...
  2. Rhiannon

    Need help with stopping mc at certain coordinate

    Hi Lumstar, Yeah, I noticed that a LONG time ago. Also caught the commas after _root as well and it's still not working. This one really has me stumped. I you want to take a look at the Flash movie (actually a section of it) and see what I'm trying to do, go to...
  3. Rhiannon

    Need help with stopping mc at certain coordinate

    I've got a Flash movie that has a movie clip that scrolls from right to left. The clip contains 6 sample full page magazine covers and each one is a movie clip that contains a button. When you rollover a particular ad a screen that contains info rolls down and it's the width of two of the ads...
  4. Rhiannon

    Need help with hitTest

    I tried doing it using loadMovieNum but it just doesn't work as smoothly as I like because the magazine ads are scrolling. The rollover portion worked okay but the rollout was slopy. I used the above code to do pretty much the same thing with a navbar but am having problems revamping it...
  5. Rhiannon

    Need help with hitTest

    Hi all, Okay, I've got a movie that has magazine ads scrolling from right to left. What I want to do is when you rollover the ad a scrolls down over it, is slightly transparent, and info appears about that particular full page spread. Then upon rollout the box scrolls back up. I'm using...
  6. Rhiannon

    Resizing the Stage

    That was easy. :) Thanks Oldnewbie! You saved me a bunch of headaches. Cheers, Rhiannon
  7. Rhiannon

    Resizing the Stage

    Hi all, In Flash MX, is there a way to resize the stage so that the new area that is added is distributed evenly around the contents that are already on the stage? I have a movie and decided that I want to increase the depth of it to 600px but want to distribute the added space equally above...
  8. Rhiannon

    Redirect

    One more thing... When I start out on page 1 and click &quot;continue&quot; I get &quot;PHP Parse error: parse error, unexpected '<' in c:\Inetpub\wwwroot\leadership2003\TMP29wfxbftqm.php on line 9&quot;. Apparently the variable page_num is being passed and the condition &quot;if...
  9. Rhiannon

    Redirect

    Okay, it's not working. I've got the code written as: <?php /* Script for second page */ if ($_POST[&quot;page_num&quot;] == 1) { ... Javascripts ... <html> <head></head> <body> html stuff and php code </body> </html> } else { header(&quot;Location...
  10. Rhiannon

    Redirect

    Okay. I think I see where you're going. Basically I would have: <?php /* Script for second page */ if ($_POST[&quot;page_num&quot;] == 1) { ... Javascripts ... <html> <head></head> <body> html stuff and php code </body> </html> } else { header(&quot;Location...
  11. Rhiannon

    Redirect

    Hi Rob, Okay, bare with me... it's Friday and I'm exhausted. :) I take it this script goes at the very top of the page, correct? I'm confused about what &quot;all the normal stuff&quot; is and do I put the header in where you have &quot;redirect to page1&quot;? I'm lost. :) Rhiannon
  12. Rhiannon

    Redirect

    Okay, I'm not sure you can do this or not. I have a seven page membership application that is working fine... BUT... what is happening people are skipping pages that have required fields on them. What I want to do is if they go directly to www.mysite.com/memapp3.php instead of...
  13. Rhiannon

    Want to show only last 4 digits of credit card number

    I have a form that passes credit card information (along with other variables) down through a few pages. What I want to do is on the page where they confirm all of their info, I want to only show the last 4 digits of their credit card number. Does anyone know what the best way of doing this...
  14. Rhiannon

    Passing Variables from Forms from one page to the next

    Thanks Marklar! That worked great!! When I get a chance I'm really gonna sit down and learn this stuff so I'll know what exactly this all means. Kinda pleased though with the way it's working out. Not bad for my first project. http://www.womcom.org/Memberships/memapp1.php Appreciate all your...
  15. Rhiannon

    Emailing Variables

    This is the only way I could get variables from a form to pass down through about 7 pages: <input type=&quot;hidden&quot; name=&quot;company&quot; value=&quot;<?php echo $_POST[&quot;company&quot;] ?>&quot;> <input type=&quot;hidden&quot; name=&quot;email&quot; value=&quot;<?php echo...
  16. Rhiannon

    Passing Variables from Forms from one page to the next

    Hey guys, Have made GREAT progress. Variables are now passing from one page to the next. Finally ended up doing it like this: <input type=&quot;hidden&quot; name=&quot;company&quot; value=&quot;<?php echo $_POST[&quot;company&quot;] ?>&quot;> Used javascript to show the National Dues total...
  17. Rhiannon

    Passing Variables from Forms from one page to the next

    Hey guys... I appreciate ALL your posts and am looking forward to sorting through all of your responses and making a &quot;go&quot; of all this. However, it may be a few days after this record breaking snow storm we've had along the east coast of the US. Was able to dig out somewhat today but...
  18. Rhiannon

    Passing Variables from Forms from one page to the next

    Thanks guys. Will look into all this later. And yes, I will end up with a LOT of variables. When you get to the chapter dues page I'm looking at about 50 different chapters! Have to dig out of about 23 inches of snow! Will post later after I've had a chance to try your suggestions. Gotta work...
  19. Rhiannon

    Passing Variables from Forms from one page to the next

    Yes, when I push the variables through to page 3 they don't go through. I've thought of many different ways to do this but when they start out on page 1 and hit &quot;submit&quot; I want them to continue onto page 2 with the variables passed and so on... until you get to the confirmation page...
  20. Rhiannon

    Passing Variables from Forms from one page to the next

    Hi Rob, I entered the code like you suggested. The variable was passed to page 2 but didn't carry through to page 3. I entered it on both pages as: <?php echo '<input type=&quot;hidden&quot; name=&quot;company&quot; value=&quot;'.$company.'&quot;>'; ?> REALLY appreciate your help. Cheers, Rhi

Part and Inventory Search

Back
Top