Image swap code and flex -- HELP NEEDED

Hello Folks,
I am still new at programming and having a major issue and wondered if anyone know a simple way to do a photogallery by using some code to create an image swap
Thumbnail ( here )                                             Large image here
Next Thumbnail (here )                                      Large Image changes
Next Thumbnail (here )                                      Large Image changes
Someone suggested I use PHP to load all the images at once but it was over my head... any one got some simple explained solutions... Really trying to learn this...
Thanks

Hi 123tron,
For these type of requests you should post a cookbook recipe request to Adobe's cookbook site: http://cookbooks.adobe.com/flex
Good luck!

Similar Messages

  • I NEED MY UNBLOCKING CODE FOR MY IPHONE 4S ,I HAVE BEEN INCONTACT WITH MY SERVICE PROVIDER AND THEY CONFIRMED THEY HAVE SENT AN EMAIL TO YOURSELF TO GET THE CODE AND NOW I NEED TO CONTACT YOU MYSELF IS THIS CORRECT AS VODAFONE DO NOT SEEM TO BE HELPING ME

    I NEED MY UNBLOCKING CODE FOR MY IPHONE 4S ,I HAVE BEEN INCONTACT WITH MY SERVICE PROVIDER AND THEY CONFIRMED THEY HAVE SENT AN EMAIL TO YOURSELF TO GET THE CODE AND NOW I NEED TO CONTACT YOU MYSELF IS THIS CORRECT AS VODAFONE DO NOT SEEM TO BE HELPING ME

    There is no such thing as an unlock code for an iPhone. It's done by restoring the phone using iTunes

  • Match code and search help

    What is the difference between match code and search helps ?

    Hi,
    search help:
    adding f4 functionality is search help(adding help for any topic)
    http://help.sap.com/saphelp_erp2005/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/content.htm
    match code:
    adding search help for the input field is called as mathcode object
    http://help.sap.com/saphelp_40b/helpdata/en/cf/21ef1f446011d189700000e8322d00/content.htm
    Regards,
    Sravanthi

  • SWF and FLV - help needed

    Hi,
    I'm finding flash very difficult, i've read tutorials and i still find it confussing. What i'm trying to do is embed my FLV video into my website that keeps my XHTML 1.0 Transitional page vaild.
    I download swfobject 2.2 and i have a FLV file that i exported from premiere pro CS3, from what i understand i need SWF file to go with the FLV.
    When i import my FLV into Flash CS3, choose the skin i want  then export everything. I then have three files; FLV, skin and the player. What i don't understand is, i've seen certain skins that are two in one, both the skin and the player.
    Could someone please tell me what are the main files that i require in order to get my flash on my html page.
    I've spent hours trying different embed codes and nothing seems to work.
    I've created a lot of websites, but when it comes to flash i'm puzzled.
    Any help is much appreciated, thanks.

    Thanks for your reply.
    I eventually got everything working with swfobject.
    I think i'm finally getting the hang of flash, well the basic stuff anyway, lol.

  • Flash and Flex Help

    I have a flash movie I created in Flash that has a couple
    buttons in the clip. Is there a way to make the flash buttons
    change the currentstate in Flex?
    I know in Flex state changes are as easy as
    currentState='STATENAME';
    Flex uses actionscript and so does flash, that is why I am
    hoping this is possible.
    PLEASE HELP, I appreciate your anticipated response.
    Thanks
    Todd

    Is Flash movie created using ActionScript 3? If so, you
    button click can dispatch an event and Flex application can
    register a listener to this event and whenever the event is
    dispatched, change the state.

  • Images with hyperlink in javascript - help needed

    Hai,
    I am having two hyperlinks say, "Good Morning" and "Good Evening". When I am clicking "Good Morning", a small arrow or a picture should display with the hyperlink.
    When I am clicking "Good Evening" this one should have the small arrow or a picture and "Good Morning" will be displayed normally (without picture).
    How can I do this using javascript?
    Did anyone has the code? Pls help me.
    <html>
    <head>
    <title>
    Moves the Arrow When Clicked the Headings for Sorting purpose
    </title>
    <SCRIPT language="JavaScript">
    function remove_picture() {
    function set_picture() {
    </SCRIPT>
    </head>
    <body bgcolor="peachpuff" width="90%" align="center">
    <table>
    <tr>
    <td align="left">Good Morning</td>
    <td>Good Evening</td>
    </tr>
    </table>
    </body>
    </html>
    - yogee

    <html>
      <head>
        <style type="text/css">
          #notclicking .highliter {
            display: none;
          #clicking .highliter {
            display: inline;
        </style>
        <script type="text/javascript">
          function showHighliter(elem) {
            elem.id="clicking";
          function hideHighliter(elem) {
            elem.id="notclicking";
        </script>
      </head>
      <body>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Morning
        </a><br/>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Evening
        </a><br/>
      </body>
    </html>

  • [Mostly Sorted] Extracting tags - regexp_substr and count help needed!

    My original query got sorted, but additional regexp_substr and count help is required further on down!
    Hi,
    I have a table on a 10.2.0.3 database which contains a clob field (sql_stmt), with contents that look something like:
    SELECT <COB_DATE>, col2, .... coln
    FROM   tab1, tab2, ...., tabn
    WHERE tab1.run_id = <RUNID>
    AND    tab2.other_col = '<OTHER TAG>'(That's a highly simplified sql_stmt example, of course - if they were all that small we'd not be needing a clob field!).
    I wanted to extract all the tags from the sql_stmt field for a given row, so I can get my (well not "mine" - I'd never have designed something like this, but hey, it works, sorta, and I'm improving it as and where I can!) pl/sql to replace the tags with the correct values. A tag is anything that's in triangular brackets (eg. <RUNID> from the above example)
    So, I did this:
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       export_jobs
    WHERE      exp_id =  p_exp_id
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))Which I thought would be fine (having tested it on a text column). However, it runs very poorly against a clob column, for some reason (probably doesn't like the substr, instr, etc on the clob, at a guess) - the waits show "direct path read".
    When I cast the sql_stmt as a varchar2 like so:
    with my_tab as (select cast(substr(sql_stmt, instr(sql_stmt, '<', 1), instr(sql_stmt, '>', -1) - instr(sql_stmt, '<', 1) + 1) as varchar2(4000)) sql_stmt
                    from export_jobs
                    WHERE      exp_id = p_exp_id)
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       my_tab
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))it runs blisteringly fast in comparison, except when the substr'd sql_stmt is over 4000 chars, of course! Using dbms_lob instr and substr etc doesn't help either.
    So, I thought maybe I could find an xml related method, and from this link:get xml node name in loop , I tried:
    select t.column_value.getrootelement() node
      from (select sql_stmt xml from export_jobs where exp_id = 28) xml,
    table (xmlsequence(xml.xml.extract('//*'))) tBut I get this error: ORA-22806: not an object or REF. (It might not be the way to go after all, as it's not proper xml, being as there are no corresponding close tags, but I was trying to think outside the box. I've not needed to use xml stuff before, so I'm a bit clueless about it, really!)
    I tried casting sql_stmt into an xmltype, but I got: ORA-22907: invalid CAST to a type that is not a nested table or VARRAY
    Is anyone able to suggest a better method of trying to extract my tags from the clob column, please?
    Message was edited by:
    Boneist

    I don't know if it may work for you, but I had a similar activity where I defined sql statements with bind variables (:var_name) and then I simply looked for witch variables to bind in that statement through this query.
    with x as (
         select ':var1
         /*a block comment
         :varname_dontcatch
         select hello, --line comment :var_no
              ''a string with double quote '''' and a :variable '',  --:variable
              :var3,
              :var2, '':var1'''':varno'',
         from dual'     as string
         from dual
    ), fil as (
         select string,
              regexp_replace(string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null) as res
         from x
    select string,res,
         regexp_substr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level)
    from fil
    connect by regexp_instr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level) > 0
    /Or through these procedures
         function get_binds(
              inp_string in varchar2
         ) return string_table
         deterministic
         is
              loc_str varchar2(32767);
              loc_idx number;
              out_tab string_table;
         begin
              --dbms_output.put_line('cond = '||inp_string);
              loc_str := regexp_replace(inp_string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null);
              loc_idx := 0;
              out_tab := string_table();
              --dbms_output.put_line('fcond ='||loc_str);
              loop
                   loc_idx := regexp_instr(loc_str,'\:[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
                   exit when loc_idx = 0;
                   out_tab.extend;
                   out_tab(out_tab.last) := regexp_substr(loc_str,'[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
              end loop;
              return out_tab;
         end;
         function divide_string (
              inp_string in varchar2
              --,inp_length in number
         --return string_table
         return dbms_sql.varchar2a
         is
              inp_length number := 256;
              loc_ind_1 pls_integer;
              loc_ind_2 pls_integer;
              loc_string_length pls_integer;
              loc_curr_string varchar2(32767);
              --out_tab string_table;
              out_tab dbms_sql.varchar2a;
         begin
              --out_tab := dbms_sql.varchar2a();
              loc_ind_1 := 1;
              loc_ind_2 := 1;
              loc_string_length := length(inp_string);
              while ( loc_ind_2 < loc_string_length ) loop
                   --out_tab.extend;
                   loc_curr_string := substr(inp_string,loc_ind_2,inp_length);
                   dbms_output.put(loc_curr_string);
                   out_tab(loc_ind_1) := loc_curr_string;
                   loc_ind_1 := loc_ind_1 + 1;
                   loc_ind_2 := loc_ind_2 + length(loc_curr_string);
              end loop;
              dbms_output.put_line('');
              return out_tab;
         end;
         function execute_statement(
              inp_statement in varchar2,
              inp_binds in string_table,
              inp_parameters in parametri
         return number
         is
              loc_stat dbms_sql.varchar2a;
              loc_dyn_cur number;
              out_rows number;
         begin
              loc_stat := divide_string(inp_statement);
              loc_dyn_cur := dbms_sql.open_cursor;
              dbms_sql.parse(c => loc_dyn_cur,
                   statement => loc_stat,
                   lb => loc_stat.first,
                   ub => loc_stat.last,
                   lfflg => false,
                   language_flag => dbms_sql.native
              for i in inp_binds.first .. inp_binds.last loop
                   DBMS_SQL.BIND_VARIABLE(loc_dyn_cur, inp_binds(i), inp_parameters(inp_binds(i)));
                   dbms_output.put_line(':'||inp_binds(i)||'='||inp_parameters(inp_binds(i)));
              end loop;
              dbms_output.put_line('');
              --out_rows := DBMS_SQL.EXECUTE(loc_dyn_cur);
              DBMS_SQL.CLOSE_CURSOR(loc_dyn_cur);
              return out_rows;
         end;Bye Alessandro
    Message was edited by:
    Alessandro Rossi
    There is something missing in the functions but if there is something that may interest you you can ask.

  • Dreamweaver and PHP Help Needed!

    If there is anyone out there who can help, I am working with
    a back-end secured website that is in php and need to manipulate
    and change pageson-the-fly. I'm not sure how to view and actually
    see in Design View my PHP page, as I can best work in Design View.
    Can anyone help out there?
    The website I need help with is
    http://www.businesscreditbuilder.com
    Help needed as soon as possible...
    Thank you...
    If you want to help, I can compensate you for helping with an
    immediate page..

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Various Direct Debit and Billing Help Needed

    FAILURE TO DELIVER BILL IN PAPER FORMAT: Firstly when I discovered that my account number was encrypted in the email and that I could not pay the bill online, without having the whole account number in full - I contacted BT who told me that they would post my bill and it would arrive in paper form.  A week later, no sign of it so phoned again and again I was told that another paper copy would be sent out - waited another week - still no sign! Got a reminder email that my bill had not been paid - doh! I knew that but I was trying to get that sorted out! So phoned again today and the guy in India or wherever the heck he is, told me that he would setup a profile on BT.com for me and this would allow me to pay online.
    TEMPORARY ACCESS TO BT.COM?: The email address which this member of staff had set up on BT.com for me was identical to my old btinternet.com account minus a number! The new email address with this new account is somewhat different and when I try to edit simple information on the profile page, it does not allow me to do so.  Can anyone explain why?
    UNABLE TO SET UP DIRECT DEBIT:  I log-in to My BT (whether it's temp. access or not) and then click on Bills and Payments but instead of more options I get a graphic which has got "Ugrade to an online account" on one side and "Help with Billing and Payments" on the other side.  When I click on "see all billing and payments help" nothing happens and in fact NONE of the links work.
    Would it be the better idea to re-register with BT.com and this time put the correct BT email address in, the one that i was given with this account - see if it works that way?
    PLEASE HELP!!!

    This is essentially a customer to customer help forum; I could make one or two suggestions which might explain things but would be equally likely to complicate the matter. It all looks a bit messy and you need to get BT's help in sorting it out. The moderators who oversee this forum are jolly good at that and you can contact them here: Contact BT Care Team.
    They are busy and may take a few days to respond but will contact you by email or phone, and will have access to your account in order to put things straight.
    [Edit: My daughter turned up in the middle of writing this and by the time I posted it KB had replied in similar vein.]
    You can click the white star next to this message if you think it was helpful.

  • Image of dicom and flex

    Hi
    I want to display image of dicom by flex, can i do it ?
    would you tell me how to do ?

    Hi
    Dany
    I want to use the browser on dicom images, so I want to know, I will flex can realize the effect.
    Will i design c++ + java +flex ?
    Could you tell me how to do?
    Thank you very much

  • Please rate my code and be brutal. need to know weakpoints.

    Hi All,
        I've attached some code that I've been working on for quite a while.  Actually the code I've attached is an extremely simplified version of my stuff, but the important parts are there.    What I would really appreciate is some feedback.  I have scoured the forums, read at least 100 other threads on a variety of topics that are related to/implemented  in my code, but there are still some things that I feel could be done better/more efficiently/prettier/etc.
    I've added some yellow textboxes throughout with useful little bits of info about what's happening in certain sections just as clarification.  The VIs are labelled with *_00.vi so that people can make changes and post them with the newer version (i.e. *_01.vi, etc.)
    MainVI_00.vi - This part has 2 parallel while loops that are both stopped with a singe "STOP" button by using a control reference to a boolean indicator (called 'T boolean?').  I wanted two loops two run simultaneously so that I could have both subVI1_00 and subVI2_00 opened from MainVI_00 and running at the same time.  It seems to work pretty well, but it's a little ugly.  The only problem I'm having with this setup is that if subVI2_00 is enabled, and STOP is pressed in mainVI, I can't figure out how to close subVI2 and thus terminate the entire program.  I think the problem is that subVI2_00 uses an event Structure, but some advice would help here.
    subVI1_00.vi - this would normally be the subVI for a scope, but now it just generates random numbers... if you look at it, it's really self-explanatory.
    subVI2_00.vi - This is a little more complicated.  I use an event structure here to monitor several different possible user interactions.  If the radio buttons or some other values are changed, an event is triggered, and the machine is switched to a different field position.  I've taken out the instrument dependent code though, so now it just shows a string.  When the 'load params' button is pressed, an array is generated and passed through a control refnum back to mainVI.  Also, I had to include the stop button in the event structure because I couldn't figure out how to get the subVI2 to shut if I didn't.  As I write this, I suppose it's possible to put a time delay in the while loop which may catch the change in the stop button, but I'm definitely open to suggestions on how to do this part better.
    Thanks for any advice that you may have on this.  Even the really brutal stuff is appreciated so that I can get this running in the most efficient and well-written manner as possible.
    -Z
    Attachments:
    subVI2_00.vi ‏69 KB
    mainVI_00.vi ‏20 KB
    subVI1_00.vi ‏19 KB

    Hi Lynn,
        Thanks for your comments... 
    I think some simple changes in architecture will help. Typically the event structure is in the main VI rather than in a subVI where it might cause exactly the problem you are experiencing. When an event occurs pass a message to the subVI via a queue. "Stop" would be one of the messages, of course. Depending upon when subVI 1 needs to run, it might be better off in another independent loop with a queue for control messages or perhaps it could run in the timeout case of the event structure.
    I would really appreciate some clarification on this one because I feel like I'm not understanding exactly what you're saying.  The way that I have designed the program is so that the two subVIs interact with the two instruments, respectively, that need to be "set up" for the experiment.  In order to do that, they both need to be able to be open at the same time (this is why there are 2 parallel 'while loops' in mainVI.  I could also put subVI1 in another while loop like subVI2, but I actually don't really like using references very much, b/c it breaks the dataflow model.... so instead, I just put one of the two in a separate loop.  Among other things (in the event structure) the subVI2 then generates a "sweep array" which is used in the final data collection in conjunction with the information that is returned from subVI1 (which is a cluster of scope controls).  
        From what you said, I am unclear how I could put an event structure in mainVI and control the individual events possible in subVI2?  or is this even what you're suggesting?  If possible could you make simple corrections to the code I provided illustrating your point?
    Very minor point, but may make a difference when your program gets big and complicated. Try to use left to right wiring for the dataflow. It makes programs much easier to read (and therefore, to debug).
    good point.  style is important because this code may need to be modified by someone else in my lab in the future, so I'll fix that.
    thanks,
    -z

  • Flash fading movies and sound-HELP NEEDED

    hey guys i need some help
    firstly if u want to help me could u please visit this site
    http://www.thetimemovie.com/
    this site is what i want to do
    notice the fading pictures that can be controlled and the
    sound bar at the bottom on the left
    Any help would b aprreciated GREATLY
    thanks in advance
    BUTCH101
    PS: email [email protected] if u have any info
    thanks

    What I see in the sample site is that the "sound bars" aren't
    sync'd at all. They are just a looping clip that stops in diagonal
    shape when clicked. And, the sound is not actually being stopped
    when you click the bars. Rather, the actionscript is actually
    turning the volume down, gradually. The sound is still continually
    playing, you just can't hear it. This is evident in the fact that
    when you restart the sound, it picks up not where you left off, but
    at the point where it would have been anyway, had you not clicked
    the button.
    I believe that the sound is set to streaming and as such can
    be dealt with frame by frame. So, your real quest is to have
    someone (more knowledgable than me) provide sample code that would
    begin reducing the volume of the sound object in increments as the
    movie moves through frames. Something like:
    onFrame (95){
    mySound.setVolume(80);
    onFrame (110){
    mySound.setVolume(60);
    onFrame (120){
    mySound.setVolume(40);
    onFrame (130){
    mySound.setVolume(20);
    onFrame (140){
    mySound.setVolume(10);
    onFrame (150){
    mySound.setVolume(0);
    Obviously, you wouldn't use frame numbers, but a variable
    representing the current frame relative to the frame the movie was
    in when you clicked the button.

  • Offscreen drawing and Events help needed!!

    Hi,
    I have run into a problem... I need to create a rather complicated image with lots of interactivity. As a simplified example, I need to add a grid, a histogram, and a pie chart on the same JPanel.
    Normally, you create your images in your class, set up listeners on your graphics objects and voila, clickable images.
    But I want to create all my images in a separate class, attach listeners there and then add that image and its listeners to my JPanel. Otherwise my class gets huge and painful- some of these objects (the histogram for example) need to establish URL connections, execute JDBC querys, be threaded, etc. According to what I know about OOP, these should certainly be in their own class.
    So, if I wanted to draw a 10x10 grid, I could simply do:
    DrawGrid grid = new DrawGrid( 10, 10 ); In DrawGrid, I would have listeners on each cell, so I can keep track of what was clicked.
    Adding grid to my JPanel also adds the listeners associated with grid...
    I initially tried this as a separate JPanel, and then to just add the new JPanel to the 'central' one, but this wont work because some of my graphics must overlap each other- and I couldnt get graphics to overlay multiple JPanels.
    I also created my graphic by extending BufferedImage and then doing:
    g2d.drawImage( buffer1, 0, 0, this);
    g2d.drawImage( buffer2, 0, 0, this);
    Which worked for the images- but none of the listeners worked. :(
    I really need some help on this one.
    Also what are the best books for Java 2D graphics and interacting with them??? I gotta buy one.
    Thanks!
    Bryan

    From what I understand, you want to have multiple images on one surface and have them all contain their own mouse listeners. As far as i know this is impossible (but what do i know:)
    What you could do is have a single mouse listener and subdivide the surface whenever images are placed there. So when the user clicks it checks to see in which section was clicked, then forwards that info to the appropriate object. And to deal with overlapping just have the top image have control over that area. If you needed to get more complex wich your bounderies you could have an array of pixels representing the surface and flag them bassed on the objects in that area.
    It may get a bit slow if your boundaries are too complex

  • N97 wifi and connectivy help needed

    Hi everybody: I have for about 3 weeks  owned and using an unbranded N97, upgraded it to 11, and for the last 2 years was using an N95 also unbranded, with no issues.(still using it as second line).
    The N97 recognizes my Wifis at home, in the office, at the airport , connects perfectly. But never stops looking for that wifi when going to another one.
     For example when I leave home to go to office even with priority set, I need to tell it to connect on arrival. .
    But then if I click on accuweather update (or for that matter any other stuff) the phone still tries to connect to the previously  used wifi, and screams repeatedly disconnect . Dispite what the manual says, the phone does not offer me a "disconnect all"option .
    Only solution I have is turn of the phone. Then on, and phone is asking me to chose which connection to use,then I select the one that is available.
    Any ideas to have a seamless connection disconnection, including use of gprs when out in the street ?
    Thanks of any help 
    Solved!
    Go to Solution.

    When you access "Destinations" on top of the screen should read " Network Destinations      Default: Internet"  the way to change this is by selecting Options -> Default Connections and selecting Internet.
    Once all of this is place make The Internet access point your default.  
    What's happening here is that the Internet access point encompasses all your registered access points into the one access point therefore enabling the phone to automatically search for available connections and connecting following your priority order. 
    Set Internet as your deault in your browser, and all other apps that allow you to define an access point, note though that in some apps you will need to select Default Connection
    Do this for both WLAN's Destinations -> Internet -> WLAN -> Use Access Point-> Automatically and let the phone scan for WLAN every couple of minutes I've set mine to every 5 minutes as I want it connected to WLAN as soon as it becomes available.
    My setup is like this
    Destination -> Internet -> @Home priority1 -> @Work priority2 -> Orange Internet priority3 Orange java priority4.
    The phone manages to automatically switch from @home to Orange Network when I leave the house and from Orange Network to @work when I get to work and the other way round. Note though that when connection is lost from both WLAN's I get a beep notifying me.
    Hit Kudos if I Helped out.
    Nokia 3310-> 8810->N95->N95 8Gb->
    Nokia N97 Black v21.0.045 RM-505 Code-0585162 (handset No 3)

  • Images smaller printed then edited, help needed

    Hello everyone.
    I'm using LiveCycle Manager 8.0 on Win XP SP3
    When building a new form i got various problems with images being printed smaller then what is defined and shown in the edited and also in preview mode.
    The problem occurs with images that are being included with Image Fields.
    The problem gets even bigger if i place the images by showing them by the push of a button (script)
    Pictures will not be x/y placed and sized as defined in the layout parameter
    Here are some details about the pics:
    Larger header pic 17.7 x 8.0 cm, 300dpi
    Smaller pics bellow 17.7 x 1.6 cm, 300dpi
    Here are some screen shoots to show you how it looks.
    Any help would be great as I really tried a lot but can't find a solution.
    Designmode:
    Preview Mode
    Final PDF messed up
    PS: LiveCycle Manager also seems to run very bugy. Sometimes it crashes when changing a image parameter.

    Hi,
    OK I am trying to get to grips with what you are trying to achieve.
    The preview now shows how the form will look in Acrobat (Form / Properties / Preview / Interactive).
    In the top imageField I cannot explain why the displayed image is not as per the design view. Because it works for an image object (rev 1 in previous post), I suspect that it is a bug in the imageField object.
    There are workarounds however it would depend on the number of options (images) that the user has to select and if these images will change over time. If there are a small number of options, you could include all of the images in a series of image objects that are hidden and then change the visibility depending on what the user selects. This would be easier for the user because they would not have to browse to an image location.
    In relation to the "Geben Sie hier einen Titel ein |" header; if you are looking to change the background colour, then there is a simpler way, which i have included in rev 2.
    You can script rectangles for presence, colour, etc. The rectangle cannot contain the script, but you can include script in a button that will affect the presence and appearance (look) of the rectangle.
    Hope that helps,
    Niall

Maybe you are looking for

  • Warning message in method

    Is it possible insert a warning message in a method? If it is possible canyou send me an example? Thanks a lot. CV

  • Phone wont sync to media player

    I have connected my samsung fascinate to my computer via usb. My computer doesnt see it. So, I tried all sync, it has been sitting here for 30 minutes with the rotating symbol going round and round and not doing anything else. I have tried using veri

  • Material prices showing 0 is mm60

    Dear sir / me dam I am creating material, material prices showing 0.00 is mm60, I am check display in MM03 showing price, please provide the answer

  • Offline backup fail

    Hi, Offline back is getting failed due to the following error in test server where as online backup is successful. BR0069E File name /oracle/QAS/sapdata1/temp_1/temp.data1 not unique - backup/verification not possible BR0069E File name /oracle/QAS/sa

  • What's with these appended numbers in front or back of titles?

    What about those appended numbers (01 or 01-09 or whatever) in front of song titles or at the end so iTunes doesn't find these as duplicates? You can't even sort them because it reads those numbers as titles. I didn't put them there. If they are dupe