Php :: Get The Correct Coordinates Of Text From That Flex Editor?

Mar 1, 2012

We have an image editor in Flex to add text and other changes. Once all the changes are complete, we need to save this to the server.We are using php to save the images by accepting coordinates from flex about what all edits are made for that image. Using this we are editing that image using imagick function in PHP. But the problem is output is different from what we see in flex. The issue is mainly with text alignment in flex editor and in the output we get after editing in php.Is there any other way to do this without making the user to wait for a long time to save the images? Is it possible to get the correct coordinates of text from that flex editor. Our issue is flex is passing the x,y of the container of that text editor. For this reason, test is misaligned in the output.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Getting Correct X & Y Coordinates?

Feb 21, 2005

When I make a MC and I put another MC inside of it, whenever I write code in the frame of the main stage to use the child MC's x and y coordinates, I get the child MC's coordinates in respect to the _parent MC. If what I wrote didnt make any sense, what I mean is that if I make a tank MC named tankBody and a turret MC named tankTurret, and I stick them both in a MC called tank, if I write code that moves the tank MC's y the tankTurret and tankBody's y will stay the same. How can I make it so that I can read tankTurret's y & x coordinates in repect to the main stage?

View 2 Replies

ActionScript 2.0 :: Displaying X And Z Axes (Coordinates Looks Not Correct)?

Mar 14, 2005

i'm having a problem with the displaying of the x & z axes coordinates. it seems that when i am in postive x & z the always have negitive coordinates displaying. it seem that the whole x n z axes have a wrong coordinates. is there any way to solve the problem to the following code? or are there ways easier to rewrite the code?

