XML data and duplicating MCs for gallery

Ok big question...
how would i go about loading XML data in this format ,
<info>
<category></category>
<subcategory></subcategory>
<picture>
http://img.</picture>
</info>
<info>
<category></category>
<subcategory></subcategory>
<picture>
http://img.</picture>
</info>
Then About 20 additional Infos like that. Now the whole xml
list has the same tags. How would i go about displaying them in
flash? I wanted to use one MC and have it duplicate for each info
category and place the MCs on the stage so it looks like a gallery.
Each MC would have a picture with some info on it loaded form the
XML.
I think i would need to use the Dataset but im not even sure
how i would go about doing this.

Something like this
http://www.adobe.com/products/flash/flashpro/video/gallery/
But for pictures only i don't need something that complex
also i don't need to sort anything. I was hoping to just use the
components and bind them. Also the xml feed would be updated every
couple of minutes with more content so i might need to list like 20
thumbs then make a button to seperate the loaded content. So maybe
like 20 thumbs showing then they click a page 2 button and it shows
the next 20 thumbs. That layout out is perfect though.

Similar Messages

  • I have LR from 2 through 4.4,  I am simply trying to adjust CR2s, and convert the them JPEG.  LR says my Perfectly Clear is expired but my update is up to date and all paid for.  What is Perfectly Clear and how do i get this puppy to be part of the team?

    i have LR from 2 through 4.4,  I am simply trying to adjust CR2s, and convert the them JPEG.  LR says my Perfectly Clear is expired but my update is up to date and all paid for.  What is Perfectly Clear and how do i get this puppy to be part of the team?

    Perfectly Clear is a 3rd party commercial plugin for Lightroom.
    http://www.athentech.com/products/plugins/
    Have you ever installed it as a trial in the past?

  • TS4000 What is the "correct" date and time settings for icloud reminders?

    What is the "correct" date and time settings for icloud reminders?

    Sep. 18th. We don't know what time.

  • How to convert a data set into a xml data and vice versa

    i am new to oracle with xml..
    my aim is to convert a data set into a xml data and vice versa..
    my work is as follows...
    my query:
    select rggpk,rggcode,rggname from ms_regiongeo
    to convert a data set into a xml*
    select XMLType(trim(replace(dbms_xmlgen.getXML('select rggpk,rggcode, rggname from ms_regiongeo'),'<?xml version="1.0"?>',''))) XML_DATA from dual;
    (this works fine and output of this query is as follows..)
    <ROWSET>
    <ROW>
      <RGGPK>201</RGGPK>
      <RGGCODE>Asia</RGGCODE>
      <RGGNAME>Asia</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>1</RGGPK>
      <RGGCODE>OTH</RGGCODE>
      <RGGNAME>Others</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>21</RGGPK>
      <RGGCODE>COB</RGGCODE>
      <RGGNAME>Africa and Yemen</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>2</RGGPK>
      <RGGCODE>AUS</RGGCODE>
      <RGGNAME>Australia</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>23</RGGPK>
      <RGGCODE>IND</RGGCODE>
      <RGGNAME>Indian Sub Continent</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>24</RGGPK>
      <RGGCODE>TVM</RGGCODE>
      <RGGNAME>North America</RGGNAME>
    </ROW>
    </ROWSET>
    and to reverse this process, I tried a query like this..*
    select EXTRACTVALUE (XML_DATA,'ROWSET/ROW/RGGPK') as EMP_ID
    from(
            select XMLType(trim(replace(dbms_xmlgen.getXML('select rggpk,rggcode, rggname from ms_regiongeo'),'<?xml version="1.0"?>',''))) XML_DATA from dual
    )tab1but failed.. and raised with an eror: ORA-19025
    help me..
    regards,
    john

    Hi-
    my aim is to convert a data set into a xml data  You can refer to the below posts
    Adding namespace to XML output
    Re: how to convert table data in xml format based on the xsd.

  • Script for parsing xml data and inserting in DB

    Thank you for reading.
    I have the following example XML in an XML file. I need to write a script that can insert this data into an Oracle table. The table does not have primary keys. The data just needs to be inserted.
    I do not have xsd file in this scenario. Please suggest how to modify Method 1 https://community.oracle.com/thread/1115266?tstart=0 mentioned so that I can call the XML mentioned below and insert into a table
    Method 1
    Create or replace procedure parse_xml is 
      l_bfile   BFILE; 
      l_clob    CLOB; 
      l_parser  dbms_xmlparser.Parser; 
      l_doc     dbms_xmldom.DOMDocument; 
      l_nl      dbms_xmldom.DOMNodeList; 
      l_n       dbms_xmldom.DOMNode; 
      l_file      dbms_xmldom.DOMNodeList; 
      l_filen       dbms_xmldom.DOMNode; 
      lv_value VARCHAR2(1000); 
       l_ch      dbms_xmldom.DOMNode; 
    l_partname varchar2(100); 
    l_filename varchar2(1000); 
      l_temp    VARCHAR2(1000); 
      TYPE tab_type IS TABLE OF tab_software_parts%ROWTYPE; 
      t_tab  tab_type := tab_type(); 
    BEGIN 
      l_bfile := BFileName('DIR1', 'SoftwareParts.xml'); 
      dbms_lob.createtemporary(l_clob, cache=>FALSE); 
      dbms_lob.open(l_bfile, dbms_lob.lob_readonly); 
      dbms_lob.loadFromFile(dest_lob => l_clob,    src_lob  => l_bfile,    amount   => dbms_lob.getLength(l_bfile)); 
      dbms_lob.close(l_bfile);  
      dbms_session.set_nls('NLS_DATE_FORMAT','''DD-MON-YYYY'''); 
      l_parser := dbms_xmlparser.newParser; 
      dbms_xmlparser.parseClob(l_parser, l_clob); 
      l_doc := dbms_xmlparser.getDocument(l_parser); 
        dbms_lob.freetemporary(l_clob); 
      dbms_xmlparser.freeParser(l_parser); 
      l_nl := dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(l_doc),'/PartDetails/Part'); 
        FOR cur_emp IN 0 .. dbms_xmldom.getLength(l_nl) - 1 LOOP 
        l_n := dbms_xmldom.item(l_nl, cur_emp); 
        t_tab.extend; 
        dbms_xslprocessor.valueOf(l_n,'Name/text()',l_partname); 
        t_tab(t_tab.last).partname := l_partname; 
        l_file := dbms_xslprocessor.selectNodes(l_n,'Files/FileName'); 
        FOR cur_ch IN 0 .. dbms_xmldom.getLength(l_file) - 1 LOOP 
          l_ch := dbms_xmldom.item(l_file, cur_ch); 
          lv_value := dbms_xmldom.getnodevalue(dbms_xmldom.getfirstchild(l_ch)); 
          if t_tab(t_tab.last).partname is null then t_tab(t_tab.last).partname := l_partname; end if; 
          t_tab(t_tab.last).filename := lv_value; 
        t_tab.extend; 
       END LOOP; 
       END LOOP; 
        t_tab.delete(t_tab.last); 
      FOR cur_emp IN t_tab.first .. t_tab.last LOOP 
      if t_tab(cur_emp).partname is not null and  t_tab(cur_emp).filename is not null then 
        INSERT INTO tab_software_parts 
        VALUES 
        (t_tab(cur_emp).partname, t_tab(cur_emp).filename); 
        end if; 
      END LOOP; 
      COMMIT; 
      dbms_xmldom.freeDocument(l_doc); 
    EXCEPTION 
      WHEN OTHERS THEN 
        dbms_lob.freetemporary(l_clob); 
        dbms_xmlparser.freeParser(l_parser); 
        dbms_xmldom.freeDocument(l_doc); 
    END; 
    <TWObject className="TWObject">
      <array size="240">
        <item>
          <variable type="QuestionDetail">
            <questionId type="String"><![CDATA[30]]></questionId>
            <questionType type="questionType"><![CDATA[COUNTRY]]></questionType>
            <country type="String"><![CDATA[GB]]></country>
            <questionText type="String"><![CDATA[Please indicate]]></questionText>
            <optionType type="String"><![CDATA[RadioButton]]></optionType>
            <answerOptions type="String[]">
              <item><![CDATA[Yes]]></item>
              <item><![CDATA[No]]></item>
            </answerOptions>
            <ruleId type="String"><![CDATA[CRP_GB001]]></ruleId>
            <parentQuestionId type="String"></parentQuestionId>
            <parentQuestionResp type="String"></parentQuestionResp>
          </variable>
        </item>
        <item>
          <variable type="QuestionDetail">
            <questionId type="String"><![CDATA[40]]></questionId>
            <questionType type="questionType"><![CDATA[COUNTRY]]></questionType>
            <country type="String"><![CDATA[DE]]></country>
            <questionText type="String"><![CDATA[Please indicate]]></questionText>
            <optionType type="String"><![CDATA[RadioButton]]></optionType>
            <answerOptions type="String[]">
              <item><![CDATA[Yes]]></item>
              <item><![CDATA[No]]></item>
            </answerOptions>
            <ruleId type="String"><![CDATA[CRP_Q0001]]></ruleId>
            <parentQuestionId type="String"></parentQuestionId>
            <parentQuestionResp type="String"></parentQuestionResp>
          </variable>
        </item>
      </array>
    </TWObject>

    Reposted as
    Script to parse XML data into Oracle DB

  • Form converts to XML data and I need the pdf form to be visable

    Hello all,
    I just created a form in pro 8 for our salesmen and it is a sales order form. I have sent it out to them to fill out and return it by pressing the email button in the form and some have come back as XML date stream and some came back as the original form with all fields filled in. I want to know how to get all of them to come back filled in instead of the XML Data. All salesmen have Reader 8 installed on the machines. Can anyone help me with this problem?
    Thanks in advance,
    Tony

    Hi there,  I'm myseld using the Application data-field in order to collect mobile forms OFFLINE.
    I can collect as many mobile form as i want BUT, of course, need to be online to sync the data from mobile to their cloud.
    Hope that helps.
    Otherwise, would probably need to plug ur idevice and look for the application database with such tool as iConnector.

  • Java input xml data and xsl template -output file excel

    i need help or same special link on web.
    i must develop code or use a special tool that make this.
    INPUT:
    xml that contain real data
    xsl that explain a report template
    OUTPUT:
    file excel that show the template xsl with xml data source
    thank for help me.

    Hi,
    Please refer to "Oracle XML Publisher User's Guide".
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/indexes/documentation/index.html
    This is also explained in the document attached in (Publishing Concurrent Requests with XML Publisher [ID 295409.1]).
    Thanks,
    Hussein

  • Trying to bind XML data and form fields

    I have a fairly simple PDF - and I am trying to bind XML data to he form fields.
    In the designer I can bring up the data connection and
    select Global - for the binding method - and as I understand it - this will link Form Fields and XML data fields with the same name - (sounds logical to me)
    but all that happens is :
    I see the name of the field in the form field rahter than seeing the actual data
    should I select : None as the binding or normal ....
    but Normal doesnt show Anything - even after i select it .
    I can't quite seem to make this work -
    Any help here would be appreciated
    Thanks :)

    This is on a stand - alone system
    Using Designer ES ......
    I saved the Form as an xdp form
    and it seems as if all goes well until
    View the data and nothing appears - or
    just the names of the fields appear

  • Submitting xml data and thereby kicking off LiveCycle Process

    I have a simple form where I collect the data and put it in a field which contains xml. I also have a process that should be started when I click a button on the form. Hence I have made the databinding for the process SOAP endpoint and have made the binding to the xml-text field in the form.
    However something is wrong, because nothing happens when I click the button.
    So how do I submit xml-data to a LiveCycle process to kick it off through the form.
    Sincerely
    Kim

    Dear Mr. Ram KM,
    The business mentioned above by you was absolutely perpect.
    Adobe LiveCycle® ES (Enterprise Suite) is an integrated server solution that blends data capture, information assurance, document output, process management, and content services.
    I may guess you have to install ADOBE LIVECYCLE WORKBENCH ES. The Adobe liveCycle Designer ES comes with Workbench ES once you installed. Please go through the below information, you may get some idea.
    1. Significance of folders in Documentum Repository (for all regions)
    WorkBench -> where all work in progress or finalized templates should reside. Designer must carry his/her development of Form/Template design in this folder.
    Schema -> where the XML Schema (Using which data needs to bound to the template) should reside. This schema should be the same across the entire region (dev, UAT, Prod).
    Templates -> This is the run time folder. CPR application points to this folder while searching for templates. Designer should never work on this folder or move/copy any template from WorkBench to this folder. This action will be taken care of by CPR application.
    Master Fragment Library -> All the fragments should reside inside this folder. Once one fragment is changed in this folder then change will be reflected immediately to all the templates that use this fragments.
    NEW TEMPLATE DESIGN
    2. Design approach through workbench ES.
    Designer selects UAT region through WorkBench ES to do the development of the Forms/Templates.
    Designer opens up an existing form/letter or creates a new form/letter through designer in Workbench ES
    He/She caries out the design (forms/letters) in Workbench folder.
    He/She carries out the design of fragments in Master Fragment Library folder.
    Once designer is satisfied with design he/she right clicks on the document and goes to the history popup.
    Select the latest document in the list and click on Save as button in the popup screen to save it to the local hard disk or any file system.
    Designer now goes to CPR Application and click on Add button.
    The Add popup opens up.
    Designer clicks on Browse button and adds the letter/forms she had downloaded to his/her disk and adds corresponding Meta data. He/She then hits Done. At this point behind the scene CPR application puts the corresponding letter/Form into Templates folder with all the meta data set.
    The UAT test on the newly uploaded templates then happens.
    Once the UAT is successful then the corresponding templates need to be promoted to Production.
    First Step: Promoting new Fragments to Production
    Administrator directly logs into Production fragment library folder and creates the fragments again in production. This needs to be done very carefully as this fragments will be available immediately for end users (on click of Save in the designer).
    Note: The downloaded fragments (from UAT region) can be moved to production directly using drag and drop feature of Workbench ES.
    Second Step: Promoting new templates to Production
    If UAT is successful Administrator then uploads the template file into production the way he/she did in UAT region. He/she needs to put appropriate meta data in production also.
    EXISTING TEMPLATE MODIFICATION
    3. Design approach through workbench ES.
    Designer selects UAT region through WorkBench ES to do the change of the existing Forms/Templates.
    Designer opens up an existing form/letter or creates a new form/letter through designer in Workbench ES
    He/She caries out the design (forms/letters) in Workbench folder.
    He/She carries out the design of fragments in Master Fragment Library folder.
    Once designer is satisfied with design he/she right clicks on the document and goes to the history popup..
    Select the latest document in the list and click on Save as button in the popup screen to save it to the local hard disk or any file system.
    Designer now goes to CPR Application and finds the templates he/she wants to modify.
    Designer highlights the corresponding row and hits on Modify.
    The Modify popup opens up.
    Designer clicks on Browse button and adds the letter/forms she had downloaded to his/her disk and edits corresponding Meta data (if needed). He/She then hits Done. At this point behind the scene CPR application puts the corresponding letter/Form into Templates folder with all the meta data set. Also it inactivates the older version if any.
    The UAT test on the newly uploaded templates then happens.
    Once the UAT is successful then the corresponding templates need to be promoted to Production.
    First Step: Promoting existing Fragments to Production
    Administrator directly logs into Production fragment library folder and updates the fragments again in production. This needs to be done very carefully as this fragments will be available immediately for end users (on click of Save in the designer).
    Note: The downloaded fragments (from UAT region) can be moved to production directly using drag and drop feature of Workbench ES.
    Second Step: Promoting existing templates to Production
    If UAT is successful Administrator then uploads the template file into production the way he/she did in UAT region. He/she needs to put appropriate meta data in production also.
    FormFragsRenderPdfServlet:
    import java.util.Properties;
    import java.io.*;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import com.adobe.etech.FileUtils;
    import com.adobe.formServer.client.EJBClient;
    import com.adobe.formServer.interfaces.*;
    import com.adobe.pso.eforms.model.XDPWrapper;
    import com.adobe.pso.eforms.model.FragmentMetadata;
    import com.adobe.pso.eforms.model.TemplateMetadata;
    import com.adobe.pso.eforms.model.XSDReference;
    import com.adobe.pso.eforms.util.FormServerDefinition;
    import com.adobe.pso.eforms.util.RenderFormOptions;
    import com.adobe.pso.eforms.util.RenderUtils;
    import com.adobe.pso.eforms.util.XDPUtils;
    * @version 1.0
    * @author
    public class FormFragsRenderPDFServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    System.err.println("RenderPdfServletScott - doGet");
    try {
    ServletContext context = this.getServletContext();
    // 1. Construct the web app's context url
    String contextURL = request.getScheme()
    + "://"
    + request.getServerName()
    + ":"
    + request.getServerPort()
    + request.getContextPath();
    // 1a. If making an EJB remote call to FS, construct the JNDI properties object.
    Properties jndiProps = new Properties();
    jndiProps.setProperty("java.naming.factory.initial","com.ibm.websphere.naming.WsnInitialC ontextFactory");
    jndiProps.setProperty("java.naming.factory.url.pkgs","com.ibm.ws.naming");
    jndiProps.setProperty("java.naming.provider.url","corbaloc:iiop:127.0.0.1:2809");
    // 2. Create FormServerDefinition object to define the form server invocation method
    FormServerDefinition fServDef = new FormServerDefinition();
    fServDef.setInvocationMethod(FormServerDefinition.EJB_REMOTE);
    fServDef.setJndiProperties(jndiProps);
    //Specify the path to load the data from
    byte[] cXMLData = getBytesFromFile(new File (context.getRealPath("/data/data.xml")));
    // 3. Set the various options for rendering the form. The setFormQuery() method establishes the name
    // of the temporary file created on the filesystem to hold the "pre-rend

  • Auto Lexer on XML Data and Exadata (11.2.0.2.0)

    I am trying to migrate to Auto Lexer from World Lexer. We have a table with a CLOB Column where we store some data in XML format and we search via INPATH
    WHERE CONTAINS (XML,'(( (2005) INPATH(/record/extend/identifier) ))' ) > 0
    Index create scripts are
    WORLD_LEXER
    CREATE INDEX TEST_XML ON TEST(XML)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS
    filter GTP_FILTER_NULL
    section group GTP_SECTION_GROUP_PATH
    lexer GTP_LEXER_WORLD
    wordlist GTP_WORDLIST_BASIC
    stoplist GTP_STOPLIST_NULL
    storage GTP_STORAGE_BASIC
    For the AUTO LEXER => Lexer GTP_LEXER_AUTO
    For the World Lexer Index I get results but the Auto Lexer returns zero rows.
    I am running on ExaData as well. (11.2.0.2)
    Edited by: amin_adatia on 16-Aug-2011 11:31 AM

    Can you put together a reasonably complete test script that has some sample data and shows the problem occurring? I'm using 11.2.0.2 (not Exadata), and I haven't had any issues.

  • Steps to move Data and Log file for clustered SQL Server

    Hi guys 
    we have Active'passive SQL 2008R2 cluster environment.
    looking for steps to move Data and log files from user Database  and System Database for  SQL Server Clustered Instance. 
    Currently Data and log  files resides on same drive for user and system Databases..
    Thanks
    Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach A.Shah

    Try the below link
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/468de435-3432-45c2-a50b-23519cd2686e/moving-the-system-databases-in-a-sql-cluster?forum=sqldisasterrecovery
    -Prashanth

  • Read XML data and Insert into SQL Database

    Hi Everybody,
    i am new to Oracle SOA.
    Can anybody help me out to how to insert xml data into sql server using BPEL and JDeveloper (with clear steps).
    thanks in advance
    Vishnu Kumar

    Hi Peter,
    you are right,at high level i was able to figure at these things.
    But i don't know how to implement it using jdeveloper.
    It will be more helpful if you can give me detailed steps to do it.
    Thanks
    Vishnu Kumar

  • Date and Time stamp for the archives

    Hi,
    I'm trying to set up a date/time stamp field for a Documaker archive.
    I've added a TIME_STAMP field in my APPIDX.DFD and I populate the field using a DAL script, invoked by a PreTransDAL line in my AFGJOB file. That works fine but, the DAL script being invoked for every transaction, it adds to the processing time.
    I do not need an exact date/time stamp for each transaction in the batch, I could use the same one for all the transactions. That would require the TIME_STAMP global variable to be populated once, at the job level, at the beginning of each batch.
    Any suggestions?
    Thanks.

    Hi Gaetan,
    Try using a BatchBannerBeginScript to populate a GVM with the date/time, and then reference this GVM in your APPIDX.DFD. In this manner the value will be updated at the start of processing for each batch rather than each transaction. Or, consider the possibility of adding the transaction date/time into the extract data and then sourcing from that point. Either should work. In my experience most customers prefer that the archive date/time come from the system of record rather than the time the transaction was archived -- unless of course the customer actually wants to record the time the transaction was archived, in which case the method I've described above should work.
    Enjoy!
    Andy

  • Date and Time Issue for Mult Org...

    Hello,
    How can I manage the date time, if my organizations have different plant and location?
    I.e. The database server located in Pacific Time zone and the application may access from new plant German time zone.
    Whenever the German business center enters any sales transaction it should take German current date and time instead of Pacific Time.
    Pls advice me
    Thanks,Raghu.K

    Hi,
    While defining a Location, you can mention the time zone for that location and also the inventory organisation to which this location belongs.
    So, this location can be assigned to your organisations. You can access the time zone according to the location you select.
    regards

  • Date and Time adjustments for multiple photos

    Hello, thanks for providing the space for new users, and thanks in advance for your assistance.
    I am currently moving out of apple aperture/iphoto and across to lightroom 5.
    The OCD part of me likes to have my library organized, and I noticed that when I transferred my library across it is in a bit of a mess, so I am currently in the process of organizing the library and cleaning it up (approximately 18000 photos)
    Any how, I have almost settled on a folder structure (YYYY/MM - I feel for the number of photos I have trying to nut down to day might be to much - happy to receive advise on this also)
    For the most part, the photos have correct date and time from the commencement of the digital era (for me 2006 onwards)
    Photos pre 2006 are in negative form, and I am currently in process of having these scanned and imported into library, I have a batch done every month.  Adjusting the date and time from the creation date is where I am running into trouble.
    I have looked around the web and various forums to no avail.
    Firstly, I organize the photos into the correct order.  I then select the first photo and the then select the remaining photos.  I then select the adjust date/time from the menu and select the first option, adjust to new date and time, lets say 01/01/1990 at 1200 PM.
    The result I end up with is the first photo (the more selected photo if correct term) has 01/01/1990 @ 1200 as date and time, the remaining have 01/01/1990 as date (if I am lucky), and the times jump all over the place.  Sometimes it wont even change the date time for the remaining photos.
    What I am trying to achieve is either the same Date/Time for all the photos when I select a batch, or have them increment in time by a standard amount (i.e 1 minute (1200/1201/1202) or 1 second (1200:00/1200:01/1200:02)), and I just dont seem to be able to work this out to automatically do this, currently I have to achieve this by a manual adjusting each photo (some 200 at a time) which is really labor intensive
    Thanks in advance, and hoping an easy solution
    Regards
    Dean

    Thanks, that seemed to fix the problem.
    Workflow is:
    1) In grid view arrange photos in correct order
    2) Rename photos with a name & sequence (i.e. photos-1), this appears to then keep the photos organized as how I had arranged in grid view
    3) Export photos & delete original photos from my master library
    4) Open exported photos in an EXIF editor and change date & time to a common format (I am currently using the seasons as a guide, i.e. the photos that I recall being taken in spring are dated the first day of spring, using noon as the time)
    5) Import back to Lightroom and organizing as per my usual structure.
    This has allowed me to easily batch change date and times, keeping the correct order and has drastically reduce my workload, thanks for the suggestion!

