Help with removeChild or another solution

I am a beginner to actionscript 3 and I've been working on a portfolio gallery in Flash that swaps XML images on click of a thumbnail.  Currently everything works well but the images stack on each other and I want them to switch on click.  I have searched all over the Internet trying to troubleshoot but the typical fix of
if(lArtLoader)
{artImageL.removeChild(lArtLoader)}
doesn't work.
Can someone please guide me in the right direction? Below is my code. Thank you so much for any help.
var artTitle:Array = new Array();
var artDescription:Array = new Array();
var artLargeImage:Array = new Array();
var artThumbnailImage:Array = new Array();
var artImageNum:Number = 0;
var maxImages:Number;
//LOAD XML
var artXMLURLLoader:URLLoader = new URLLoader();
artXMLURLLoader.load(new URLRequest("portfolio/art.xml"));
artXMLURLLoader.addEventListener(Event.COMPLETE, artProcessXML);
function artProcessXML(event:Event):void
     var artXMLData:XML = new XML(artXMLURLLoader.data);
     maxImages = artXMLData.title.length();
     for (var i:Number = 0; i < maxImages; i++)
          artTitle.push(artXMLData.title[i]);
          artDescription.push(artXMLData.description[i]);
          artLargeImage.push(artXMLData.largeImage[i]);
          artThumbnailImage.push(artXMLData.thumbImage[i]);
     loadArtThumb();
artThumbSrol.source = artThumbBox;
//LOAD THUMBNAILS
function loadArtThumb():void
     var sArtLoader:Loader = new Loader();
     sArtLoader.load(new URLRequest(artThumbnailImage[artImageNum]));
     sArtLoader.x = 137 * artImageNum;
     //STORE INFO IN THUMBNAILS
     var lArtLoader:Loader = new Loader();
     lArtLoader.load(new URLRequest(artLargeImage[artImageNum]));
     var thisTitle:String = artTitle[artImageNum];
     var thisDescription:String = artDescription[artImageNum];
     sArtLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, artThumbLoaded);
     function artThumbLoaded(event:Event):void
          //ADD THUMBNAIL
          artThumbBox.addChild(sArtLoader);
          artThumbBox.buttonMode = true;
          artThumbSrol.update();
          sArtLoader.addEventListener(MouseEvent.CLICK, artLoadMainImage);
          function artLoadMainImage(event:MouseEvent):void
               //ADD LARGE IMAGE AND TEXT, SHOULD SWAP ON THUMBNAIL CLICK
               artImageL.addChild(lArtLoader);
               artHeadL.text = thisTitle;
               artTextL.htmlText = thisDescription;
               artTextL.wordWrap = true;
     artImageNum++;
     if (artImageNum < maxImages)
          loadArtThumb();

In this function:
function artLoadMainImage(event:MouseEvent):void
               //ADD LARGE IMAGE AND TEXT, SHOULD SWAP ON THUMBNAIL CLICK
               artImageL.addChild(lArtLoader);
               artHeadL.text = thisTitle;
               artTextL.htmlText = thisDescription;
               artTextL.wordWrap = true;
