Sharing Video - BBM or Text must be addressed

Long time user.  Very happy with the new phone and software.
I would like to make a suggestion.  As a loyal BB user and fan, I get frustrated when another device can do something my BB cannot....something that makes sense and is needed (I don't care about the add ones and APS I'll never use as a 'BB' client) 
Sharing Video sucks on the BB, always has and must be addressed.  The new camera is great, but unless my wife takes a very very very very short video of the kids, she must upload it to you tube in order to share it.....she should be able to BBM/text me the video.
I hope some BB users agree, I'd like to keep my wife in a blackberry (she's always had one also and loves the Keyboard, upgrade to Q10, doesn't use it for business at all)  I'm a shareholder and a fan of the product....but not being able to share video with the push of a button (we don't use You Tube, don't care too) is a good reason for my wife to have an I PHONE......the last thing I want my BB to make me is frustrated and having to upload video to the internet to share it........FRUSTRATING!  Sort it out. 
The new device does a good job fulfilling the needs of business users (loyal BB users) and has built a platform that fulfills important wants of the current smart phone user (many old and current BB users).  
Little things like video sharing make a huge difference for the avg smart phone user, the stay at home moms, the non business users, students etc...

Seriously Csherer
If you would have taken a moment to read the terms and conditions when you signed up for the forum you would have read that this is a "peer to peer community" where users help other users. BB rarely comment in threads on this forum. This is written at the very top of EVERY page of this forum. Scroll up and you'll see.
If you want official customer support you need to contact your carrier and ask to be escalated to BB Support.
If "BB sucks at transferring or receiving videos, always have" then why did you buy one? There are lots of solutions to your problem but you refuse to use any of them. Not much anyone can do for you. What sucks is I wasted time out of my day to reply here with the intent of helping you.
With an attitude like yours toward other users I doubt you'll find much help on this or any Internet forum.
Thank you and have a nice day.
John
1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