Code:
onClipEvent (load) {
// position of origin
origin_x = 300;
origin_y = 200;

[code]....

View 1 Replies

ActionScript 2.0 :: Displaying X & Z Axes (Coordinates Looks Not Correct)?

Mar 14, 2005

i'm having a problem with the displaying of the x & z axes coordinates. it seems that when i am in postive x & z the always have negitive coordinates displaying. it seem that the whole x n z axes have a wrong coordinates. is there any way to solve the problem to the following code? or are there ways easier to rewrite the code?

Code:
onClipEvent (load) {
// position of origin
origin_x = 300;
origin_y = 200;

[code]....

View 1 Replies

Flex :: AIR: <img> Tag In Rich Text Editor?

Mar 11, 2011

Is there is there a way(may be very complicated) to display images in the text area from htmlText property in AIR2?P.S. I know that AIR ignores img tags in HTML content due prevent possible phishing attacks.

View 1 Replies

ActionScript 2.0 :: Getting The Correct Coordinates For The Amount Of Left And Right Scroll?

Jan 27, 2006

The problem I'm having is gettin the correct coordinates for the amount of left and right scroll. I've tried countless variations and nothing is working - which is getting very frustrating.

[Code]...

View 1 Replies

Flex :: Rich Text Editor That Provides Link?

Nov 25, 2010

I have built a rich Text Editor for Flex 4 using the instruction in the following link: [URL]

it works great. I want to be able to add link to it (user selecting text to link it to external web page). How do I do that?

implement Rich Text Editor with link support if you have any.

View 1 Replies

Flex :: Rich Text Editor - Limiting The Number Of Characters?

Jun 11, 2009

Is there a way to restrict the number of characters in the Flex Rich Text Editor? I guess there should be, since it's possible in a textarea. So, if I could get hold of the textarea contained in the rich text editor, I would be able to do it

View 1 Replies

Actionscript 3 :: Convert Global Coordinates To Local Coordinates Of A UIComplenent In Flex Project?

Dec 19, 2011

I was trying to convert global coordinates to local coordinates of a UIComplenent in my flex project using below code using below code

var gp:Point = new Point(e.stageX,e.stageY); //global point
var lp:Point = uic.globalToLocal(gp); //local point

uic is UIComponent in which I have subclass of Sprite for drawing something I have set the sprite's mouseEnabled and mouseChildren to false to not interrupt the mouse event. above code is within uic's mousemove event where I was tracing the gp and lp gp was giving correct value and suprisingly lp was giving negetive values. when I move the move to the top left corner of uic i expect lp to be 0,0 but it is giving the -width of of uic. I broke my head for hours and ended up finding an alternate by using offsets. Infact my original code was much simpler like this which was same issue

var lp:Point = new Point(e.localX,e.localY);

I am not sure what exactly is causing this problem. the workaround had lot of issues and it creating a mess in my rest of the algorithms.Just now I found even more interesting thing (which is actually weird). for some reason I went and create a new lp2

var lp2:Point = new Point(e.localX,e.localY);

now surprisingly it was giving correct values as expected and I went back and changed the code as

var gp:Point = new Point(e.stageX,e.stageY); //global point
var lp:Point = uic.globalToLocal(gp); //local point
var lp2:Point = new Point(e.localX,e.localY);
var lp2:Point = uic.globalToLocal(gp);

now it is expected to have all the lp, lp2 and lp3 variables to be same but weiredly lp two is giving wrong value and lp2 and lp3 were giving correct. I am suspecting using the variable lp has something to do. I am not sure about that but above proves it so right now I am using lp2.

View 1 Replies

Flex :: Text Input Error / Validation And Restore Previous Correct Value

Jul 2, 2009

I have text input boxes. There is validation for each of the boxes using numberValidator. Now, the thing is that am using alert box to show if any error occurs.

Flowchart ::

1> Insert value in textBox.

2> NumberValidator validates the input on "trigger=change".

3> If error, alert message is displayed. The user clicks OK to go back to form.

4> Focus set back to the TextBox.

5> But, alert box makes the text input value blank / null. i.e. Both the previous error value entered by user and the default correct value will not be displayed now.

Display the most recent correct value that was entered in the text box. Not the default of any other, but the most recent correct value entered by the user.

View 3 Replies

WYSIWYG Text Editor For Hyper-links / Text Formatting That Exports To Swf?

Jun 12, 2009

Anyone know of a good program such as:WYSIWYG text editor for hyperlinks and text formatting that exports to swf.

View 2 Replies

ActionScript 3.0 :: Using A Rich Text Editor To Style A Flash Text Field?

Oct 6, 2010

I've been trying to build a user interface that would allow someone to change the content of a dynamic field (loaded from a text file) using a rich text editor. However the editor inserts inline css style tags like <span style="text-decoration: underline;"> which Flash aparently can't understand. If the editor were instead to insert the following: <span class="ul"> where the stylesheet defined it as:

[Code]...

View 1 Replies

ActionScript 3.0 :: Use The AlivePDF Library To Export Text From A Text Editor Created Into A PDF?

Jun 9, 2011

I'm trying to use the AlivePDF library to export text from a text editor created in AS3 into a PDF. Can anyone link me to documentation or a tutorial that can help teach me how to integrate it into a normal AS3 file? I have no idea how to use the library and the only documentation I've seen for it is how to use it in Flex/Air, which is not what I'm looking for.

View 2 Replies

ActionScript 2.0 :: Create A Flash Xml Editor Based On Senocular's News Editor?

Oct 5, 2006

I'm trying to create a flash xml editor based on senocular's news editor but I am having some trouble getting the xml file to load. My xml file is structured as below[code]...

View 2 Replies

ActionScript 2.0 :: Call Text In To Flash From ASCII Text Editor?

Jan 31, 2012

I'm looking to pull dynamic text in to Flash from a text editor, basically someones name and age, is this easy enough to do?

View 1 Replies

ActionScript 3.0 :: Call Getters And Setters From The Editor Without Using Static On The Editor?

Jan 13, 2011

my main class is Editor my sub class is a CustomTextField i need my Editor to keep track of what the active CustomTextField is, since there can be more than one. i want to have a variable, activeTextField:String to keep track of the active CustomTextField. i created getters and setters on editor to keep track of activeTextField. how do i call these getters and setters from the editor w/out using static getters and setters on the editor? this has to be confusing to read because i am utterly confused writing it...

View 1 Replies

ActionScript 2.0 :: Input Text Field Text Editor?

Jan 28, 2009

I want to create an input text field that can be editable by the user and essentially when they click submit it turns this into HTML code with p, br, strong and em tags.

I don't know if it is possible, I assume it would be, but my searches are not turning up much.

I want the user to be able to select a section of text and click a B button to surround that selected text with strong tags, same for italics.

I also want to give the ability to at least record when the user presses enter in order it insert p tags and maybe even br tags if they press shift+enter

View 4 Replies

ActionScript 2.0 :: Using External Editor - Why Better Than The Native Editor In Flash

Apr 24, 2007

Does anyone have any experience using external actionscript editors? I've given a brief look at SE|PY, but not sure why it's any better than the native editor in Flash.

View 1 Replies

IDE :: Flash Text Editor?

Sep 21, 2010

Does anyone know of a free flash text editor. Something that I can put on my website to update the text without going into the flash file and reuploading.

View 1 Replies

IDE :: A Flash Text Editor

Mar 28, 2009

Does anyone know of a free flash text editor. Something that I can put on my website to update the text without going into the flash file and reuploading.

View 2 Replies

ActionScript 3.0 :: Text Editor And SetTextFormat?

May 23, 2011

I created a text editor in AS3 to administer a site online, but i have a problem when i select a word, put it in bold, save the text and load it, all the text after this word becomes bold too. (to put a word in bold i select that world and use a button that turn this word in bold)Here is my code

Code:
var formatGlobal12:TextFormat = new TextFormat ("_serif", 12);
txt_references_springbok_fr.setTextFormat (formatGlobal12);

[code].....

View 2 Replies

ActionScript 2.0 :: Creating A Text Editor?

Jun 21, 2006

What I want to do is create a flash movie that will work as a update method for a news section on a website. Now Im not a big Actions scripter but I think its a preety cool idea. basicly I'm guess in It could be done using input text or something like that. But the idea is you can login to a webpage(with the text editing swf in it) and it would have say 3 input text boxes one that says date, subject, and then the news to be added. And using a submit button it would update a text file that is dynamicly loaded into the main website swf. Does that make sence??3 If anyone has anyidea on how I could acheive this I would really apriciate it. I am really excited about the consept lol I just dont really have the AS knowledge at the moment to do it.

View 4 Replies

Professional :: Embed HTML In Flash - When I Click ,opens The Correct Description Text File In The Second Text Box?

Apr 17, 2011

Is there any way I can embed HTML in flash? I know I can do this with text boxes but is there any other way I can do it? If not I know theres is the load feature where I can load text from a text file. With the html text box editing, Can i link that to the text file?. As in when you edit the text box with html could i have the textbox's instance name equal to the text file? With this my issue is with the <a href> in one textbox, I would like when i click those it open another text file in a different text box.

Clarification: I have two text boxes in my flash file.One has current products. And the other is the description of the product they select. I would like a way to edit and change the products in the first text box without having to keep using the FLA file. Which is why i am using this code

var myTextLoader:URLLoader = new URLLoader(); myTextLoader.addEventListener(Event.COMPLETE, onLoaded);
function onLoaded(e:Event):void {trace(e.target.data);} 
myTextLoader.load(new URLRequest("myText.txt"));

The contents of myText.txt are <a href=(not sure what to put here)> Product 1 </a> But all that does is put it in the text output section in flash.It does not show it in flash. I need help getting it to show up in a text box.That is the first part But the main problem is im not sure how to code the a href correctly so that when i click it, another text file opens in the second text box.So that when a user clicks on a product ,like "Product 1" It opens the correct description text file in the second text box.

View 2 Replies

ActionScript 3.0 :: On Creating A Rich Text Editor?

Dec 13, 2009

I am creating a rich text editor -- and I have found many things convert from textformat to HTML like below marked 1. but then when I get to links and align of the editor -- I am not certain the best approach I am doing a search and replace string method on the html text field (the code is marked 2) but it is not that easy and I was wondering if there was a cleaner approach. And that is just the writing of it. Removing it is even harder but I won't get into that I am just trying to find a easer way.

1.ActionScript Code:
underlineBtn.addEventListener(MouseEvent.CLICK, makeUnderline);
function makeUnderline(event:MouseEvent):void {
if (section.underline == false){[code].........

View 0 Replies

ActionScript 3.0 :: Flash To PHP Web Based Text Editor?

Jan 14, 2011

i got a working flash text editor. It loads up a text file from a database and displays it in a dynamic textbox and allows you to edit it however you want and save it by sending variables to a php script which than saves the changes to the text file. It works great and when i download the tect file from the database it displays what i/anyone has saved. Only issue is when i refresh the page the text box is displaying what the text file used to say. i checked the database and thats not what the text file contains. =/ I have NO idea what would be causing this, as it loads the text file directly when the page is refreshed so it SHOULD display what the text files most recent contents are. any ideas? test it out at Simmpole(dot)com/flips/testtextsaver/tophp.swf

edit : i also tried making a button that forced flash to reload the text file and no luck.i also tried throwing the code that loads the text file in a ENTER_FRAME event and still no luck.

View 0 Replies

ActionScript 2.0 :: Text Editor Made In Flash?

Apr 16, 2005

I've been trying to find a text editor/word processor style app made in flash. I've also been trying to build one but I figure it can't hurt to search as well.

I'm specifically looking for an fla that allows a user to change font, size, colour, bold, italic etc. and allow the user to select parts of the text to change. ie. like how Word or any text editor works.

View 5 Replies

ActionScript 2.0 :: Source: Rich Text Editor?

Mar 2, 2007

I've created an Rich Text Editor witch is free to download at [URL]

Some features:

Load / Edit / Save and Preview articlesAdd / Upload imagesUndo / RedoBasic layoutAdding linksTell me what you think of it.

View 1 Replies

ActionScript 2.0 :: News Editor And Text Formatting?

Mar 9, 2005

Do you know Kirupa's News Editor tutorial?O.K. I have problems with text formatting. I need "title" in a different font than "body".Here is the part of original code:

ShowNews = function(news_xml){
if (!news_xml.firstChild.hasChildNodes()){
content_txt.text = "No news available.";

[code]......

View 8 Replies

ActionScript 2.0 :: Looking For A Text Editor Made In Flash.

Apr 16, 2005

I've been trying to find a text editor/word processor style app made in flash. I've also been trying to build one but I figure it can't hurt to search as well.I'm specifically looking for an fla that allows a user to change font, size, colour, bold, italic etc. and allow the user to select parts of the text to change. ie. like how Word or any text editor works.

View 5 Replies

XML Editor UI In Flex?

Apr 27, 2011

I want to create an xml editor UI in flex.Basically I want to present the xml in a textarea.Users can then edit the xml and save it in database.Also,based on logged in user's privilege,the level of editing allowed varies.A normal user can edit the attribute values as well as node values,but not attribute names and node names.

[Code]...

Normal user can only edit id values('1','2','3'),country values('aaaa','aaaa6','aaaa4') and user names('XASD','XASQWED','XASDRQQ').But not node names('users','user') and attribute names('id','country').

I prefer to present the XML to the user as in an editor like interface and restrict editing there,rather than using a grid interface in which attribute names and values are listed in separate columns and enable editing for value column only.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved