Creating dynamic link on each click

Hey everyone!
got another small issues... this is the last thing i need to
fix to finish my project :-).. what im doing is creating a map that
will allow you to click on a state and using PopUpManager, display
data from that state (the data resides within an xml file).
right now on each click, i run clickState="createPopUp()".
the createPopUp functions runs and initializes the http service to
grab the xml file. in the result handler.. i have it grab the data
for the state. the problem is, i cannot figure out how to make it
dynamic so that when u click on one state it grabs the name and
then uses the name to grab the data from the xml file. for example,
right now it always grabs event.result.venuelist.michigan but i
want it to grab event.result.venuelist.stateName so its dynamic (or
something like that). Thank you so much for the help!!!
Here is the result handler that grabs the info from the
xml... here i just set it to grab the data for michigan to make
sure it was working..
quote:
public function resultHandler(event:ResultEvent):void {
/* var icon:Object = map.target.selected.name; */
arrcol = event.result.venuelist.michigan as ArrayCollection;
dg.dataProvider = arrcol;
Here is the code for creating the popup... i tried to use
this.selectedItem.name to grab the name of the state but it didnt
work. i did it in an alert box to test if it was grabbing the name.
quote:
public function createPopUp():void {
var icon:Object = this.selectedItem.name;
var state:String = icon;
Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
getXML.send();
PopUpManager.addPopUp(panel, this, true);
PopUpManager.centerPopUp(panel);
Here is the entire code... there are two xml files... one
inline and one external... the one inline which is shown below
contains the name for each state in the <name></name>
brackets... that is the info i need to grab once i click so i can
grab the info for that state from the external xml file. (i left
out some states from the populationdata xml to shorten the code for
posting)
quote:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
xmlns="*" layout="absolute" backgroundGradientAlphas="[1.0, 1.0]"
backgroundGradientColors="[#FFFFFF, #FFFFFF]" width="739"
height="481" creationComplete="init()">
<!--<mx:XML id="list"/>
<mx:HTTPService id="getXML" url="VenueList/list.xml"
resultFormat="e4x" result="list = XML(event.result);"/>-->
<mx:HTTPService id="getXML" url="list.xml"
result="resultHandler(event)" resultFormat="object"/>
<!--
The populationData contains elements for each state: the
state code (eg, "ca")
and the data (population). This data set assumes you will
color the map based on
a colorFunction (see below). Alternatively, you can supply a
color for each state
directly in the model: <color>0xffcccc</color>
-->
<mx:XML id="populationData" format="e4x" xmlns="">
<list>
<state><name>California</name><code>ca</code><present>0</present></state>
<state><name>Texas</name><code>tx</code><present>1</present></state>
<state><name>NewYork</name><code>ny</code><present>1</present></state>
<state><name>California</name><code>fl</code><present>0</present></state>
<state><name>California</name><code>il</code><present>1</present></state>
<state><name>California</name><code>pa</code><present>0</present></state>
<state><name>California</name><code>oh</code><present>1</present></state>
<state><name>California</name><code>mi</code><present>1</present></state>
<state><name>California</name><code>ga</code><present>0</present></state>
<state><name>California</name><code>nj</code><present>1</present></state>
<state><name>California</name><code>nc</code><present>0</present></state>
</list>
</mx:XML>
<mx:Style>
global {
modalTransparencyBlur: 0;
modalTransparency: 0.6;
modalTransparencyColor: black;
modalTransparencyDuration: 500;
</mx:Style>
<mx:Script>
<![CDATA[
import mx.events.ListEvent;
import mx.controls.dataGridClasses.DataGridColumn;
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import mx.containers.Panel;
import mx.controls.Button;
import mx.controls.Spacer;
import mx.controls.DataGrid;
import mx.containers.ControlBar;
import mx.controls.dataGridClasses.DataGridColumn
import mx.managers.PopUpManager;
import mx.controls.Alert;
import mx.events.ListEvent;
public var panel:Panel;
public var arrcol:ArrayCollection = new ArrayCollection();
public var dg:DataGrid = new DataGrid();
public var arr:Array = [];
public function init():void {
var d1:DataGridColumn = new DataGridColumn;
var d2:DataGridColumn = new DataGridColumn;
var d3:DataGridColumn = new DataGridColumn;
var d4:DataGridColumn = new DataGridColumn;
var d5:DataGridColumn = new DataGridColumn;
var d6:DataGridColumn = new DataGridColumn;
var b1:Button = new Button();
var cb:ControlBar = new ControlBar();
var s:Spacer = new Spacer();
b1.label = "Click here to return to the map";
b1.addEventListener(MouseEvent.CLICK, closePopUp);
s.percentWidth = 100;
cb.addChild(s);
cb.addChild(b1);
dg.width = 638
dg.height = 146
d1.width = 150;
d1.headerText = "Venue Name";
d1.dataField = "name";
d2.width = 150;
d2.headerText = "Address";
d2.dataField = "address";
d3.width = 100;
d3.headerText = "City";
d3.dataField = "city";
d4.width = 50;
d4.headerText = "State";
d4.dataField = "state";
d5.width = 50;
d5.headerText = "Zip";
d5.dataField = "zip";
d6.width = 100;
d6.headerText = "Phone";
d6.dataField = "phone";
arr.push(d1);
arr.push(d2);
arr.push(d3);
arr.push(d4);
arr.push(d5);
arr.push(d6);
dg.columns = arr;
panel = new Panel();
panel.title = "Here are our venues:";
panel.width = 658;
panel.height = 222;
panel.addChild(dg);
panel.addChild(cb);
public function resultHandler(event:ResultEvent):void {
/* var icon:Object = map.target.selected.name; */
arrcol = event.result.venuelist.michigan as ArrayCollection;
dg.dataProvider = arrcol;
public function closePopUp(evt:MouseEvent):void {
PopUpManager.removePopUp(panel);
public function createPopUp():void {
var icon:Object = this.selectedItem.name;
var state:String = icon;
Alert.show(state, 'Alert Box', mx.controls.Alert.OK);
getXML.send();
PopUpManager.addPopUp(panel, this, true);
PopUpManager.centerPopUp(panel);
[Bindable]
public var stateData:ArrayCollection;
* This method uses the alpha setting to indicate mouseOver
and mouseOut events.
public function hilightState( event:*, alpha:Number ) : void
map.setStateAlpha( event.code, alpha );
* This method is invoked by the click event on the map. All
this does is set the comboBox to
* the state selected.
public function selectState( event:USAMapEvent ) : void {
var stateData:Object = map.stateData;
for(var i:Number=0; i < stateData.length; i++) {
if( event.code == stateData
.code ) {
break;
* This method is used to set the color of a state based on
the item given.
public function dataColor( item:Object ) : Number {
if( item.present > 0 ) return 0x2e81fe;
else return 0xe9e9e9;
]]>
</mx:Script>
<mx:CurrencyFormatter id="currFmt" />
<mx:NumberFormatter id="numFmt" />
<!-- Set the USAMap and its initial properties:
dataProvider - maps state codes to colors and valuesa
dataField - indicates which field should be displayed in the
dataTip
formatFunction - specifies a function to use to present the
data tip
clickState - event handler invoked when mouse is pressed and
released over a state
rollOverState - event handler invoked when mouse is rolled
over a state
rollOutState - event handler invoked when a mouse is rolled
out of a state
-->
<USAMap id="map" dataProvider="{populationData.state}"
dataField="population" colorFunction="dataColor"
mapLoaded="stateData = new ArrayCollection(map.stateData)"
clickState="createPopUp()"
rollOverState="hilightState(event,.5)"
rollOutState="hilightState(event,1)" left="10" top="10"/>
</mx:Application>

Tracy, not again!!!! :)
lastResult could be and should be used in AS.
If you've got a race condition - there will be a
desynchronisation between event & lastResult property. But it
does not mean that you can't use it - you should take measures to
prevent race conditions from occurring.
Cheers,
Dmitri.

Similar Messages

  • Creating dynamic link in column

    Hi All,
    I am using Jdev 11.1.1.2.0 . I am getting few urls that is comma seperated. I need to seperated different URL from the value and create no of link or golink equal to no of the value.Please suggest me how to do this.
    I need to create dynamically link and put diffent url value in destination property of Link
    How can i create dynamically link .

    I created a sample app for this. Please see if it is helpful.
    http://adf-use-cases.googlecode.com/files/LinkApp.rar
    I am displaying all the employees(first name) in a department as link. For now, the link is pointing to google. You can change according to your requirement.
    The code is written in DepartmentVORowImpl.java
    +public String getEmployeeName() {+
    RowSet rowSet = getEmployees();
    RowSetIterator ritr = rowSet.createRowSetIterator("new");
    StringBuilder formattedLink = new StringBuilder("");
    String requestURL = "http://www.google.com";
    String hrefPrefix = "<a href='";
    String targetProp = "' target='_blank' class='xfd' >";
    String hrefSuffix = "</a>";
    String employeeName = null;
    +while (ritr.hasNext()) {+
    Row row = ritr.next();
    formattedLink.append(hrefPrefix).append(requestURL).append(targetProp).append(row.getAttribute("FirstName")).append(hrefSuffix).append(" | ");
    ritr.next();
    +}+
    ritr.closeRowSetIterator();
    rowSet.closeRowSet();
    if (formattedLink != null && formattedLink.length() > 0)
    employeeName =
    formattedLink.substring(0, formattedLink.lastIndexOf(" | "));
    return employeeName;
    +}+

  • How to create dynamic links in one page with div panels

    HI
    I am using Dreamweaver CS3 with developer toolbox.
    I have a PHP page where I have two separated tabbed div
    panels.
    I want to show dynamic summary of data from database in one
    panel.
    In the other panel I have a table with dynamic text.
    I want to click on a link in the first panel with the summary
    data and see the whole record in the other panel table.
    How do I tell the dynamic link to send the wuery and show the
    data in the detailed panel without having to reload the whole page.
    I hope I am clear enough....
    Idan Agmon

    I asked something similar to this last week and was told by
    others much more experienced that it couldn't be done. Hopefully
    your quest will yield something.

  • How to create Dynamic Links

    Hi all,
    I have a table (let's call it Links) of structure like the following:
    Link_Lable varchar2(100),
    Link_Page_ID varchar2(5)
    How can I use rows in that table to generate a dynamic links so that when a Link_Label is clicked, the engine redirects to page of the value stored in the clicked Link_Page_ID?
    Any guideline is appreciated.

    See
    http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14377/rprt_drill.htm

  • How to create dynamic link which point to a BLOB column in report

    Hello,
    I am fighting with the issue for about 2 days.
    My purpose is to use Oracle Report Builder to build a report of our employee directory which contains employee's information and also employee's picture. The requirement is that our report is going to generate a html file to our web server. By creating a dynamic hyperlink to the Employee's name in the report output file (the html file generated to our web server), it should then display the corresponding employee's picture which is a BLOB column stored in our oracle database.
    I only can create the hyperlink for the employee's name if the link is static, like 'http://www.google.com
    But from the Oracle Reports 10g Release2 (10.1.2), about the exmaple 1: Dynamic hyperlink, I refered the link
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwcontxt%7Cprops%7Cpi_lay_hyperlink%7Ehtm/
    The link gave he following example shows a value for the Hyperlink property that specifies a link to a destination identified dynamically:
    'DEPT_DETAILS_' || LTRIM(TO_CHAR(:DEPTNO))
    where :DEPTNO is a column value retrieved from the database at runtime.
    I tried as the same way to want it dynamcially shows the column :EMP_PHTOT, which is one BLOB column, but it was failed.
    Anyone knows how to implement this? Any inputs is appreciated!
    Thanks,
    Jing

    What exactly is the error messag u are getting ?
    If u have a hyperlink which refers to www.oracle.com in ur pdf, does it work ?
    I think simple URL from PDF will not retrieve any data from the oracle database since it has to make some database connection.
    My suggestion would be whenever request for employee information comes,
    extract that picture from blob and put it a virtual folder in the application server.
    And from the pdf/report access the URL with reference to the picture...
    Rajesh Alex

  • Want to create dynamic link with ActionEvent

    Hi all,
    I am developing an application in JSF. I want to create links dynamically with their action event. I can create links dynamically, but I don't know how to provide actionEvent OR actionListener to those links.
    Any help will be appreciated. ( If possible, give me an example / sample code. )
    Thanks in advance,
    JSF GEEKS
    Edited by: jsfgeeks on Nov 24, 2009 10:15 AM

    commandLink?
    What do you mean when you say: "I want to create links dynamically with their action event."
    Do you need parameters? Or different action events?

  • Create dynamic links.

    Greetings:
    In a left nav column, I have several links:
    <cfmenu name="nav" type="vertical" bgcolor="white"
    fontcolor="black">
    <cfmenuitem display="page1"
    href="javaScript:ColdFusion.navigate('page1.cfm','myDiv')">
    </cfmenuitem> etc.
    I want each link to display the target page in the right
    table cell:
    <cfdiv id="myDiv" bind="url:page1.cfm">
    </cfdiv>
    I have got this working but It acts erratically.
    A few questions: does there need to be the same number of div
    tags as links, e.g. <cfdiv id="myDiv" bind="url:page2.cfm">
    </cfdiv> etc.?
    Does the target page need to be a standalone HTML document or
    can it be simply text that takes on the style elements of the area
    it displays in?
    Not a lot of postings re: cfmenu- are people using it?
    Thanks!

    There is no direct connection with the cfmenu and reference
    links. You can even use direct links without any cfmenu.
    such as:
    <a
    href="javascript:ColdFusion.navigate('content.cfm?page=aboutus','mainContent');">About
    Us</a>
    You can use any HTML/CFM template or text or image etc. for
    your binded divs. It is just URL.

  • Creating a Link on the Column Heading

    Good afternoon,
    I know with reports, you can create a link for each cell in the report attributes section. My question is it there's any way to create a link for the column header without hard coding it into the query that generating the results.
    Thanks in advance,
    Ivan

    Ivan,
    If you are using the classical reports, you have the option of creating column header using pl-sql block which will be dynamic. Thanks
    Regards,
    Manish

  • How Do I Create A Link To  A Different Page?

    I'm using the v10.1.2 Portal.
    I created 6 Oracle Portlets implemented using JSP. I then created 2 pages within the same page group.
    On page 1 I put Portlet_1a, Portlet_1b and Portlet_1c. On page 2 I put Portlet_2a, Portlet_2b and Portlet_2c.
    In Portlet_1a I want to create a link that, when clicked, will bring the user to Page 2.
    Can someone explain how I can go about doing this? What classes/api should I use? How do I specify a different page within the Page Group?
    Thanks,

    Hi,
    Its can be done, Im also using this.
    There are 2 ways how I do it
    1) I have a .properties file on the app server where I've put an attribute eg page2URL= http:\\......
    In Portlet_1a I read this attribute and use it for navigation. Every portlet instance will read the same attribute value.
    2) You can have a Personalization Object and put the page2URL attribute in the portlet defaults. This will store a seperate attribute value for each portlet instance
    PL/SQL portlets do it differently again, each page has a (unique) name, you can look up the name inside the portal database and build the url from there. I never done this trick though.
    There is a big difference in how the links work on the new portal version and the older one. Friendly links vs identified links.
    Classes you can use to help build an url
        try {
          //url = UrlUtils.constructHTMLLink(pr, UrlUtils.PAGE_LINK, "dummy", "", new NameValue[] {}, false, false);
          //url = UrlUtils.constructLink(pr, UrlUtils.PAGE_LINK, new NameValue[] {new NameValue("eventid", ""+1)}, false, false);
          url = pr.getRenderContext().getPageURL();
          pageLink = url.replaceFirst("<[aA] href=['\"]?(.*?[^'\"])['\"]?>(.*?)</[aA]>", "$1");
          pageLinkEnc = URLEncoder.encode(pageLink, "UTF-8");
        } catch(Exception e) { e.printStackTrace(); }Orcale API already creates a <A....link for me, I didnt want that, so I filtered the actual link from it
    Hope this helps a bit

  • Dynamic Links in Form

    Is there a way to create dynamic links in a form?
    For instance I have an interactive report/form if I click on the edit link the report takes me to the form to do an update based on the primary keys. I would like that form to also have links that can pass some foreign key values and take me to a related form to edit the related information.

    That is what I am trying to do, but I am unsure of how to pass the appropriate string with the values of the foreign/primary key.
    I am using the following URL, but the form doesn't seem to be populating based on the primary key
    <!--
    edit
    -->
    Message was edited by:
    dsn0wman

  • Dynamic links

    Hello all
    iWeb fab, but has anyone looked into creating dynamic links to iTunes, eg, if you have a Top 10 Playlist in your iWeb, when it change in itunes get it to automatically update in iWeb, would be cool feature.

    Hi,
    Still get a error message but it is a different one.
    1084: Systax error: expecting colon before right brace
    1084: Systax error: expecting identifier before right brace
    Here is my updated code:
    <mx:Repeater
    dataProvider="{feed.lastResult.rss.channel.item}">
    <mx:VBox verticalGap="0" backgroundColor="#EEF5EE"
    borderStyle="outset">
    <mx:LinkButton click="navigateToURL(new
    URLRequest({url}), '_blank')" label="{title}"/>
    </mx:VBox>
    </mx:Repeater>

  • Creating a LINK in ADF UIX table

    Dear sirs...
    is it possible to create a link for each row in an adf uix table? the link selects the row and forwards to another page.
    i have seen this in a JSP page, but uix????
    best regards

    Dear sirs...
    is it possible to create a link for each row in an adf uix table? the link selects the row and forwards to another page.
    i have seen this in a JSP page, but uix????
    best regards

  • I got problem on installing iTunes. When I clicked iTunes out, two windows popped out. One said the procedure entry point CFAttributed String Create Mutable could not be located in the dynamic link library Core Foundation.dll.

    I got problem on installing iTunes. When I clicked iTunes out, two windows popped out. One said the procedure entry point CFAttributed String Create Mutable could not be located in the dynamic link library Core Foundation.dll. and one just said *Itunes was not installed correctly.  Please re install I Tunes Error 7 (windows error 127) . I've tried uninstalling and reinstalling it. But either way cant work. I really need some of your help! PLS HELP ME!

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The error shares a similar pattern to that in the third box, so a similar approach should work. Look for CoreFoundation.dll in C:\Program Files (x86)\Common Files\Apple\Apple Application Support, delete it, then repair Apple Application Support.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Creating 3 links each with pop-up text box on the same slide

    Hi,
    I'm trying to create a slide that has 3 links and each link has a pop-up text box. I do not want to separate the pop-up text into separate slides. I have it so that there are 3 click boxes and each have the action "show" the proper text box. I also created another click box that acts as a close button where the action is to hide the pop-up box. I have an extra click box hidden on the page to make sure the user stays on the page and not automatically advance.
    Once I have the user click on the first "link" it shows the text box. Once the user clicks the close click box it takes the user to the next slide. I just need it so that it shows the user the pop-up text and then when the user closes the pop-up and returns to showing the 3 options/links. So it basically refreshes the slide instead of going to the next slide.
    Thanks,

    This will be a little tricky to achieve. This is because per default Adobe has decided that any interactive object (like a button or a click box) that has a user defined action on it (like continue, pause, open URL etc.) automatically continues to play the project when clicked.
    Therefore when you click your button it will show your textbox, but it will also continue to play on your timeline.
    You can read some more about it here: http://forums.adobe.com/thread/479725?tstart=0
    I did something similar to what you want one time and I just created a bunch of click boxes and made them very small and put them in a corner. The click boxes were placed on the timeline with 0.2 seconds between the pauses. Then I created my "real" buttons to show/hide the text boxes and placed them on the timeline before the other click boxes.
    The result is that once a user clicks your button it will show the text caption you want - continue on the timeline and pause at the first click box. When they click another button the same will happen. Just make sure that you have a lot of click boxes (I think I put like 30) and make sure that your navigation button for advancing to the next slide is set to "go to next slide" and not "continue" as that would make it pause at all your click boxes as well.
    /Michael
    Click here to visit the www.captivate4.com blog

  • How to create a dynamic link in a Form to link to a specific FOLDER

    Hello,
    I have created a reports of all employees of my department.
    This reports shows me the empno and ename
    When I clicked on a empno ( for example empno = 1 ) then then I got a MASTER DETAIL FORM about that employee(empno = 1) .
    Who he or she is and which course he or she had followed.
    I want create a dynamic link in the MASTER DETAIL FORM which shows me directly the folder of that employee ( in this example folder 1 ).
    If I clickt on the report with all employees of my department on an other number ( for example empno = 3333333) then if I click on the dynamic link in the MASTER DETAIL FORM I want to see the folder of employee 3333333 !!! You know what I mean ?
    What I want to know is, how to create a dynamic link that shows me directly a folder which is dependent on which empno I had clicked on in the report ( report with employee numbers and ename )
    Is there any way to pass some parameters into a link to a Folder ? Is this possible in Portal ? Does anyone know how to do this, or do you have a suggestion how to solve this problem ?
    Thanks a lot !!!
    Chu Lam

    Hi Chetan,
    I am glad that someone had replied on my question.
    I will explain it to you again.
    I have created a report that shows me all employees. If I click on a employee number then I get an MASTER DETAIL FORM on my screen with all the information(where he works now and which number I have to dial ifhow can I reach him by telephone) of that employee on which number I clicked on.
    I really like this mechanism. (You click on a number and the information that you see in the next screen is dependent of the number you clicked on ! )I have created all this. It works fine.
    What I want is to expand this example.
    Every employee has a FOLDER (yes, those ones in Content Area ) which they can insert text or image into that folder. The folder name is just the employee number. ( employee with employee number 3303, he owns a folder which is named 3303 and an employee with empno 9999, he or she owns a folder with the name 9999. )
    Every employee can tell more about himself in that FOLDER by iserting text and images. For example : What he likes, pictures of his vacation, something like this.
    What I want is this :
    If I click on the first report,which provides me all employees on screen, on a employee number 3303 then I get a Master Detail Form on my screen with all information about that employee with employee number 3303. And I want in this MASTER DETAIL FORM to create a link that shows me directly the FOLDER of that employee ( 3303), so I can learn more about employee with employee number 3303. But I don't know how to create this link.
    That link had to be dependent on the employee number. The difficult thing about this link is that this link had to be dynamic.
    I hope this will make it clear to you :
    (report all employees:)
    empno ename
    3301 john smith
    3302 peter clark
    3303 wilson jones
    If I click on a empno ( for example 3303) then I get a MASTER DETAIL FORM which provides me information.
    (MASTER DETAIL FORM )
    EMPNO 3303
    ENAME wilson jones
    department New York
    mobile number 98908763
    Company tel. no day
    AOL 097485838 monday till wednesday
    Oracle 04848584333 thursday and friday
    LINK
    (what I want is to create a link here )
    If I click on LINK in this MASTER DETAIL FORM then I want to link to the FOLDER of this employee ! ( In this example it is FOLDER 3303.
    BUT IF I CLICKED ON THE FIRST REPORT ON A DIFFERENT NUMBER ( FOR EXAMPLE 3301) THEN IF I CLICK ON LINK IN THE MASTER DETAIL FORM THEN I HAVE TO LINKED TO FOLDER 3301.
    I just want to know how to make a link like this ( create a dynamic link to a specific folder ).
    Thanks in Advance.
    Chu

Maybe you are looking for

  • Physical and Logical path

    Hello, what is a physical file and logical file in PATH table of SAP. Plz help, aafaq

  • Itunes 10.5.2. hanging up during IPhone 4 Sync

    I have an Imac running OS 10.6.8 and am using Itunes 10.5.2. on same.  Ever since the recent unfortunate debut of Icloud and wifi syncing, I have been having nothing but tons of problems with Apple sync software creating thousands of duplicate entrie

  • Request user digital signature via SSL

    Hi, i�m working on a delivery authority implementation that should work as follows: The system sends an reminder email to B, with a link to a SSL web page, when B clicks the link he goes to that page, and that page needs to check if he has a valid di

  • No Photomerge available in PSE 13

    I open several images in PSE, then try to do photomerge. File | Automation Tools only shows one entry: Fit Image. File | New only shows "Blank File" and "Image from Clipboard" (greyed out). Am I missing something? Anyone else have a similar problem?

  • Pdf Article in Android Platform

    Do you know when it will be available ? Regards. Puki