you are taking whatever is in lArtLoader and adding it to artImageL as a new child object. So with every new click you are slapping down a new image on top of whatever is already there. To get rid of any existing child objects just look at what's in artImageL and toss it out before you put in anything new. It might look something like this:
function artLoadMainImage(event:MouseEvent):void
               //ADD LARGE IMAGE AND TEXT, SHOULD SWAP ON THUMBNAIL CLICK
               if(artImageL.numChildren > 0) {
                    artImageL.removeChildAt(0);
               artImageL.addChild(lArtLoader);
               artHeadL.text = thisTitle;
               artTextL.htmlText = thisDescription;
               artTextL.wordWrap = true;

Similar Messages

  • Help with a Subnet mask solution?

    This is probably obvious to many of your network guys/gals - but I'm stumped - I'm looking for an easy solution to this.
    I have a Linksys wireless router WRT54GS - Comcast cable broadband - my MacBook wasn't staying connected to it so I plugged in my Airport Express to one of the Linksys ports via Ethernet and disabled the wireless on the Linksys.
    Bingo - no more connection problem - the Linksys handles the wired users and the Airport Express handles the wireless - except - I have a network drive connected to the Linksys via Ethernet that my wireless users can't "see" - I believe - because it's on a different subnet mask.
    Is there an easy way to "link" the two so my wireless users can see the wired network drive?
    THANKS!

    As both the Linksys and the AE act as normal switches with no routing functionality, you have one single subnet. So all you have to do is to make sure that all devices connected to the Linksys and the AE have an IP-address of that subnet and the same subnet mask.
    Most routers have a class C private network configured by default. Let's assume, you have 192.168.0.0/255.255.255.0. If so, pick an IP-address out of the address range 192.168.0.1 to 192.168.0.254 for each device and use 255.255.255.0 as a subnet mask. For other class C private networks use the according range.
    If you need to mix different class C networks (e.g. 192.168.0.x for your wired deviced and 192.168.1.x for your wireless devices) use a subnet mask of 255.255.0.0 on all devices.
    Just for your understanding: when a machine A connects to a machine B, machine A takes it's own IP-address (e.g. 192.168.1.1) and ANDs it bitwise with it's subnet address (e.g. 255.255.255.0 would result in 192.168.1.0). Next it does the same again, with machines B IP address and it's own subnet mask. If both results are the same, both machines are on the same subnet, so machine A tries to connect machine B directly. If not, the machines are on different subnet, so machine A tries to connect to machine B using it's configured default gateway.
    Hope this information helps at least a bit.

  • Help with BW authorizations - Alternate solution

    My Client doesnt want to deal with roles/authorization methods..they want alternate way of preventing  data sharing in following scenrio :
    Current BW - 3.1c
    Company A is selling its 4 plants from Jan 1st to Company B. But BW system will be shared among Company A and Company B.
    From Jan 1st., Company A and Company B's BW users should not be able to see or access each other company's BW reports.
    Company B will have ownership of 4 plants (including 2 sales org and 2 company codes).
    How do I set reports seperately..
    1. Is it possible to work with customer exit variable on plant/sales org/comp code..Could any one help me on user exit code.
    2. Is it possible to restricting characterisitcs in the queries for 2 different roles of comp A and Comp B.
    3. How can an authorization variable help in this scenrio.
    This is very urgent.
    Thanks

    Shail,
    You should be able to use a customer exit variable with some ABAP behind it to default the user to a specific company. This will have to be maintained in a table for each user, however. I'm not sure how the specific code would look because I'm not an ABAP expert, but I do know we use similar variables that pre-fill for the user based on location and it works fine. You would need to make the variable NOT ready for input and NON-navigational. This would prevent the user from changing their location or viewing data from the other company. It would be, in essence, just a filter that you apply based on which company they represent. Hope this helps you get started.
    Cheers,
    Rusty

  • Help with choice of harware solution

    I am running a small company network of less than 50 employees and have little to no experience with VPN other than pptp and have no CISCO product experience. We are a small non-profit company and also have a limited budget. I am planning on adding several remote locations ina site-site vpn situation. currently, each person at the remote sites use pptp to connect to internal services such as intranet and client-server apps. I want something more secure as well as get them on the same network so I can remote manage their computers.
    There are 10 remote sites, each with 2-5 users in each site. Will also occasionaly need to allow traveling users into the vpn.
    I was looking at an ASA 5505 at the main office and possibly some 8xx series routers for each remote location. Will the 5505 handle that load or would a 5510 be what is needed?

    HI Paul, [PLS RATE if HELPS]
    "800" Series router is highly enough for your small branch office setup.
    Whereas you ASA 5505 should have enough interfaces availaible for connecting remote offices to the main office.
    Neverthless, i am afraid whether ASA 5505 will support 10 site-to-site VPN Tunnels or not. Since ASA 5505 is also one of the Security Product i am aware it needs some kind of Security licenses purchased from Cisco. You can go for some 3800 Series Router at your main office which will have all capability of VPN, Security, etc., Features also it can handle more BO connectivity of any type and protocols. Atlast consider for your future expansion Projects also ! !
    PLS RATE if HELPS
    Best Regards,
    Guru Prasad R

  • Help with setting up render solution

    Hello All,
    Im an IT Manager of a small animation studio that mainly uses Adobe After Effects. We currently have about 15 or so AE artists and 15 workstations. Some of our artists claimed that at previous companies that they have worked at, they had a better workflow in regard to rendering. When i picked their brain in further, they gave me some interesting ideas in regard to how it should be setup. Unfortunately, info online is scattered all over the place and calling support has gotten me nowhere. Does anyone have ideas or experience in setting up render solutions for studios using AE?
    I read about the watch folder but cant seem to get it working. The main objective is to push render jobs to other computers (that arent being used) so that our artists dont have to render on their local machine. We do use some 3rd party plugs from Red Giant.

    Since I'm new to this space, I'm looking for any feedback or advice. From my understanding, other studios push the heavy lifting of renders to other computers. This frees up the rendering from being done on the local machine. This also doesnt require our artists to sit around idle where theyre rendering a complex sequence.
    Can someone provide some alternative workflows for our needs? Can I get some ideas in regard to how to setup a render farm or push the renders to other computers on the network? Or has somoene successfully setup the watch folder option?

  • TS1559 nothing works with fixing my bluetooth on iphone 4. i cant sinc with my kia optima via bluetooth can anyone help me. none of the solutions that apple lists in their resolution section works.

    My bluetooth on my iphone does not sinc with my kia optima.  Can anyone help with this?  No solution listed by apple in their resolution section works with my phone.

    So what's the symptom you're seeing?  Can you go to Settings > General > Bluetooth and turn bluetooth on?
    Can you go to your Kia and turn its bluetooth on and have it discover nearby devices?

  • Please help with "You can't open the application NovamediaDiskSupressor because PowerPC applications are no longer supported." I have seen other responses on this but am not a techie and would not know how to start with that solution.

    Please help with the message I am receving on startup ""You can't open the application NovamediaDiskSupressor because PowerPC applications are no longer supported."
    I have read some of the replies in the Apple Support Communities, but as I am no techie, I would have no idea how I would implement that solution.
    Please help with what I need to type, how, where, etc.
    Many thanks
    AppleSueIn HunterCreek

    I am afraid there is no solution.
    PowerPC refers to the processing chip used by Apple before they transferred to Intel chips. They are very different, and applications written only for PPC Macs cannot work on a Mac running Lion.
    You could contact the developers to see if they have an updated version in the pipeline.

  • Can anyone help with a solution???

    Can someone please help? My problem is that I bought my iPad mini just last week and now it's freezing half way through what I'm doing and it's also not saving any of my photos? Can anyone help with a solution???

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    What are you doing when it freezes?
    How much Available storage space do you have? Go to Settings>General>About>Available
     Cheers, Tom

  • Search Help with Web Dynpro call on another system

    Hi all,
    I have to create a search help with web dynpro on a field but the database is on another system... How can I do?
    Many Thanks in advance...

    I would use a search help exit. Nothing WDA specific here, as this has been possible long before WDA came around.  With a search help exit you define the search help like normal, but instead of database table or view being the source of selection, you have a function module.  Within the coding of this function module you can call an RFC to read data from another system or call a web service if you need to bridge over to something that isn't ABAP based.
    You can read more about Search Help Exits here:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm

  • I need your help with solving a non-standard solutions.

    Hello!
    I need your help with solving a non-standard solutions.
    My name is Andrii and I represent the civil charity. Not so long ago, one man gave us the iPhone 4S (as a donation).
    But later - it became known that this iPhone can not work with SIM cards Ukrainian mobile network operators, as it is blocked by Verizon.
    Is there a way to unlock it with your help, and how it can be done?
    I hope for your understanding and assistance in this matter!
    Thank you.

    Contact a third party unlocking service.
    Purchase an unlocking code.

  • Trying to download update to 10.5, but installation interupted with error stating another installation is in progress. No other preocesses are running. Can you help?

    Trying to download update Itunes to 10.5, but installation interupted with error stating another installation is in progress. No other preocesses are running. Can you help?

    We can sometimes get past this particular message by reregistering the Windows Installer Service.
    First, launch a command prompt as an administrator. In your Start search, type cmd then right-click on the cmd that comes up and select "Run as administrator".
    If you have a 32 bit system
    At the command prompt:
    Type %windir%\system32\msiexec.exe /unregister and hit enter.
    Type %windir%\system32\msiexec.exe /regserver and hit enter.
    Restart the PC and try another install.
    If you have a 64-bit system
    At the command prompt:
    Type %windir%\system32\msiexec.exe /unregister and hit enter.
    Type %windir%\syswow64\msiexec.exe /unregister and hit enter.
    Type %windir%\system32\msiexec.exe /regserver and hit enter.
    Type %windir%\syswow64\msiexec.exe /regserver and hit enter.
    Restart the PC and try another install.

  • I can't find my serial number and once I do I would like to move my Pro to another computer. Need help with both.

    I can't find my serial number and once I do I would like to move my Pro to another computer. Need help with both.

    Hi Rick ,
    Here is the link that will help you find the serial number for your product quickly .
    https://helpx.adobe.com/x-productkb/global/find-serial-number.html
    You would have to deactivate that software from your older machine first.
    Refer to the following link to deactivate your product .
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    After it is deactivated from the older machine you can use it on your new machine just by entering the serial number of the product .
    Let us know if you need further assistance.
    Regards
    Sukrit Dhingra

  • [nForce] Help with another booting problem with the MSI K7N2

    Ok, I've been reading the threads and tried almost all of the solutions to no avail. Here is the issue...
    While adjusting speed in bios, Upon reboot the system would not display video. Steps taken to solve:
    *Betwwen all changes I unpluged all power from system
    1. Cleared CMOS VIA Jumper, Turned system on, no change
    2. set J10 Jumper to default then restarted, Still no video.
    3. Checked & reseated memory & CPU. Still nothing.
    4. Removed battery for about 30 seconds (Am going to try to remove it for 30 mins when i get a chance tomorrow) still nothing
    At this point i assum the motherboard was bad. I tested botting up with no memory in an attempt to get the warming/error beeps but nothing the system just idles.
    Am i missing something?  Any help suggestions or links to solutions would be greatly appretiated.
    Badtaste2k
    [email protected]

    Sorry, I wasn;t trying to be vague, Was messing with the comp for a couple hours and got fed up. You were right, it was the k7n2. It's not mine it's a friends and wasn't around so i was going by memory. It had been running descent but was never properly installed (software) and was poorly cooled (hardware) so it had overheating restart issues. This is where I come in. I told my friend i would take a look at his computer. It was home built by one of his friends. Te system is fairly basic and the only plug in card used is a agp video card. The computer was working great after i reinstalled the CPU with proper thermal conducting when in BIOS his Athlon 2.6 was set for 1.8 I adjusted it up to the proper setting and he asked if i could bump it further. I attempted but it was unsuccessful and didn't boot. I cleared cmos with the jumper and it booted up again no problem. I stupidly went back in a fiddled around some more with something i shouldn't have because i don't remeber what it was. I belive it was the FSB Speed, but i'm not positive what change cause this particular shutdown. I'm no computer technichian, just a hobbiest. I cleared the Jumper again but this time it dodn't come back and boot. I then looked in the book and found out about jumper 10 (i think) for the SAFE MODE 100mhz boot. I set it as well with no response. I then disconnected the power cable from the PSU and unluged the battery for about half a min or so. cleared teh cmos jumper again, kept the safe mode jumper in safe mode and tried to reboot. It still just hangs. No screen, so Bios check or wrning beeps. It just idles. It revs the hard drive up for about 20sec or so but that is it. I'm going to try the suggestion earlier in the eact oprder giving by osnavi for the reseting cmos. I tried those steps in vvaroius orders 5 or 6 times before giving up.
    Any help is appretiated. Thanks for your responses.
    Badtaste2k

  • Help with If statement please

    Hi,
    First Special thanks to Kglad for the help with the AS1 to AS3 conversion.
    I've been able to link up my buttons to play a different frames of the movie. this was my novice way of finally getting the programming to work.
    In frame 95 I have
    var myLoader:Loader = new Loader();
    addChild(myLoader); var url:URLRequest = new URLRequest("page1.swf");
    myLoader.load(url);
    in frame 165:
    var myLoader1:Loader = new Loader();
    addChild(myLoader1); var url1:URLRequest = new URLRequest("page1.swf");
    myLoader1.load(url1);
    My buttons link to 116 which plays a frame and loads ^
    in frame 226: removeChild(myLoader).
    But if the user has looped back into home from another part in the movie clip then it would need to remove myLoader1 instead of myLoader.
    I'm guessing there is some really dynamic way to solve the programatic nightmare i'm developing, but I'm really novice.
    So what i need is an if statement for frame 226
    That would do something:
    if(myLoader <> null
         removeChild(myLoader)
    else(
    removechild(myLoader1)
    Anyone have a method for this?

    yes, you can use the same urlrequest but just change its url property:
    // initialize, for example in frame 1.  this is done once and never again:
    var loader:Loader=new Loader();
    var urlR:URLRequest=new URLRequest();
    //  then in frame 2, for example:
    urlR.url="page1.swf";
    loader.load(urlR);
    //  in frame 20, for example:
    urlR.url="page2.swf";
    loader.load(urlR);
    // in frame 30, for example:
    urlR.url="page3.swf";
    loader.load(urlR);
    //etc.  if you're loading any swfs that play streams (sound or video), you'll want to add some code to this.

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

Maybe you are looking for