Help wanted with simple question!

Hi, I know this may be the wrong place to be asking such as question but can anyone please tell me what the meaning of this is.
Data must be transferred between the client and web service in either JSON or XML format.
I have a database on azure and I have connected to the database through a php page and then display the database on html format. But I know nothing of the transferring of the data, can anyone make sense of this.

Hello!
I'm not sure I understand the issue at hand, as you say you're already displaying the data in HTML. Where is this message coming from? 
Cheers.

Similar Messages

  • Please help me with this questions "if I purchased items through mac or windows is it possible to re-download those purchases on Apple TV though iCloud"

    Please help me with this questions "if I purchased items through mac or windows is it possible to re-download those purchases on Apple TV though iCloud"

    It depends on what country you're in and whether or not they're still available in the iTunes Store. Some purchased movies and all rentals won't be available.
    (108225)

  • Please help  me with some questions with batch input session?

    hello everyone.
      I come to some questions  like
    1 What is a batch input session ,
    2  What is the alternative to batch input session?
    3  An ABAP program creates a batch input session.   We need to submit the program and the batch session in back ground. How to do it? 
       would you please help me with the questions, couldn't thank you more.
       Best regards
                                                                          Frank

    Hi
    Batch Input Session:
    BATCH INPUT SESSION is an intermediate step between internal table
    and database table. Data along with the action is stored in session
    ie data for screen fields, to which screen it is passed, program
    name behind it, and how next screen is processed.
    Three processing modes of executing Batch Input Session :-
    Run Visibly : You can correct faulty transactions online & work step-by-step through  the transactions not yet executed.
    Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    Run in Background .
    2) What is the alternative to batch input session?
    Call transaction.
    3) An ABAP program creates a batch input session. We need to submit the program and the batch session in back ground. How to do it?
    go to SM36 and create background job by giving
         job name,job class and job steps (JOB SCHEDULING)

  • Help with simple question.......

    This is a simple question but i can't seem to figure it out.
    For example i am using this code...
    feel free to run this code...
    When you run this you see the scrollbars with the Swing look (Bars look so nice)...
    I am using this same type of code in my other project with JBuilder 7 and I am getting the plain look of the scrollbars.
    Any suggestions will be greatly appreciated..
    =======================================================
    import javax.swing.JTable;
    import javax.swing.JScrollPane;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import java.awt.*;
    import java.awt.event.*;
    public class SimpleTableDemo extends JFrame {
    private boolean DEBUG = true;
    public SimpleTableDemo() {
    super("SimpleTableDemo");
    Object[][] data = {
    {"Mary", "Campione",
    "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml",
    "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath",
    "Chasing toddlers", new Integer(2), new Boolean(false)},
    {"Mark", "Andrews",
    "Speed reading", new Integer(20), new Boolean(true)},
    {"Angela", "Lih",
    "Teaching high school", new Integer(4), new Boolean(false)}
    String[] columnNames = {"First Name",
    "Last Name",
    "Sport",
    "# of Years",
    "Vegetarian"};
    final JTable table = new JTable(data, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(500, 70));
    if (DEBUG) {
    table.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    printDebugData(table);
    //Create the scroll pane and add the table to it.
    JScrollPane scrollPane = new JScrollPane(table);
    //Add the scroll pane to this window.
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    private void printDebugData(JTable table) {
    int numRows = table.getRowCount();
    int numCols = table.getColumnCount();
    javax.swing.table.TableModel model = table.getModel();
    System.out.println("Value of data: ");
    for (int i=0; i < numRows; i++) {
    System.out.print(" row " + i + ":");
    for (int j=0; j < numCols; j++) {
    System.out.print(" " + model.getValueAt(i, j));
    System.out.println();
    System.out.println("--------------------------");
    public static void main(String[] args) {
    SimpleTableDemo frame = new SimpleTableDemo();
    frame.pack();
    frame.setVisible(true);

    any help will get DUKE $$$$$$$$$$$$$$$$

  • Can you help me with several questions?

    I have several questions
    1. What boxes do I need to click on when I click on a link and want it to open in windows instead of tabs?
    2. Why is it that I can not add norton 360 and yahoo on my add on bar?
    3. Is it possible to just use firefox to open up my aol without signing on to windows and signing on to aol and then using firefox as my search engine and if so how do I do this?
    4. Why is it that there are so many times that when trying to go to to a link that it keeps coming up try again?
    5. Also what kind of antivirus and spyware do foxfire have or will my norton 360 cover this on foxfire?
    If you can help me with all this then I would appreciate it

    You could set it up so that the user never has to press "commit" button by modifying the "update" and "delete" event within "DataHandlerComponent.jsp" which will commit on all updates and deletes. This will also commit the "inserts" as the insert process will take you the the update page anyway.
    Bill G...
    "DataHandlerComponent.jsp"
    -- snip --
    <%-- DML event handling (Create handling is embeded in DataEditComponent)--%>
    <jbo:OnEvent name="update">
         <jbo:Row id="myrow" datasource="ds" rowkeyparam="jboRowKey" action="Update" />
         <%-- bg add - want to commit immediately --%>
         <jbo:Commit appid="<%=amId%>" />
    </jbo:OnEvent>
    <jbo:OnEvent name="delete">
         <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
         <%-- bg add- want to commit immediately --%>
         <jbo:Commit appid="<%=amId%>" />
    </jbo:OnEvent>

  • Im new to java and hope somebody can help me with my question

    Hi!
    Im quite new to java and I just have some simple questions..
    can someone please tell what kinds of error are considered as language violation for java? where can I find more info about these errors?
    can someone give me a simple example on a kind of error that cannot be caught in both compilation and runtime? I hope someone can help me out. Thanks in advance!!

    knightz211 wrote:
    Im just asking about errors that might go against the language definition but cant be detected.. If it "goes against the language defintion," it will be detected by the compiler. That's half of the compiler's job is to tell you what you've done that violates the language spec.
    because it confuses me when they say that such errors might occur so I just want to know what might these errors be.. sorry for that..Who's "they"? What exactly* did "they" say about "such errors"? It sounds to me like you're just confused, and you think there's something mysterious and inexplicable going on but you don't know what and don't even know what you're asking.
    I would suggest not worrying about hypothetical problems that you can't even put into words and focussing on learning Java. Along the way, if you encounter real, specific, actual problems, ask about them, and you'll probably get answers about the problems themselves and the language or theory behind them.

  • HELP NEEDED WITH SOME QUESTIONS

    Could ye guys help, I have some questions and I dont know the answers of them! any solutions would be great
    Distinguish between composition and inheritance as used in object-oriented programming. As part of your answer, provide examples of different situations in which each would be more appropriate.
    What is meant by recursion as an algorithmic strategy in working with abstract data structures, and why is such an approach considered worthwhile? Illustrate your answer with an example sorting algorithm in Java that can be sorted linearly and recursively.
    Given an alphabet of {x,y,z} possessing the following frequency distributions {1/8, 1/4, 5/8}, show how this information may be used to construct a prefix code binary tree. Given the code 11000111100, show how this is decoded using this construct.
    Any ideas??

    086kerry wrote:
    lad if you had seen what I had to do already, its not as if I want the answers, just help. I cant find anything satisfactory on the web.Not to quick are ye?
    If you can't do more than post your assignment and cry for help then you might as well give up now. Nobody is going to do your work for you. You have done NOTHING yet so start working on it and if you run into problems come back with your code and ask questions about it.

  • Please help me with simple program

    Can someone please write a simple program for me that opens up a webpage in the center of the screen , with a set size, and then asks the user where they would like to click on the screen. Then once the person clicks it asks how many times they would like to click there, and then once they enter the # the program opens up the webpage (in the center at the same spot as before, with the same set size) and automatically clicks on the predesignated spot , and then closes all open internet windows, and keeps doing it for however many times the person chose. PLEASE HELP ME WITH THIS!!! If you could, please post the source code here. Thank you so much to whoever helps me!!!!!!!

    If it's not to learn, then what is the purpose of
    this project?well, if it's not HW and its not for learning java, then why the hell would anyone like to have a program that may open a webpage and then repeatedly click on predefined place...
    let me see...
    now if he had asked for program that fakes IP as well, then i would suggest that he tryes to generate unique clicks, but now... i'm not sure... maybe just voting in some polls or smthing... though, i would not create a program that clicks on the link or form element, but rather just reload url with given parameters for N times...

  • My ipod touch is disabled. Please help me with my questions. It is my first apple device.

    My ipod is disabled. When i turn it on it says to connect to itunes. I can get to where the screen displays a cord and an itunes logo, but itunes does not pop up, nor display my devices. This is probably because I have not synced my ipod with this computer, nor with any computer. How do I sync my ipod with itunes when it is disabled? How do I get itunes to pop up when my ipod is connected to the computer? Please dont give me a link, i really would like a step by step guide. I have itunes downloaded on this computer, but it does not pop up or display my devices. Do I need to create an itunes account? I have so many questions because this is my first apple device. If you were wondering, my ipod touch is disabled because I forgot my passcode. PLEASE help, I dont care if I have to reset my ipod, I just want to be able to use it!

    Use Device Firmware Mode...
    1.     Turn off your ipod To do this, hold the home and sleep buttons for 10 seconds, ignore slide to power off message.
    2.     Release the power button when you see the apple logo (keep holding the home button)
    3.     Keep holding until you see a message.
    Now restore from a backup!
    Alternatively you can wait!

  • Thinking of getting a Curve 8310...pls help me with some questions

    I have an ancient palm centro which I love dearly but the thing is falling apart as I have had it for over 2 years. I recently upgraded to a palm pixi plus but when I found out that I cannot bluetooth or text message calender events to my husband's phone, I returned it. I have a few questions about this phone:
    1.) Can you bluetooth or text message calendar events to another phone that is not a blackberry? And in the same respect, can you receive calendar events from another phone in the same way? This is how I communicate upcoming events with my husband with my centro and it goes right on our calenders with a reminder. I am unwilling to give up this feature.
    2.) I am assuming that blackberry creates a chat log like in my centro during text messaging?
    3.) Can you create birthday reminders from your contact list? I was shocked that the pixi did not have this option.
    4.) Does the phone have a switch on the side to silence the phone and it will vibrate?
    Thank you so much to anyone who takes the time to answer my questions!

    Hey Lizzy731,
    Welcome to the BlackBerry Support Community Forums.
    Here is the answers to your questions.
    1. You can not Bluetooth transfer from one device to another and send calendar events.  However Bluetooth media transfer does work.  If anyone sends you an email with a calendar invite, it will save to your BlackBerry.
    2. When sending and receiving SMS, it does have a record of every message sent and receive.
    3. You do have the option to place in the birthday within a contact.
    4. You do have convenience keys which can be customized to your pleasure, so if you want to make one of the buttons to vibrate only, then you can.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Help needed with simple image enlargement when viewing a gallery

    Hi
    I have a gallery component linked to a data thumb list. This all scrolls fine and works. When someone clicks on a thumb it shows the
    image larger. Then I would like it if you click on the larger image it fills the height of the page to see an even bigger view. I have managed to do this but some of the buttons do not work in the area were this image is even if the image is not showing and the image will not go back to its off state even though it has an interaction to do so. If I drag the image component down the layers panel so it is behind all the other bits on my page it all works, the image enlarges and disappears so the previous state is shown. The problem with this is I want the image to cover everything behind it, not be behind everything. I have included a couple of screen grabs just to give you an idea.
    sc 1 simple data list and image component
    sc2 Enlarged image but can not get it to go
    sc3 enlarged image can come and go no changes except I have moved the layer panel down
    to the bottom
    Any ideas how I can get this to work properly would be much appreciated
    many thanks

    I have sorted this out. There might be other ways of doing this but I added a button to the large image gallery component.
    constructed a rectangle the same size as the large image and set the opacity to 0. The whole area is now a button you can not see.
    One click anywhere on the image removes it with an interaction back to the first state which is off.
    hope this help anyone

  • Please Help! A simple question I can't seem to find the answer to.

    Ok so this is probably something really easy but I can't for the life of me get it to work.
    I got a new Macbook Pro recently and have been building up a new library with my older songs and newer ones I've acquired since the purchase. My problem is when I go to sync my Ipod to the new Mac my ipod automatically goes to the "ok to disconnect" screen without syncing anything. I pressed "sync" and "transfer purchases" and it still goes into disconnect mode, very quickly too.
    Its almost as if the ipod is protecting itself and dosen't want to sync to the new Mac for that reason, but that's what I need it to do. Its a 'Mac to Mac' move so its not like I'm putting a Mac ipod into a Windows computer.
    I've looked everywhere for answers but all I can find is troubleshooting for 'Mac to PC' solutions. No one seems to have answers for the seemingly much easier counterpart.
    What do I have to do, or how do I get to a setting that would let my ipod sync successfully on this new laptop? If anybody could help it would totally save the day.
    The ipod is an iPod classic 2008-09 120gb

    If other apps are working it must be a problem with the Pac12 app. You need to contact their developers.

  • Urgent Help Wanted With My Presentation - Mov Files Will Not Open

    I am a retired lifeboatman, and have developed a fund raising talk focusing on my 35 year involvement with saving lives off the UK southern coast.  I use Keynotes and have never had a problem, until now.  I have another talk next week and thought I would update the presentation.  I have updated to Mavericks and also the latest Keynotes 6.0.1.  When I went to play the presentation, it informed me that some of the .mov files needed to be updated to run on QuickTime.  I pressed the convert button, only to be informed that most of the files could not be upgraded.  When I try to play again, all I get is a blank black screen.  I closed Keynotes and reopened the file in version 5.3, but still the same problem occurred . Most of my video files are of actual rescues and have been transferred from old VHS tapes. and are invaluable to me.  It also means my presentation next week will be without the powerful impact these rescue videos present.  I have searched through the support communities and also on the web, and have tried various suggestions and trial programs for converting the files, but none have been able to provide me with any playable video.  Can anyone please help me to overcome this problems?  Any help would be gratefully received.  

    It's never a good idea to change operating systems and applications without fully testing over a period of time with existing work files first. As Mavericks is such a new operating system, there are a few quirks that are still in place compared to its predecessors.
    Many video types do not play in the new Quicktime 10 player that is included with Mavericks, but version 7 should play any type. Down load and install QuickTime player version 7 for Mavericks, this is a much better movie player than the simple version now included with Mavericks from here:    Download Apple QuickTime Player version 7
    Open the video file in QT 7 and check the video plays correctly.
    Let me know the CODEC used, it is listed against Format in the QT Inspector, (command I or Window > show movie inspector)
    In theory Keynote should now play your video again but let me see how you get on.

  • Is there really no one who can help me with my question postet 3 days ago!?

    I have a problem with blurry images after publishing -Am I really the only one who thinks this is a big problem -I tried to get some help 3 days ago? Is there other forums that can help me on this topic?
    It looks fine in iweb, but not in the browser after publishing... I'ts only with small logo images with hard graphichs in jpeg, its not my compression, it looks fine before publishing...

    dear wyodor, I thought that I explained my problem all right in my post? well,
    when I put a logo in the corner of my site -in my case a jpg file with some text, it looks good in iweb, but after publishing its not possible to read the small text because of the way iweb compress photos - my question is -can I do anything to keep the jpeg-compression i made i photoshop? Is there no way in iweb to control the compression? Its really frustrating -and the only really problem I have with iweb
    se how my logo looks im my site:
    http://web.mac.com/pierrienevoldsen/24x36.dk/om_24x36.dk.html
    I have the same logo twice now just to check different advises, but still its impossible to read the small lettes -but not in iweb

  • I need help some with simple ejb3 app - urgent

    I�m trying to write a small app using ejb3 and I have a big problem.
    1. I created a Session bean in ejb module
    package beans;
    import javax.ejb.*;
    @Stateless()
    public class testBean implements beans.testLocal {
        public String test(String name)
            return "hello "+name;
    package beans;
    public interface testLocal {
         String test(String name);  
    }2. In web module I created a servlet and as in the 'Ejb3 Persistence in netbeans tutorial" and then I called my session bean (http://www.netbeans.org/kb/55/ejb3-preview.html#Exercise_2)
    protected void processRequest(...)
      ...out.println("<body>");
         out.println(aTestBean.test("a Test"));   //bean method call
         out.println("</body>");
         out.println("</html>");        
         out.close();
        @EJB
        beans.testBean aTestBean;   //reference to the session beanI compiled and deployed it.
    And after I invoked the servlet I got that message :
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet test threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    I also tried to do it like in the flash ejb3 presentation but I got the same result (http://j2ee.netbeans.org/NetBeans_EJB3.html)
        beans.testBean aTestBean;   //reference to the session bean
       @javax.ejb.EJB
        private void setTestBean(beans.testBean aTestBean)
            this.aTestBean = aTestBean;
        }How can I call methods from session beans.
    I'd like to do something like this.
    1.Create an EntityBean for my database.
    2 Create a session bean to manage those EntityBeans � like in the tutorial
    3.Create a web module and a servlet with method calls from that session bean
    4. Create a MIDP 2.0 app using "Mobile client to web app' wizard from the mobility pack, to generate stubs for servlet methods.
    All I need to create one simple method
    public String getDataFromDB(int ID)
    //and here the call to the session bean
    return sesionbeanReference.getData(ID);
    help me

    Hi
    I am Facing th same Problem ,But the solution you have give
    that use Local Interface intead of Bean
    In my case I am using Remote Interface and not the local its giving me the same problems as the Query Posted
    javax.servlet.ServletException: Servlet.init() for servlet NewServlet threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    note The full stack trace of the root cause is available in the Sun Java System Application Server Platform Edition 9.0 Beta logs.
    My EJB Refernce to rmote interface looks like this
    @EJB ProcessAdvertisementRemote oProcessAdvertisementRemote;
    I am caaling a method on that inferface ,so its giving these exceptions
    Can u plz help me out
    Geetanjalee

Maybe you are looking for

  • Runtime error when launching Acrobat 9 or Reader 9

    Reference: KB404597 According to the information in the referenced KB article, this is a known problem with Adobe Systems. The suggested "workaround" didn't work. As it is now, I cannot open any PDF files, whether from Adobe Reader, within e-mails, o

  • How to auto login and pass data (parameter) to ApEx at the same time

    Does anybody know how to automatically login to apex (e.g. from JSP page) and pass a parameter value at the same time? I can use wwv_flow_custom_auth_std to login, I can even choose a page but I cannot pass any data (at least I do not know how). If I

  • How to use htree on form 6i

    Hi guys! I have no idea how to use the tree in the form 6i.I have a table which defines the testcode and testname of the lab test and made the forms which show the test results. I gave the name to these forms as describes in the table i.e.(testname).

  • Replicated session state with WLS 5.1 sp 6 in cluster

              Hello, i've seen in BEA documentation this:           Applications Using Frames Must Coordinate Session Access           If you are designing a web application that utilizes multiple frames, keep in mind           that there is no synchroni

  • Linkage for Template Monster Fla Files

    Alright I have looked about everywhere, except the right place. I know 0 about flash. Just got Flash CS3. Everything I find is for older versions of flash including the info on template monster. I need to know how to assign links for the buttons in t