Similar Messages

  • Voting poll using PHP & MySQL TypeError: Error #2007: Parameter text must be non-null.

    I am getting this back:
    TypeError: Error #2007: Parameter text must be non-null.
    at flash.text::TextField/set text()
    at AS3_Flash_Poll_PHP_MySQL_fla::WholePoll_1/completeHandler()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()
    PHP code:
    <?php
    // ---------------------------------------- Section 1 -----------------------------------------------
    //  IMPORTANT!!!! Connect to MySQL database here(put your connection data here)
    mysql_connect("ginaty05.fatcowmysql.com","fall2010","@regina") or die (mysql_error());
    mysql_select_db("poll_2010") or die (mysql_error());
    // When Flash requests the totals initially we run this code
    if ($_POST['myRequest'] == "load_numbers") {
    // Query the totals from the database
        $sql1 = mysql_query("SELECT id FROM votingPoll WHERE choice='1'");
        $choice1Count = mysql_num_rows($sql1);
        $sql2 = mysql_query("SELECT id FROM votingPoll WHERE choice='2'");
        $choice2Count = mysql_num_rows($sql2);
        $sql3 = mysql_query("SELECT id FROM votingPoll WHERE choice='3'");
        $choice3Count = mysql_num_rows($sql3);
        echo "choice1Count=$choice1Count";
        echo "&choice2Count=$choice2Count";
        echo "&choice3Count=$choice3Count";
    // ---------------------------------------- Section 2 -----------------------------------------------
    // IF POSTING A USER'S CHOICE
    if ($_POST['myRequest'] == "store_choice") {
        //Obtain user IP address
        $ip = $_SERVER['REMOTE_ADDR'];
        // Create local variable from the Flash ActionScript posted variable
        $userChoice = $_POST['userChoice'];
        $sql = mysql_query("SELECT id FROM votingPoll WHERE ipaddress='$ip'");
        $rowCount = mysql_num_rows($sql);
        if ($rowCount == 1) {
    $my_msg = "You have already voted in this poll.";
    print "return_msg=$my_msg";
        } else {
    $sql_insert = mysql_query("INSERT INTO votingPoll (choice, ipaddress) VALUES('$userChoice','$ip')")  or die (mysql_error());
    $sql1 = mysql_query("SELECT * FROM votingPoll WHERE choice='1'");
    $choice1Count = mysql_num_rows($sql1);
    $sql2 = mysql_query("SELECT * FROM votingPoll WHERE choice='2'");
    $choice2Count = mysql_num_rows($sql2);
    $sql3 = mysql_query("SELECT * FROM votingPoll WHERE choice='3'");
    $choice3Count = mysql_num_rows($sql3);
    $my_msg = "Thanks for voting!";
            echo "return_msg=$my_msg";
            echo "&choice1Count=$choice1Count";
    echo "&choice2Count=$choice2Count";
    echo "&choice3Count=$choice3Count";
    ?>
    AS3 code:
    stop(); // Stop the timeline since it does not need to travel for this to run
    // Assign a variable name for our URLVariables object
    var variables1:URLVariables = new URLVariables();
    //  Build the varSend variable
    var varSend1:URLRequest = new URLRequest("parse_my_poll.php");
    varSend1.method = URLRequestMethod.POST;
    varSend1.data = variables1;
    // Build the varLoader variable
    var varLoader1:URLLoader = new URLLoader;
    varLoader1.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader1.addEventListener(Event.COMPLETE, completeHandler1);
    // Set variable to send to PHP here for the varloader below
    variables1.myRequest = "load_numbers";  
    // Send data to php file now, and wait for response using the COMPLETE event
    varLoader1.load(varSend1);
    function completeHandler1(event:Event):void{
        count1_txt.text = "" + event.target.data.choice1Count;
        count2_txt.text = "" + event.target.data.choice2Count;
        count3_txt.text = "" + event.target.data.choice3Count;
    // hide the little processing movieclip
    processing_mc.visible = false;
    // Initialize the choiceNum variable that we will use below
    var choiceNum:Number = 0;
    // Set text formatting colors for errors and success messages
    var errorsFormat:TextFormat = new TextFormat();
    errorsFormat.color = 0xFF0000; // bright red
    var successFormat:TextFormat = new TextFormat();
    successFormat.color = 0x00FF00; // bright green
    // Button Click Functions
    function btn1Click(event:MouseEvent):void{
        choiceNum = 1;
        choice_txt.text = choice1_txt.text;
    function btn2Click(event:MouseEvent):void{
        choiceNum = 2;
        choice_txt.text = choice2_txt.text;
    function btn3Click(event:MouseEvent):void{
        choiceNum = 3;
        choice_txt.text = choice3_txt.text;
    // Button Click Listeners
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    btn2.addEventListener(MouseEvent.CLICK, btn2Click);
    btn3.addEventListener(MouseEvent.CLICK, btn3Click);
    // Assign a variable name for our URLVariables object
    var variables:URLVariables = new URLVariables();
    //  Build the varSend variable
    var varSend:URLRequest = new URLRequest("parse_my_poll.php");
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    // Build the varLoader variable
    var varLoader:URLLoader = new URLLoader;
    varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader.addEventListener(Event.COMPLETE, completeHandler);
    // Handler for PHP script completion and return
    function completeHandler(event:Event):void{
        // remove processing movieclip
        processing_mc.visible = false;
        // Clear the form fields
        choice_txt.text = "";
        choiceNum = 0;
        // Load the response from the PHP file
        status_txt.text = event.target.data.return_msg;
        status_txt.setTextFormat(errorsFormat);
        if (event.target.data.return_msg == "Thanks for voting!") {
            // Reload new values into the count texts only if we get a proper response and new values
            status_txt.setTextFormat(successFormat);
            count1_txt.text = "" + event.target.data.choice1Count;
            count2_txt.text = "" + event.target.data.choice2Count;
            count3_txt.text = "" + event.target.data.choice3Count;
    // Add an event listener for the submit button and what function to run
    vote_btn.addEventListener(MouseEvent.CLICK, ValidateAndSend);
    // Validate form fields and send the variables when submit button is clicked
    function ValidateAndSend(event:MouseEvent):void {
        //validate form fields
        if(!choice_txt.length) {  
            // if they forgot to choose before pressing the vote button
            status_txt.text = "Please choose before you press vote.";  
            status_txt.setTextFormat(errorsFormat);
        } else {
            status_txt.text = "Sending...";
            processing_mc.visible = true;
            // Ready the variables for sending
            variables.userChoice = choiceNum;
            variables.myRequest = "store_choice";  
            // Send the data to the php file
            varLoader.load(varSend);
        } // close else after form validation
    } // Close ValidateAndSend function ////////////////////////

    This error means that you are trying to set the text field but there is no data in the variable. As a first step, try to identify where this is happening, eg Is it the first call, or once you have submitted your data or only if you try to submit data second time?
    Trace out the data that is returned for both completeHandlers to see if there is a missing var. Try this for "load_numbers" and "store_choice". Do it twice for "store_choice". Do you get back what you expected?
    You could also try altering the php to return some fixed dummy variables, eg  choice1Count=11&choice2Count=22&choice3Count=33, etc. If this works then you know that the error is in the PHP.
    It looks to me like the issue is when you submit the data a second time and just get back the return_msg - the handler then tries to assign the choice1Count etc but doesn't have any count data back from the poll.php.
    Test that there is data before assigning it, eg
        if(event.target.data.choice1Count){
            count1_txt.text =  event.target.data.choice1Count;
            count2_txt.text =  event.target.data.choice2Count;
            count3_txt.text =  event.target.data.choice3Count;

  • ActionScript 3 + PHP: TypeError: Error #2007: Parameter text must be non-null.

    Hi - Still new to flash as3 and php -
    it is a contact form page - user puts in information - i am to receive it in an email address their information
    as well the variables get sent back from the php to the .swf file.
    I am receiving these errors and not knowing how to fix them.
    any help would be much appreciated. thank you in advance really.
    below are the errors in flash - as3 code - and php code setup.
    errors:
    ActionScript 3 + PHP: TypeError: Error #2007: Parameter text must be non-null:
      at flash.text::TextField/set text()
              at kwangjaekim_fla::wholeform_16/completeHandler()
              at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    my as3 code is the following:
    // build variable name for the URL Variables loader
    var variables:URLVariables = new URLVariables();
    //Build the varSend variable
    var varSend:URLRequest = new URLRequest("contact_parse.php");
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    //Build the varLoader variable
    var varLoader:URLLoader = new URLLoader;
    varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader.addEventListener(Event.COMPLETE, completeHandler);
    //handler for the PHP  script completion and return of status
    function completeHandler(event:Event):void{
              //value is cleared at ""
              name_txt.text = "";
              contact_txt.text = "";
              msg_txt.text = "";
              //Load the response PHP here
              status_txt.text = event.target.data.return_msg;
    //Add event listener for submit button click
    submit_btn.addEventListener(MouseEvent.CLICK, ValidateAndSend);
    //function ValidateAndSend
    function ValidateAndSend(event:MouseEvent):void{
              //validate fields
              if(!name_txt.length){
                        status_txt.text = "Please Enter Your Name";
              }else if(!contact_txt.length){
                        status_txt.text = "Please Enter Your Contact Detail";
              }else if(!msg_txt.length){
                        status_txt.text = "Please Enter Your Message";
              }else {
              // ready the variables in form for sending
      variables.userName = name_txt.text;
              variables.userContact = contact_txt.text;
              variables.userMsg = msg_txt.text;
              // Send the data to PHP now
    varLoader.load(varSend);
    submit_btn.addEventListener(MouseEvent.CLICK, function(){MovieClip(parent).gotoAndPlay(151)});
              } // Close else condition for error handling
    } // Close validate and send function
    my php code is the following:
    <?php
    // Create local PHP variables from the info the user gave in the Flash form
    $senderName   = $_POST['userName'];
    $senderEmail     = $_POST['userContact'];
    $senderMessage = $_POST['userMsg'];
    // Strip slashes on the Local variables
    $senderName   = stripslashes($senderName);
    $senderContact     = stripslashes($senderContact);
    $senderMessage   = stripslashes($senderMessage);
    //!!!!!!!!!!!!!!!!!!!!!!!!!     change this to my email address     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
                              $to = "put iny me email address";
         // Place sender Email address here
        $from = "$senderContact ";
        $subject = "Contact from your site";
        //Begin HTML Email Message
        $message = <<<EOF
    <html>
      <body bgcolor="#FFFFFF">
    <b>Name</b> = $senderName<br /><br />
    <b>Contact</b> = <a href="mailto:$senderContact">$senderEmail</a><br /><br />
    <b>Message</b> = $senderMessage<br />
      </body>
    </html>
    EOF;
       //end of message
        $headers  = "From: $from\r\n";
        $headers .= "Content-type: text/html\r\n";
        $to = "$to";
        mail($to, $subject, $message, $headers);
    exit();
    ?>
    thank you once again
    jay

    thank you Ned -
    i put in the trace line as you mentioned -
    and this is what i received -
    returns: undefined
    TypeError: Error #2007: Parameter text must be non-null
              at flash.text::TextField/set text()
              at kwangjaekim_fla::wholeform_16/completeHandler()
              at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    what does this mean exactly?
    thank you for the help really

  • TypeError: Error #2007: Parameter text must be non-null

    I am new to AS period, but I am following some training videos for AS 3.0 to create a portfolio site where the images and text are loaded by xml.
    I have followed the instructions to the letter; however I am getting the #2007 Parameter text must be not-null error.
    I have pasted my code below:
    var titleArray:Array = new Array();
    var descriptionArray:Array = new Array();
    var largeImageArray:Array = new Array();
    var thumbnailImageArray:Array = new Array();
    var imageNum:Number=0;
    var totalImages:Number;
    //XML
    //load in XML
    var XMLURLLoader:URLLoader = new URLLoader();
    XMLURLLoader.load(new URLRequest("assets/portfolio/portfolio.xml"));
    XMLURLLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(event:Event):void {
    var theXMLData:XML=new XML(XMLURLLoader.data);
    totalImages=theXMLData.title.length();
    for (var i:Number = 0; i < totalImages; i++) {
    titleArray.push(theXMLData.title[i]);
    descriptionArray.push(theXMLData.description[i]);
    largeImageArray.push(theXMLData.largeImage[i]);
    thumbnailImageArray.push(theXMLData.thumbImage[i]);
    loadThumbnail();
    myScrollPane.source=allThumbnails;
    //LOAD THE THUMBNAILS
    function loadThumbnail():void {
    trace(imageNum);
    var thumbLoader:Loader = new Loader();
    thumbLoader.load(new URLRequest(thumbnailImageArray[imageNum]));
    thumbLoader.x = 90*imageNum;
    //stores the appropriate info for thumbnail
    var thisLargeImage:String = largeImageArray[imageNum];
    var thisTitle:String = titleArray[imageNum];
    var thisDescription:String = descriptionArray[imageNum];
    thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    function thumbLoaded(event:Event):void {
    //add the thumbnails to the allThumbnails instance
    allThumbnails.addChild(thumbLoader);
    allThumbnails.buttonMode = true;
    myScrollPane.update();
    thumbLoader.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source=thisLargeImage;
    selectedTitle.text=thisTitle;
    selectedDesc.text=thisDescription;
    //add to imageNum (1);
    imageNum++;
    if (imageNum<totalImages) {
    loadThumbnail();
    I know my error has something to do with this part of the code:
    //stores the appropriate info for thumbnail
    var thisLargeImage:String = largeImageArray[imageNum];
    var thisTitle:String = titleArray[imageNum];
    var thisDescription:String = descriptionArray[imageNum];
    but I can't figure out what's wrong. When I test my movie, everything functions correctly except when I click on a different thumbnail, the proper description does not load. My xml file is set up correctly. Here is a bit of that code:
    <?xml version="1.0" encoding="UTF-8"?>
    <portfolio>
    <!--Image 1-->
    <title>Spark Your Imagination Ad</title>
    <![CDATA[<description>These black & white ads were designed to run in the trade publication The Green Sheet in the Merchant Acquiring Industry</description>]]>
    <largeImage>assets/portfolio/lg/1.jpg</largeImage>
    <thumbImage>assets/portfolio/thumbs/1.jpg</thumbImage>
    <!--Image 2-->
    <title>Corporate Business Card - iMax Bancard</title>
    <![CDATA[<description>This full color double-sided business card is the current standard card being used by employees and agents of iMax Bancard</description>]]>
    <largeImage>assets/portfolio/lg/2.jpg</largeImage>
    <thumbImage>assets/portfolio/thumbs/2.jpg</thumbImage>
    </portfolio>
    The only thing different with my xml code is that in the tutorial I am following, the <description></description> tags are on the outside of the CDATA tags (which I have seen examples of both)... but when I put the code that way, it causes breaks in my code at the first special character I use.
    Any help is appreciated. Thanks, Jen

    click file/publish settings/flash and tick "permit debugging".  retest.  the line number with the non-existant object will be in the error message.

  • Somebody knows what effect was used in this video on the text?

    somebody knows what effect was used in this video on the text?
    im talking about this "extreme drop shadow" he was using please help me i must have it for a project.
    thanks to anyone who can help me.
    Crown the Empire - Initiation - YouTube

    Search Google for "After Effects long shadow" or "After Effects Retro Shadow".
    Or spend a few dollars and buy this:
    http://videohive.net/item/the-ultimate-long-shadow-toolkit/6657312?ref=amigoproductions

  • HT1600 how do i move a purchased film in itunes to shared video so i can see it on apple tv

    how do i move a purchased film in itunes to shared videos so it links into apple tv

    Well, it really depends on the file format your friends are using to send you the video. iTunes will only play certain formats, think of it as........having a car that only takes premium gasoline. If your friends give you a million gallons of regular gasoline, sure it's gasoline, but it won't work in your car. (That's a bad analogy but it's the best I can come up with).
    So, if you open up your mail (are you using the Mail program on your computer, or going to a website such as gmail.com or yahoo.com to access your mail?), you should be able to right click the video and select to download it.
    This should download it to your "downloads" folder, it should be on your dock if you didn't remove it. Click it, and select the "More in finder" button at the very top of the "stack".  If not, click the "Finder" button on your dock, and on the left click the Downloads tab.
    Now, you must find the video. It should have the name of the video with the extension (an example would be...... firstbirthday.mp4). The extension is the ".mp4" part. Yours may be .mov, .mp4, .mkv, .avi, the list goes on and on, but it's very important.
    You can try dragging the movie into iTunes (drag it anywhere over where it says Music, Movies, TV Shows, etc.) and it should hopefully turn to a little green bubble with +1. If the extension is not compatible, then, converting will be needed and that's a bit more tricky. It's also a little more tricky to get them to play on your Apple TV unless you use AirPlay.
    Let us first know what extension these videos are in and we can go from there.

  • The ios 7 does not play Shared video

    the ios 7 does not play Shared video why?

    I have the same problem.  Shared video not accessible after iOS 7 upgrade.  Apple please address this.

  • IPad times out when trying to play shared video (solution)

    Problem description: This problem has plagued me for months.  I have a series of home videos and purchased movies on my Mac that I had home shared with my other Apple devices using iTunes 11.  Sometimes everything would work smoothly, but some other times one or more devices would refuse to play videos.  Over the last few days, both my iPads had refused to play any home shared videos ("The request timed out." would pop after a long wait).  On the other hand, my Apple TV and iPhone would play these nicely.  Also, all music shared via home sharing would play on all devices. 
    Cause identified: I am using a BELKIN Wireless Dual-Band N+ Router.  I had it set up with the same SSID for both the 2.4GHz and the 5GHz bands in the hope that my streaming devices would automatically choose the highest performing configuration.  It turns out they did not.  While troubleshooting the time out issue, I configured the two wireless bands with separate SSID's which allowed me to observe that both iPads had trouble using the 5 GHz band (N mode only).  I could not even get them to validate the pre-shared keys on this band.  When switching all devices to the 2.4 GHz band (B+G+N mode), boom! everything started working nicely!  The iPads seem to have an issue with the N WiFi mode on the 5 GHz band. 
    Solution: If using a dual band wireless router, try each band separately with unique SSID's/pre-shared keys.  Choose the best performing one, and make sure your devices "forget" any wireless configuration that seems to be causing trouble so they won't later on decide to switch back to them. 

    You need to set the band on the wireless router.  Depending on your router model, do that either from your browser, or using the software that came on a CD-ROM. 
    To use your browser, you need to enter the router's IP address, usually http://192.168.2.1/.   This may me different for different router manufacturers.  Check the WiFi settings once you are able to log on.  The browser-based interface may require an admin password.  In most cases the default password is blank, but, again, different manufacturers use different defaults.  It is best to use a computer that is hard wired to the router using an ethernet cable.  That way the wireless changes will not affect your connection to the router.
    Once the band is set in the router, your iPad or AppleTV should be able to detect your wireless network.  Once you change the band, the devices may ask you for your wireless password again. 

  • Shared Video Memory Configuration?

    I have a laptop Lenovo B490 5935-6014, Intel Core i3 3110m, 4GB RAM, Intel HD Graphics 4000, using Windows 7 Ultimate 64bit.
    How to adjust shared video memory? I think shared video memory is too large (1696MB).
    I tried going to BIOS setup and I saw nothing about that...
    Can you help me??? 
    Sorry for my poor English 
    Thanks.

    hi AnonymousK,
    Welcome to the Forums.
    When you check system properties, are you getting a Total Memory: 4GB (2328GB Usable) or similar? 
    - if this is your case, the problem might lie on the system's BIOS. By default, the system automatically allocates all the physical RAM that it could use but if you have integrated graphics, this BIOS automatically share and allocate some of the RAM to the GPU to improve its performance.
    - If you don't have a memory remmaping feature in the BIOS that controls how much RAM is allocated to the GPU, this is most likely a limitation of the system.
    Another thing is the Physical Address Extension (PAE) that the OS uses to utilize system memory. Since you're using a 64bit version of Windows, this feature is already enabled. In some cases, you need to use a PAE Patch to correct the total memory reported above.
    Best regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • What is my best option for a family plan. We have 1 smartphone that uses very little data a usually wifi is avaiable and 3 basic phones. Currently we have 700 shared minutes and unlimited texting. And 30 data. I don't think he needs that much as wifi is e

    What is the best family plan option. Currently have one smart phone with 30gb of data and 3 basic phones. Also have home phone for $20/month. Current plan is 700 shared minutes and unlimited texting. My bill is close to $200/month, looking to lower if possible.

    On a tablet- pse forgive typos....
    Great Advice given earlier by SuzyQ   - I believe the question not asked of you is ---what do you want to pay for the services that you need.  I think that it would narrow the groups suggestions if you could narrow your needs.
    For example: I need talk and text on 4 phones and some data say, 2 Gig, on only one of the phones. what plan is the best cost for me? You may also need to ask what the cost may be to switch to a different plan. I suspect that there will be no cost within Verizon-but ask anyway.
    I do not think that you can have a smart phone on any Verizon plan unless you agree to buy data for that phone. Also, you said that wifi is often available-however, I do not believe that Verizon allows talking over wifi without consuming airtime minutes-only data over wifi avoids your allowance to be impacted.
    As most here already know, several other service providers offer wifi-friendly service (talk/text/data) that will provide  home/business/restaurant service without impacting your allowance- just not here.
    After getting some suggestions here, call 611 and confirm availibility and price.    
    Best of luck in your research.

  • As3 TypeError:#2007 Parameter text must be non-null can't fix.

    I have comment box project. As3+php based project.And have #2007 Error.Try to fix but can't do anything.If can help it would be very helpful.Error part like this:
    TypeError: Error #2007: Parameter text must be non-null. at flash.text::TextField/set text() at comment2_fla::mc_1/completeHandler() at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at flash.net::URLLoader/onComplete()
    First Part of Code:
    var variables_re:URLVariables = new URLVariables();
    var varSend_re:URLRequest = new URLRequest("guestbookParse.php");
    varSend_re.method = URLRequestMethod.POST;
    varSend_re.data = variables_re;
    var varLoader_re:URLLoader = new URLLoader;
    varLoader_re.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader_re.addEventListener(Event.COMPLETE,completeHandler_re);
    function completeHandler_re(event:Event):void{
              if(event.target.data.returnBody==""){
                 gbOutput_txt.text = "no data";
                 } else {
                           gbOutput_txt.condenseWhite = true;
                           gbOutput_txt.htmlText = "" + event.target.data.returnBody;
    variables_re.comType = "requestEntries";
    varLoader_re.load(varSend_re);
    Second Part of Code:
    msg_txt.restrict = "ığüşöç A-Za-z 0-9";
    name_txt.restrict = "ığüşöç A-Za-z 0-9";
    var errorsFormat:TextFormat = new TextFormat();
    errorsFormat.color = 0XFF0000;
    processing_mc.visible = false;
    var variables:URLVariables = new URLVariables();
    var varSend:URLRequest = new URLRequest("guestbookParse.php");
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    var varLoader:URLLoader = new URLLoader;
    varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    varLoader.addEventListener(Event.COMPLETE,completeHandler);
    function completeHandler(event:Event):void{
              processing_mc.visible = false;
              name_txt.text = "";
              msg_txt.text = "";
              status_txt.text = event.target.data.return_msg;
              gbOutput_txt.condenseWhite = true;
              gbOutput_txt.htmlText=""+event.target.data.returnBody;
    submit_btn.addEventListener(MouseEvent.CLICK,ValidateAndSend);
    function ValidateAndSend(event:MouseEvent):void{
              if(!name_txt.length){
                        status_txt.text = "İsminizi Girin";
                        status_txt.setTextFormat(errorsFormat);
              } else if (!msg_txt.length){
                        status_txt.text = "Yorum Girin";
                        status_txt.setTextFormat(errorsFormat);
              }else{
                        processing_mc.visible = true;
                        variables.comType = "parseComment";
                        variables.userName = name_txt.text;
                        variables.userMsg = msg_txt.text;
                        varLoader.load(varSend);
                        status_txt.text = "Yorumunuz Eklendi...";
    Php Part:
    <?php
    mysql_connect("localhost","root","") or die (mysql_error());
    mysql_select_db("yorum") or die (mysql_error());
    if ($_POST['comType'] == "parseComment") {
        $name = $_POST['userName'];
              $location = $_POST['userLocation'];
        $comment = $_POST['userMsg'];
        $sql = mysql_query("INSERT INTO guestbook (name, post_date, comment, location)
            VALUES('$name', now(),'$comment','$location')") 
            or die (mysql_error());
              $body = "";
        $sql = mysql_query("SELECT * FROM guestbook ORDER BY post_date DESC");
        while($row = mysql_fetch_array($sql)) {
                        $id = $row["id"];
                        $name = $row["name"];
                        $post_date = $row["post_date"];
                        $comment = $row["comment"];
                        $location = $row["location"];
                        $comment = stripslashes($comment);
                        $name = eregi_replace("&#39;", "'",  $name);
                        $location = eregi_replace("&#39;", "'",  $location);
                        $comment = eregi_replace("&#39;", "'", $comment);
                        $post_date = strftime("%b %d, %y", strtotime($post_date));
                        $body .= '<u><b><font color="#790000">' . $name . '</font>    |    <font color="#9B9B9B">' . $location . '</font>      |      <font color="#9B9B9B">' . $post_date . '</font></b></u>
                        <br />
                        '.$comment.'
                        <br />
                        <br />
        mysql_free_result($sql);
        mysql_close();
         echo "return_msg=Entry has been added successfully $name, thanks!&returnBody=$body";
         exit();
    if ($_POST['comType'] == "requestEntries") {
        $body = "";
        $sql = mysql_query("SELECT * FROM guestbook ORDER BY post_date DESC");
        while($row = mysql_fetch_array($sql)) {
                        $id = $row["id"];
                        $name = $row["name"];
                        $post_date = $row["post_date"];
                        $comment = $row["comment"];
                        $location = $row["location"];
                        $comment = stripslashes($comment);
                        $post_date = strftime("%b %d, %y", strtotime($post_date));
                        $body .= '<u><b><font color="#790000">' . $name . '</font>    |    <font color="#9B9B9B">' . $location . '</font>      |      <font color="#9B9B9B">' . $post_date . '</font></b></u>
                        <br />
                        '.$comment.'
                        <br />
                        <br />
        mysql_free_result($sql);
        mysql_close();
        echo "returnBody=$body";
        exit();
    ?>

    use the trace function to debug:
    function completeHandler(event:Event):void{
              processing_mc.visible = false;
              name_txt.text = "";
              msg_txt.text = "";
              status_txt.text = event.target.data.return_msg;
              gbOutput_txt.condenseWhite = true;
    trace("::"+event.target.data.returnBody+"::");
              gbOutput_txt.htmlText=""+event.target.data.returnBody;
    // and then initialize $body outside those if-statements or ensure you're sending an appropriate comType variable and value. 
    // right now it doesn't look like you're even sending comType with varSend.
    // ie, you must assign the urlrequest data property AFTER urlvariable variables/values are assigned.

  • When someone texts my email address it no longers shows up as an email, only a imessage, how do I stop that from happening?

    when someone texts my email address it no longers shows up as an email in my inbox, only as a imessage, how do I stop that from happening?  I do not use imessage at all.

    This is not something on your end.  If they send an iMessage it will arrive as an iMessage, if the send an email it will arrive as an email.
    THey are sepearate services that cannot be mixed up.
    Tell them to send you an email, rather than an iMessage.
    If they are using the messages App it will always arrive as a Message.

  • Since I moved ITunes media folder to an external bkp unit upload of my home shared videos on Apple TV is very slow. Is there anything I can do?

    Since I moved ITunes media folder to an external bkp unit, Apple Tv uploads my shared videos very slowly. Is there anything I can do?

    USB 3 should be more than enough for what you want.
    I don't know anything about Pinnacle but iMovie (assuming you are going default) does produce movies with a datarate of around 10 Mbps, which is quite high in comparison to iTunes movies from the iTunes Store. I don't know if you might want to try custom exports.
    Although saying that I have plenty of movies at around 10 Mbps on my eSATA external which doesn't have any problems.

  • How do you transfer pictures,video's and text messages from iphone 4 to the new model

    How do you transfer pictures,video's and text messages from iphone 4 to the new model?

    http://support.apple.com/kb/ht2109

  • No longer able to send text message from Address Book

    For a long time, I've sent text messages from Address Book, via Bluetooth and my SE phone. However, all of a sudden, the messages are no longer being received by the receipents, despite them appearing to be sent.
    Any ideas what's wrong?
    Thanks
    Phil

    I had the same problem. This worked for me:
    http://www.macosxhints.com/article.php?story=20050731124746116
    Giles
    PowerBook G4   Mac OS X (10.4.5)   Sony Ericsson k750i

Maybe you are looking for

  • Photomerge settings help, performance settings?

    Having issues using photomerge with the latest version of Photoshop.  I have about 120 images that are 16 mp RAW.  What should I have my Photoshop Performance settings at? Cache Levels and Cache tile size?  Also how much ram should I use? My system s

  • Report to record Ztable changes

    Hi frnds i have a requirement here that whenever a change is made in a Ztable it should be recorded and displayed along with the user name who made the change , the time , the field which was changed and also the old value and the new value .

  • Active business functions for IS-OIL Downstream

    Dear all, I have system NW701/ECC6, and upgrade EhP4. Now I want to active business functions for Downstream, in tcode swf5, I select Business functions set OIL&GAS,  I found a lot of business functions: BUSINESS_FUNCTION_BASIS_COM               Busi

  • Where can I learn how to use Photoshop?  Is there an online manual?

    I just downloaded the 30-day free trial and watched some tutorials.  So far, OK, but not enough!  Can anyone tell me where to find instructions?

  • QUESTION: How to re-registe​r setup billing/pa​yment account without losing installed apps?

    Unable to buy anything on my Touchpad app catalog. Error PMT03043 when trying to buy. How to clear existing catalog account and set it up again - hope this solves the problem ? There's no billing info set up in the existing account. App catalog does