Anyone know why LoadVariables doesn't like the colon char

Hey All,
First time I've run into this issue. I've created a 'Send to
Friend' e-mailing system in flash for a contest I'm designing. It
works fine only I've run into a snaffu. When a user enters a string
in the email message that contains the colon char : it stalls. I've
manually entered the email string into my php connector and it
works fine thus it has to be an issue with flash. The only reason I
found this is I tried using the movie to email a web address and it
wouldn't work. Anyone know if there's a configuration change I can
make or do I have to parse through ever char in the message and
replace the : with a specail key and then replace it back to : when
it hits php?
line of code:
loadVariables("includes/session.php?action=111&from_name=" +
this.from_name + "&from_email=" + this.from_email +
"&to_name=" + this.to_name + "&to_email=" + this.to_email +
"&my_message=" + this.my_message, this, "GET");
this.my_message --- this var cannot have a colon in it.
Rendered Line which works when I manually access the
connector page:
http://dalcestg01/tin/includes/session.php?action=111&from_name=Pete&from_email=test@test. com&to_name=Test&to_email=[email protected]&my_message=http://test.com
It will accept all the chars except the : from the message
string "
http://test.com"

public void MouseClicked(MouseEvent e) {     System.err.println("clicked");should be small m
public void mouseClicked(MouseEvent e) {     System.err.println("clicked");                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Does anyone know why HELP doesn't open in photoshop 8

    does anyone know why HELP doesn't open in photoshop ele
    ements 8?

    Welcome to our community
    This forum is for discussing issues with getting started with Adobe Captivate. You should consider visiting the link below and re-posting your question in the Photoshop forum.
    Click here to view
    Cheers... Rick

  • Ibooks author is continuously deleting pages from my book until i'm left with nothing, does anyone know why this is or have the same problem?

    ibooks author is continuously deleting pages from my book until i'm left with nothing, does anyone know why this is or have the same problem?

    What are you doing BEFORE the pages start deleting?

  • Anyone know why uploads contacts disappear from the iPhone 5? Half of my number is suddenly gone, and this happens over and over again? Kata-*******-stroff! Grateful for answers?

    IPHONE 5
    Anyone know why uploads contacts disappear from the iPhone 5?
    Half of my number is suddenly gone, and this happens over and over again?
    Kata-*******-stroff! Grateful for answers?

    do you sync your contacts with an application in your computer? or use iCloud?
    I can't tell you why the contacts disappear but you can get them back without much hassle by syncing through iTunes with your computer.
    do you regularly make backups?  if so, you can restore your iPhone using the backups and get your contacts back in your iPhone.
    It is strange that half of your contacts are gone over and over again.  Do you have Groups that are unchecked in your iPhone?  If so, the contacts in those groups will not appear in your contacts list but they are in your iPhone and be recovered by re-checking the group name.

  • Anyone know why uploads contacts disappear from the iPhone 5?

    Anyone know why uploads contacts disappear from the iPhone 5?
    Half of my number is suddenly gone, and this happens over and over again?
    Grateful for answer?
    <Edited By Host>

    do you sync your contacts with an application in your computer? or use iCloud?
    I can't tell you why the contacts disappear but you can get them back without much hassle by syncing through iTunes with your computer.
    do you regularly make backups?  if so, you can restore your iPhone using the backups and get your contacts back in your iPhone.
    It is strange that half of your contacts are gone over and over again.  Do you have Groups that are unchecked in your iPhone?  If so, the contacts in those groups will not appear in your contacts list but they are in your iPhone and be recovered by re-checking the group name.

  • Does anyone know why I don't have the full screen mode on my mainstage 2

    Does anyone know why I do not have the full screen mode on my mainstage 2??

    thanks very much!!!!

  • Does anyone know why Lion does not support the HP LaserJet CP1025nw and if there is a work around?

    Does anyone know why Lion does not support the HP LaserJet CP1025nw and if there is a work around while we wait for a dedicated driver? HP claims apple provides the drivers but I am not certain of this.

    See the following link for details from the hp.com site on using your model of printer with Lion along with a number of other FAQs :
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02915680&cc=uk&dlc=en&lc=en &os=219&product=4052972&sw_lang=
    Thanks
    AF

  • Anyone know why this doesn't work?

    Hi,
    I am trying to work with layeredPane's, and I am having a bit trouble, Here is my modified code of a java tutorial:
    package org;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    * LayeredPaneDemo.java is a 1.4 application that requires
    * images/dukeWaveRed.gif.
    public class LayeredPaneDemo extends JPanel {
        private String[] layerStrings = { "Yellow (0)", "Magenta (1)",
                                          "Cyan (2)",   "Red (3)",
                                          "Green (4)" };
        private Color[] layerColors = { Color.yellow, Color.magenta,
                                        Color.cyan,   Color.red,
                                        Color.green };
         private Label[] layeredLabels = new Label[5];
        private JLayeredPane layeredPane;
        public LayeredPaneDemo()    {
            setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
            //Create and set up the layered pane.
            layeredPane = new JLayeredPane();
            layeredPane.setPreferredSize(new Dimension(300, 310));
              for (int i = 0; i < layerStrings.length; i++) {
                layeredLabels[i] = createColoredLabel(layerStrings, layerColors[i] );
         layeredLabels[i].addMouseListener(mouseListener);
         setupLayers();
    add(layeredPane);
         private MouseListener mouseListener = new MouseAdapter() {
              public void MouseClicked(MouseEvent e) {     System.err.println("clicked");
                   Label label = (Label) e.getSource();
                   label.setUp();
                   setupLayers();
                   layeredPane.validate();
                   layeredPane.repaint();
         private void setupLayers() {
    //This is the origin of the first label added.
    Point origin = new Point(10, 20);
    //This is the offset for computing the origin for the next label.
    int offset = 35;
              //Add several overlapping, colored labels to the layered pane
    //using absolute positioning/sizing.
              for(int x=0; x< layeredLabels.length; x++) {
                   Label label = layeredLabels[x];
         if(label.up) {
    origin.y += offset;
    label.setBounds(origin.x, origin.y, 100, 100);
    layeredPane.add(label, new Integer(x));
    origin.x += offset;
                   if(label.up) {
    origin.y -= offset;
    //Create and set up a colored label.
    private Label createColoredLabel(String text, Color color) {
    Label label = new Label(text);
    label.setVerticalAlignment(JLabel.TOP);
    label.setHorizontalAlignment(JLabel.CENTER);
    label.setOpaque(true);
    label.setBackground(color);
    label.setForeground(Color.black);
    label.setBorder(BorderFactory.createLineBorder(Color.black));
    return label;
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("LayeredPaneDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    JComponent newContentPane = new LayeredPaneDemo();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
         class Label extends JLabel {
              public boolean up = false;
              public Label(String text) {
                   super(text);
              public void setUp() { up = !up; }
    for some reason the mouse listener isn't responding, and i don't know why..
    Thats only part of my problem. When the mouse listener does respond, I want to only move one of the labels in the Y direction, and then re-paint everything...
    any ideas?

    public void MouseClicked(MouseEvent e) {     System.err.println("clicked");should be small m
    public void mouseClicked(MouseEvent e) {     System.err.println("clicked");                                                                                                                                                                                                                                                                                                                                                       

  • Anyone know why i can't see the download button for itunes

    anyone can you tell me

    Hi Luna is the best,
    I apologize, I'm a bit unclear on the nature of your issue. If you are having an issue download past purchases in iTunes on your Windows machine, you may find the following article helpful:
    iTunes 11 for Windows: Download previous purchases from the iTunes Store
    http://support.apple.com/kb/PH12491
    Regards,
    - Brenden

  • Does anyone know why I can't access the Apple store on my windows laptop?

    Does any one know how to get around this problem?  I have un-installed and re-installed to no avail.  I have been in touch with Apple support and they suggested I take down my fire wall whilst I re-installed but nothing does any good.  I still can't access the store from my Windows lap top.
    Any ideas?

    Ok..  iTunes...
    Try here > Can't connect to the iTunes Store
    Try disabling your anti virus software and turn off the Firewall.
    Disable antivirus software
    Turn Windows Firewall on or off

  • Anyone know why I haven't received the 2.1 update for Droid Eris?

    I called Verizon and the said that there is no update from 1.5 to 2.1. Then they said I can't get it anymore. I have had problems for a year or more and now I am faced another problem.
    My fellow employees use AT&T iPhones....they work. My boss is tired of the delayed voice mail, freezing and rebooting and wants me to switch....Can't i just get the update to see if it fixes any of these problems?
    Verizon wants to sell me another phone after 10 years of service with them. They should just exchange the broken one that they sold me....Asurion say's I don't have insurance!
    Ok, I have vented...can I still get the update and will it resolve these problems?
    Thanks

    Google eris 2.1 ruu and you should find a link to it, doing the update this way will erase all of your apps and settings but it is the only way to get the update. The OTA version is no longer available but this will give you the official software and is the way the update is done on phones at the factory. Also, this update is done through your computer so make sure you read any instructions that are included on the site you find.

  • Hi, I am trying to update my macbooks software, but every time i restart it after the software download it cancels the updates. anyone know why it fails to make the updates?

    .

    You have to delete the corrupt back-up so iTunes can at least back-up the current data on the iPhone and then restore it. Search these forums, there a several good posts on how to delete the corrupt back-up.

  • Final cut is crushing all the time, anyone knows why and how to fix the problem?

    Apple needs to do something about it and soon. What a waste of money...i am very disappointed with FCPX.

    estherjfrompooler wrote:
    Apple needs to do something about it and soon. What a waste of money...i am very disappointed with FCPX.
    Please... you're spoiling potential media sales.
    Hopefully a patch/upgrade will be released soon, one that will help FCPX better cope with errors instead of crashing when it sees something unexpected.

  • I am tethering and Itunes help says I am not connected to the internet but I am. Does anyone know why?

    I am tethering and Itunes help says I am not connected to the internet but I am. Does anyone know why?

    This could be the connection you use, may be is your internet connection could block this sites...
    iF i'm on vpn the appstore didn't work, so this could be your problem too... is a proxy like problems.... this happend

  • I'm trying to download a free trial of InDesign but when I click the download button, nothing happens...does anyone know why? Thanks.

    I'm trying to download a free trial of InDesign but when I click the download button, nothing happens...does anyone know why? Thanks.

    Hello,
    sometimes the "opm.db file" is the culprit. In this case you should delete it.
    And if it doesn't work still after that, as much as I regret it and as strange as it may seem I fear it's a challenge for Adobe's Creative Cloud Cleaner Tool.
    Sometimes - for whatever reasons - CC doesn't "want" to work. In this case you should CC completely delete and reinstall by help of Adobe Creative Cloud Cleaner Tool. (A try to uninstall by own resources is not enough!)
    I quote: ... helps resolve installation problems for Adobe Creative Cloud and Adobe Creative Suite (CS3-CS6) applications. The tool removes installation records for prerelease installations of Creative Cloud or Creative Suite applications. It does not affect existing installations of previous versions of Creative Cloud or Creative Suite applications.
    Please use: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html   and follow the prescribed sequence of operations
    If necessary and for further questions click through http://helpx.adobe.com/contact.html or http://helpx.adobe.com/de/contact.html and if "open" please use chat, I had the best experiences.
    Good luck!
    Hans-Günter

Maybe you are looking for

  • Hide Unwanted Excise Fields in MIGO & J1IEX

    In our business process, the duties such as NCCD and SED are not required and consequently we don't want these fields to appear in MIGO and J1IEX so that users can't put any value by mistake. Can any one provide some idea what the settings required f

  • How to use a checkbox table cell in FXML

    I've figured out how to make a column in a TableView render as a checkbox rather then just text when the UI is written in Java. Now I'm trying to figure out how to do the same thing with FXML. I've tried a couple experiments which have all failed, us

  • How to download mp4 video files directly from camera to iPad mini?

    I used the Lightning Card Reader but the Mp4 video files did not transfer. Is there an APP for this?

  • Install Flashplayer error

    ANy help installing Flash player - I continually get error message to shut down Internet Explorer.  I have made adobe.com a trusted site.

  • What is the version of Labwindows CVI that includes IVI AC Power instrument

    Hello, I am looking for the version of Labwindows CVI which i should use to develop custom IVI-C driver for IVI ACPwr instrument. Please share the version of Labwindows where i can find the option to select IVI AC power instrument and create IVI-C Co