Could i get some helps about the website?

hi
i'm a new user of flash and dreamweaver. so please sorry for this question.
i used a template from flash and converted it into a swf. after i integrated that swf file into
my dreamweaver template. everything does work in my local browser but it's doesn't work after uploading to the server.
it redirects to a blank white page.
the website: http://www.goldenthai.info
here is the link of the whole folder of the website: http://www.mediafire.com/?etd7gufyxpi6zqm
if you need some additional things from me to solve the problem such as scripts, files  please let me know. i will post it up.
thank you very much,
Jack.

Does your swf file load any other files that you might have forgotten to include when you uploaded the supporting files?  If I link directly to the file on the server it still loads all white, but it does load (simply indicating the swf is there).

Similar Messages

  • I unfortunately dropped my phone..and it turned off...now when i connect a charger it's showing the logo blinking on and off..could i get some help.. please ..!

    could i get some help about the apple logo blinking on and off ..??

    Your phone is damaged. Take it in to an Apple store for evaluation and possible out of warranty replacement.

  • While trying to convert pdf to word--keep getting message "an error occurred while trying to access the service"  Could I get some help please?

    Could I get some help with this?

    Hi Shelly,
    Are you trying to log in to ExportPDF from Reader? If so, please make sure that you have the most current version by choosing Help > Check for Updates in Reader. You should be using version 11.0.07 (Mac OS) or 11.0.08 (Windows)--earlier versions caused this sign-in error that you're seeing.
    Let us know how it goes!
    Best,
    Sara

  • I would like to get certified for the SAP Crystal Reports. So, I would like to get some info about the currently available Certification Exams for Crystal Reports (2011/2013). Also, would greatly appreciate  if you have any suggestions for thi

    Hi,
            I would like to get certified for the SAP Crystal Reports. So, I would like to get some info about the currently available Certification Exams for Crystal Reports (2011/2013). Also, would greatly appreciate  if you have any suggestions for this Certification Exam preparation materials from another 3rd party or from SAP directly .  I would like to prepare or get trained well before taking the exam as I see it costs around $500.
    Thanks in advance for your help in this regard!
    Sincerely,
    J

    Please search here.. Training and Certification Shop for your desired certification or training. Don't forget to set your location.
    Please use some summarized title for your query.

  • Could i get some help with this one

    the aim of this project is to make a n by n maze and traverse this. if, while traversing the maze the system realises that there is a dead end it turns back. My problem is that sometimes it turns back and sometimes it doesnt. Here, below is the method for traversing the maze. Could i get a second pair of eyes to help me out a bit with this code?
         * Prints out the current maze
        public void show()
             for (int i=0;i<array.length;i++)
                for (int j=0; j<array.length;j++)
    System.out.print(array[i][j]) ;
    System.out.println();
    * traverses through the maze
    * @param row: the current row
    * @param column: the current column
    public void traverse(int row, int column)
    if ((row==3)&&(column==column-1))//checks if the array has reached the end
    System.out.println("array is solved");
    }else
    if(array[row-1][column]=='.')//checks if should move up
    array[row][column]='x';//marks path
    array[row-1][column]='x';//marks path
    System.out.println();
    show();
    traverse(row-1,column);
    }else
    if (array[row+1][column]=='.')//checks if should move down
    array[row][column]='x';//marks path
    array[row+1][column]='x';//marks path
    System.out.println();
    show();
    traverse(row+1,column);
    }else
    if(array[row][column+1]=='.')//checks if should move left
    array[row][column]='x'; //marks path
    array[row][column+1]='x';//marks path
    System.out.println();
    show();
    traverse(row,column+1);
    }else
    if ((row!=3)&&(column!=0))
    if(array[row][column-1]=='.')//checks if should move right
    array[row][column]='x'; //marks path
    array[row][column-1]='x';//marks path
    System.out.println();
    show();
    traverse(row,column-1);
    }else/*1*/ if((array[row-1][column]=='#')||((array[row-1][column]=='*'))&&(array[row+1][column]=='#')||(array[row+1][column]=='*')&&(array[row][column+1]=='#')||(array[row][column+1]=='*'))
    //checks if up is clear to move back
    //checks if down is clear so could move back
    //checks if right is clear to move back
    if(row==3&&column-1==0)//checks if at the beginning of the array
    System.out.println("MAze cannot be solved");
    }else
    if (array[row][column-1]=='x')//checks if behind has a x to move
    array[row][column]='*';//prints dead end
    array[row][column-1]='.';
    System.out.println();
    show();
    traverse(row,column-1);
    }else/*2*/ if((array[row+1][column]=='#')||(array[row+1][column]=='*')&&(array[row][column-1]=='#')||(array[row][column-1]=='*')&&(array[row][column+1]=='#')||(array[row][column+1]=='*'))
    //checks if left is clear to move back
    //checks if right is clear to move back
    //checks if up is clear to move back
    if(row-1==3&&column==0)//checks if at the begining of the maze
    System.out.println("MAze cannot be solved");
    }else if (array[row-1][column]=='x')//checks if behind as been marked
    array[row][column]='*';//marks as dead end
    array[row-1][column]='.';
    System.out.println();
    show();
    traverse(row-1,column);
    }else/*3*/ if((array[row+1][column]=='#')||(array[row+1][column]=='*')&&(array[row][column-1]=='#')||(array[row][column-1]=='*')&&(array[row][column+1]=='#')||(array[row][column+1]=='*'))
    //checks if right is clear to move back
    // checks if left is clear to move back
    //checks if up is clear to move back
    if (array[row-1][column]=='x')//checks if behind as been marked as a path
    array[row][column]='*';//marks as dead end
    array[row-1][column]='.';
    System.out.println();
    show();
    traverse(row-1,column);
    } else/*4*/ if((array[row][column-1]=='#')||(array[row][column-1]=='*')&&(array[row+1][column]=='#')||(array[row+1][column]=='*')&&(array[row-1][column]=='#')||(array[row-1][column]=='*'))
    //checks if right is clear to move back
    //checks if down is clear to move back
    //checks if up is clear to move back
    if (array[row][column+1]=='x')//checks if behind has been marked as a path
    array[row][column]='*';//marks as dead end
    array[row][column+1]='.';
    System.out.println();
    show();
    traverse(row,column+1);

    morgalr wrote:
    That is truely one of the better threads that I've seen on the net for maze traversal.Forget "for maze traversal". That was one of the most interesting of all the threads I've seen here in quite a while. My sincerest admiration to those who contributed and eventually worked it out (and it wasn't me that's for sure), and especially to Keith. Impressive!

  • Could I get some help second guessing myself?

    Hi I am building a set of new systems for work.
    We  are a small graphics and animation house with 3 animators. Earlier this  year we lost our 2 editors, one to retirement and one who decided to go  do his own thing.
    So at the moment things are relatively  good as we are getting a good deal of 2d and 3d animation work. I was  tasked by my boss to come up with new systems that would "for now"  bridge the gap for company that would be 3 all a round systems for 3 all  a round broadcast generalist.
    Our core software that we  use is Autodesk Max/Maya and the CS5 production suite. Our use breakdown  is around 50% 3d and 50% compositing/editing per job. Our editing  demands are not full 24/7 editing but mostly rough cuts for compositing.  My boss would like us to strech ourselves even a little bit thinner  than we are and for us animators to be able to do unsupervised edits and  in our 2 edit suites still hire full freelance editors on a per project  basis until we can hire a new editor(s).
    Here is what I can up with and a few notes. PLEASE any thoughts are welcome.
    OS: Windows & professional 64  bit
    Motherboard:
    Supermicro  H8DGi-F
    CPU's: (x2)
    Opteron X12 6134 G34 2.3G
    Notes 16 cores total the most that Adobe and Mental Ray under Max and Maya I think will handel
    GPU
    PNY nVidia Quadro  4000
    Had  to got *pro card here it's not the fastest but unfortunatly the drivers  for 3d are important to us, to the point we just could not pass them  up.
    Memory:
    G.SKILL 4GB 8 kits (2 x 2GB) 240-Pin  DDR3 SDRAM DDR3 1333
    32 Gig total that means we should be able to support 9 fully funded cores for HD 1080 work for rendering in AE/Premier correct?
    PSU:
    Corsair Professional Series Gold  High Performance 750-Watt Power Supply CMPSU-750AX
    Needed for the pin outs for the AMD motherboard. I think I got enough voltage if I did my math right yes/no?
    OS Drive:
    Revo Drive 120 GB PCI Express solid  state RAID drive
    Used  this drive so as to not take up a Motherboard SATA slot so I can  squeeze 1 more drive into the raid and still have a DVD/Blueray burner.  Given that it should act speed wise in parity with the raid as well  seemed like a great option...or was I wrong?
    Raid Drives:  (x5)
    SAMSUNG - SPINPOINT F1 DESKTOP CLASS  1TB 7200RPM 32MB
    Seem  like the most common raid drives atm from what I have seen. A vendor we  are working with suggested instead that we use the Seagate  Constellation™ ES drives but I am unsure. I was also told that yes even  though motherboard raid controllers are bad that 5 of either of these  drives should be able to play back an uncompressed HD 1080 stream. is  this correct?
    Blueray/DVD
    LITE-ON Black 12X BD-R 2X BD-RE 16X  DVD+R 12X DVD-RAM 8X BD-ROM
    anyone know if this drive is compatible with encore I cannot seem to find the encore compatibility list?
    Audio Card
    ASUS Xonar DS 7.1 Channels 24-bit  192KHz PCI Interface Audio Card
    included for compatiblity sake here just in case someone has used this card and has had problems.
    Monitors (x2)
    Dell UltraSharp U2211H 21.5"W  Monitor
    IPS panels with display ports...they don't have the highest refresh rates  but most ips panels don't, from what I see should I go with PVA Panels  instead here? Still will need a display port hook up if I don't as the  Quadro 4000 only has one DVI and I hate non native connectors.
    additional questions: \
    I  see all the top performers in Harms' list are in the 980x camp and I  would like to explore this option but intels hold such little amounts of  ram. I know that a lot of the premier performance is on the Cuda side  now for simple things, but for more complex tasks I thought 1080p HD  required 3 gig per core to process a frame. I look at the pass mark  scores and just don't see them doing as well as they do if given a 12  Gig system, what am I missing?
    The  reason I am posting this system here is frankly of all the disciplines we  cover at work I know the least about editing and Premier. I know for 3  the purposed system is A level and on the compositing side still in the B  level because the disk perf and ram are in order with the CPU's but is  this system ok for editing tasks?
    Our  budget is around $4500 per system given that our demands are pretty  steep covering 3d/2d/compositing and some editing how did I do?
    -Carl
    second guessing myself like crazy because as a company we need to hit this nail on the head.
    *edited for spelling mistakes

    Mulitple GTX 470 shouldn't cause any problems running in Premiere Pro CS5, although as you seem to be aware, they will not offer any additional performance improvements within Premiere.  They will provide very good performance with iRay under 3DMax, although you should be aware that Geforce cards do not support the 3DSmax performance drivers and will perform poorly compared to the Quadro 4000 you mentioned in both Max and Maya.
    Sean
    Sean Kilbride
    Technical Marketing Manager, NVIDIA

  • Can i get some help with the bing app please?

    ironically i searched all over the bing website and couldn't find the answer to this:
    on the bing commercial they show the ability to hold up your phone with the app open and on the screen you see the scene in front of you but with little popups telling you what each place is. i cannot figure out how to get the app to do that, can anyone provide instructions? thanks.

    Bing Mobile email support is here:
    https://support.discoverbing.com/default.aspx?%7b!%7dsource=app_iPhone&ct=eformt s&mkt=en-US&productkey=bingmobile&scrx=1&st=1&wfxredirect=1

  • Need some help in the login form ???!?!?!?!!

    can any one help me with correcting the code or can any one give me another code for using it in the login form.
    this is my problem:-
    i had make a login form using in oracle 9i form builder >>>in this form i have three text boxes one for intering user name and the second one for entering the password and the third text box is not visible and it is used for counting the tries.
    In addition i have a three buttons , one is for login and the two others are not visible and they are a show main menu button and a exit button. For login button i had put a WHEN-BUTTON-PRESSED trigger in the login button and it must check if the user name and the password match what it is on the login table so it allow the user to see the show main menu button otherwise if the user name or the password are wrong and has been putted wrong for 3 times of trying then it will show the exit button.
    and this is a picture of the login form in the design view.
    http://www.al7loh.com/uploader/uploads/login.JPG
    and this is the code for theWHEN-BUTTON-PRESSED trigger on the login button
    declare
         alertNum number;
    dummy1 tbl_login.USER_NAME%type;
         dummy2 tbl_login.PASS%type;
    begin
         select tbl_login.USER_NAME, tbl_login.PASS into dummy1, dummy2 from tbl_login where tbl_login.USER_NAME = :LOGIN.USER_NAME and
         tbl_login.PASS = :LOGIN.PASS;
         if :LOGIN.TRIES<3 then
         if sql%found
              then
              set_item_property('LOGIN.SHOW_MENU', visible, property_true);
                                                                               set_item_property('LOGIN.SHOW_MENU', enabled, property_true);
                                                                               else
                                                                               message ('Invalid password....try again');
                                                                               :LOGIN.TRIES := :LOGIN.TRIES+1;
                                                                               :LOGIN.USER_NAME := null;
                                                                               :LOGIN.PASS := null;
                                                                                    end if;
         else
         message ('Exceeded Number of tries..press exit button');
              set_item_property('LOGIN.EXIT', visible, property_true);
                   set_item_property('LOGIN.EXIT', enabled, property_true);
         end if;
         end;
    can any one help me correcting the code of the WHEN-BUTTON-PRESSED trigger on the login form or can any one give me another code for using it in the login form.
    i hope to get some help from the experts>>> ??!?!?!?!?!

    Something like this
    declare
      alertNum number;
      dummy1 tbl_login.USER_NAME%type;
      dummy2 tbl_login.PASS%type;
    begin
      Begin
        select tbl_login.USER_NAME, tbl_login.PASS
        into   dummy1, dummy2
        from   tbl_login
        where  tbl_login.USER_NAME = :LOGIN.USER_NAME
        and    tbl_login.PASS = :LOGIN.PASS;
        set_item_property('LOGIN.SHOW_MENU', visible, property_true);
        set_item_property('LOGIN.SHOW_MENU', enabled, property_true);
      Exception
        When no_data_found Then
          if :LOGIN.TRIES<3 then
            message ('Invalid password....try again');
            :LOGIN.TRIES := :LOGIN.TRIES+1;
            :LOGIN.USER_NAME := null;
            :LOGIN.PASS := null;
            Go_Item( 'LOGIN.USER_NAME' ) ;
          else
            message ('Exceeded Number of tries..press exit button');
            set_item_property('LOGIN.EXIT', visible, property_true);
            set_item_property('LOGIN.EXIT', enabled, property_true);
          end if;
      end;
    end;Francois

  • HT1414 when I do this steps thy give me a massege says " the iphone could not be restored . An unknown error accorred (3149) " . Can I get some help ?

    when I do this steps thy give me a massege says " the iphone could not be restored . An unknown error accorred (3149) " . Can I get some help ?

    Try using DFU/Recovery mode to restore
    1. Plug iPhone 4 to computer
    2. open iTunes
    3. Turn off iPhone
    4. Press home and power button for 10 seconds
    5. Stop pressing the power. Button but keep pressing down the home button
    iTunes should say the following; "iTunes won't be able to use your iPhone until you restore your device"
    Then you'll have the option to restore and it should work, it has worked for me in the past

  • Who can I contact about getting some help with this ongoing (several months) issue???

    I will try to make a long story at least somewhat shorter.Comcast customer for 20 years (yes - literally 20 uninterrupted years). 8 years of service at current address.Several months ago I restructure my bill - all my promotions etc had run out and I wanted to reduce my bill.  Ended up being told my customer support that I could save money by getting the "Triple Play" (I've NEVER had comcast phone service, I have my own VOIP phone solution).  They told me I didn't have to "use" the phone, just getting it hooked up would save me money.  Fine.Internet service was not supposed to have been touched / changed at all. A few days after making these changes, a large box from Comcast shows up at the house.  It has TWO cable modems in the box.  Not sure why they sent them - I already had the latest cable modem (that was capable of supporting the phone service they needed to activate). Notified comcast about the shipment.  They said don't worry about it.  Okay, I left them in the box. Tech shows up at house while I'm working.  Wife called and I talked to tech. He said he just needed to get some "numbers" off the modem to activate the phone service (I'm in the IT industry - I will assume he wanted MAC / SN#'s).  I made sure he was making no changes to the modem itself - I've got my own home network setup.  The Comcast cable modem serves as a gateway and it's in bridged mode.  Always has been. I have my own router etc. So a week or so after that visit, the modem started losing connectivity.  It happens almost EVERY DAY and it's almost always in the later afternoon (5:30-7pm EST) and sometimes late at night.  When this happens, the ONLY way to get the connection back is to unplug modem power AND the coax cable input.  It will then restart the modem and it comes back.  Simply unplugging power and restarting will not do it. After multiple hours spent with support on the phone (we activated the newest modem they sent - same issue.  Activated the other modem they sent - same issue.  In fact they weren't able to put one of them in bridged mode at all). They said a tech needed to come out. Tech comes out - checks the feed to the house.  Said there is a lot of noise in the lines.  (Please note that there is one main comcast feed to my house - it splits outside (in the comcast locked box) into two feeds which enter the house. One feed splits and runs the upstairs TV's (Digital Adapters) and the downstairs STB / DVR.  The other feed goes DIRECTLY to my cable modem. I ran those feeds myself when I moved in this house.  Never had an issue before. Cable TV never has issue - only internet.   So the tech replaced some ends on the upstairs line (Cable TV - he said that signal noise could cause issues with the internet).  I then helped the tech run a BRAND NEW line from the split at the comcast box, directly to the modem.  He said the signal / noise looked much better. Next day - same ISSUE - modem dropped connection.  Pull power and coax cable, reseat, modem restarts, signal comes back. I called support again.  They gave me an incident #.  Said they would have a "Crew supervisor" contact me, since it's obvious the problem lies outside of my home. A tech called and left a voice mail on my phone (was working when it came in, couldn't answer).  They did not leave a call back number. Called support again.  They told me a tech would call me back and was advised to leave a call back number.  That was MONDAY of last week.  Haven't heard anything.  The contact # is my cell...no missed calls. Is there another number I can call or email address so I can escalate this issue?  Having to disconnect / reconnect the modem EVERY DAY at least once is getting tiresome.   I'm in the Richmond Virginia area if it matters at all. Thanks.

    ctandc-
    I am so sorry for the delay! I am sending you a private message so that we can discuss your billing concerns more freely.
    At the top of each Forum page, you will see a small gray envelope icon. This icon will have a number next to it if you have any new messages waiting. To open a PM to read it, double click on the envelope. If you click on the white envelope a window will open with tabs for your Private Message Inbox, Sent Messages, Friends, Ignored Users, and Compose new Message. You can also access this area by clicking on the Username in a Thread or post. By default, Private Messages are enabled. You can disable this feature in My Settings>Preferences> Private Messenger.

  • We need to get some help and explanations about iChat video not working.

    I've read so many postings about iChat Video hoping for an answer to my problem, but not only did I not find an answer, no one else has been receiving an answer either.
    I've had multiple problems with my ichat video not working.
    I either get an error saying someone didn't accept which isn't the case, or I get some error-8 or something ridiculous like that.
    Can we get some help from apple support or something?!

    Short answer: No, we can´t...!
    Apple don´t care about us users, unless you pay for an Apple Care Service. Try your best to follow some advices from around this forum. That´s the only help you will get.
    Some people have got their iChat video working again after following some advice. By the way. I´m not one of them... I´ve tried every single tip I read here, but I´m still stuck with text chat only...
    Good luck.

  • I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    You might want to download something called an undelete utility. These can find files and recover them even after they appear to have been lost. There are some undelete utility programs that are free. Look at tucows.com
    Also, it appears that you have POSSIBLY overwritten the actual files, which you moved manually, with I don't know what, which you moved in PSE's folder location view.
    Next, in the future ... NEVER (that's: don't even think about it) move your photos in Windows. NEVER. NEVER. Not ever. Not once. This always (that's ALWAYS, as in 100% of the time) causes problems and usually makes things difficult to fix.
    Lastly ... make regular backups! I must say this in the forums about seventy bazillion times a month. Make regular backups! Regular depends on how often you take photographs and edit them. Since my photographic activity usually happens on the weekends, I make backups every Sunday night. You may need a different schedule, depending on your activity level. MAKE REGULAR BACKUPS!

  • I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.

    I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.
    In particular, I am analyzing the example "Even Angle Reference Signal Processing (Digital Tacho, DAQmx).vi", whose documentation I am reproducing in the following:
    <B>DESCRIPTIONS</B>:
    This VI demonstrates how to extract even angle reference signals and remove the slow-roll errors. It uses DAQmx VIs to acquire sound or vibration signals and a digital tachometer signal. This VI includes a two-step process: acquire data at low rotational speed to extract even angle reference; use the even angle reference to remove the errors in the vibration signal acquired at normal operation.
    <B>INSTRUCTIONS</B>:
    1. Run the VI.
    2. On the <B>DAQ Configurations</B> tab, specify the <B>sample rate</B>, <B>samples per channel</B>, device and channel configurations, and tachometer channel information.
    <B>NOTE</B>: You need to use DSA PXI-447x/PXI-446x and PXI TIO device in a PXI chassis to run this example. The DSA device must be in slot 2 of the PXI chassis.
    3. Switch to <B>Extract Even Angle Reference</B> tab. Specify the <B>number of samples to acquire</B> and the <B># of revs in reference</B> which determines the number of samples in even angle reference. Click <B>Start</B> to take a one-shot data acquisition of the vibration and tachometer signals. After the acquisition, you can see the extracted even angle references in <B>Even Angle Reference</B>.
    4. Switch to the <B>Remove Slow-roll Errors</B> tab. Click <B>Start</B> to acquire data continuously and view the compensate results. Click <B>Stop</B> in this tab to stop the acquisition.
    <B>ORDER ANALYSIS VIs USED IN THIS EXAMPLE</B>:
    1. SVL Scale Voltage to EU.vi
    2. OAT Digital Tacho Process.vi
    3. OAT Get Even Angle Reference.vi
    4. OAT Convert to Even Angle Signal.vi
    5. OAT Compensate Even Angle Signal.vi
    My question is: How is the synchronization produced at the time of the compensation ? How is it possible to eliminate the errors in a synchronized fashion with respect to the surface of the shaft bearing in mind that I am acquired data at a low rotation speed in order to get the "even angle reference" and then I use it to remove the errors in the vibration signal acquired at normal operation. In this application both operations are made in different acquisitions, therefore the reference of the correction signal is lost. Is it simply compensated without synchronizing ?
    Our application is based on FPGA and we need to clarity those aspects before implementing the procedure.
    Solved!
    Go to Solution.

    Hi CracKatoA.
    Take a look at the link bellow:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=255126&requireLogin=False
    Regards,
    Filipe Silva

  • I'm having trouble loading photos on my I phone 4s and I pod.  I don't see the photos tab in Itunes?? Prob user error but wanted to get some help.

    I'm having trouble loading photos on my I phone 4s and I pod.  I don't see the photos tab in I-tunes? I'm sure its user error but wanted to get some help.

    What's the origin of this external drive? It sounds very much like it's a Windows-formatted (NTFS) drive which Macs can't write to. If you can, copy the files off the drive, reformat it as Mac format (using Disk Utility) and copy the files back. If you need to continue writing to it from a Windows PC, you should format it ExFAT in Disk Utility.
    Matt

  • How can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not availa

    how can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not available on my screen

    Keensy I have requested a member of our support team contact you directly via telephone.  Once I was able to review the correct account it appears our support team has tried multiple times to contact you.  I would recommend checking your SPAM filtering in case you need to receive additional messages from our support team.
    I did request that you be contacted via telephone. I am sorry for all of the difficulties which you have faced.
    For future viewers of this discussion when contacting our support team at Contact Customer Care it is imperative that you be logged in under the account tied to your membership/subscription.  While there is cancelation options available you will have an increased chance of being offered an opportunity to contact our support team if your account entitlement can be verified.  For this to be done you will need to be signed into the same account as your membership/subscription/registered software title.

Maybe you are looking for

  • How to activate the Info object catalog in Business content

    Hi,   While trying to activate the Info object catalog, I found that some of the info objects under this catalog was earlier activated by some other developer. I brought this catalog (0SALES_CHA01) over to the Business content activation panel ( with

  • How do I find the file size of an album in iPhoto

    I'm a iMac newbie and I need your help! I need to determine how large an album is in iPhoto so I can figure out how big of a thumb drive I need to store these pictures for my digital frame. On my PC I would just right click on the file. That obviousl

  • Looking for a way to re-organize pages within a PDF document....

    Hello All..... First time posting here and a new user to Acrobat X Pro so bear with me as I try too explain my issue. I receive via email, a weekly PDF report for work that contains up to 200 pages in each file. Each page is basically a "Lead" that c

  • Script for folder or file that always has a name that is the CURRENT DATE

    hi all, i tried to get this done a couple times and i either misunderstood how to use the script or there was some complication so i am returning to it. i would like to have a FILE or a FOLDER on my desktop that has a name which is TODAYS DATE. the r

  • Field is there in extract structure but not in RSA6

    Hi all, second time i am asking the same question. in tcode rsa6, when double click on extract structure i am able to see two fields for size. i have cross checked in tcode lbwe they are on left side only.But still i am not able to see those fields i