Maybe you are looking for

  • Yahoo messenger on mac version

    i just wanna know how to run a mac version of yahoo messenger. im a new user of mac thats why i dont know how to run ym using mac. i already downloaded mac version of yahoo and i can sign in as my yahoo id, but the problem is i cannot make a call, pl

  • Everytime I try to open safari on MacBook Pro it crashes

    Since yesterday, every time I have tried to open safari on my macbook, it crashes and comes up with an error report. The only way I can access safari is when I start up my mac using the safe boot. Please help I have an assignment to finish as I am in

  • Using 12V DC to DC converter as iBook power supply in car

    I've built a power distribution box for my 12 volt accessories in my car. I bought a Carnetix DC to DC converter to power my VGA touchscreen connected to my G4 1.42 ghz iBook. It can also provide stable 12 volt power for a laptop, with settings of 18

  • Disable Firewall for Windows 8.1 in Domain Location Network Settings via GPO

    I have Clients OS XP, 7, 8 and 8.1 Now I want disable only 8.1 firewall automatic via GPO. It's possible to apply only Windows version purpose with out any group and OU. Md. Ramin Hossain

  • Forms6i run-time crahses as I change pll

    I am sharing some data between forms (6i) using pll. Variables are declared in a package spec inside pll. As soon as I change the package spec (to add a new varibale, all the forms start to crash). The only way to resolve it to recomiple all the form