ActiveDen

Power Book

  • Bought between 1 and 9 items
  • Exclusive Author
  • Has been a member for 1-2 years
  • Turkey

Hello again sir,
Firstly I must congratulate you for your top-notch quality software, this is one of the best flip-books in terms of technical support, appearance and coding.

I couldn’t find in manual, so now I’m asking:

• How to change positions of nextprev_arrows? Arrows are not centered in my landscape oriented book (page_proportions are 1.41 and I disabled firstlast_arrows), to center them I tried editing .fla however while right arrow was going up, the left one was going down with the same amount :P

• How to change the size of the click-able areas on corners? (page_corners) I’m trying to enlarge them, also is it have to be a square? Can I change them to rectangle with different height and width values?

• How to change the ”|” symbol between page numbers (in pages_counter)? I would like to put a ”-” between them.

Also, waiting excitedly for an hardcover update =)

Thanks for your time.

CyberLeaf

Hi LrdStudios,

thanks for your purchase and appreciation! :)

About nextprev_arrows:
you are right… I should improve the arrows for landscape books (when proporitons>1), and maybe even adding a vertical offset value for them in the XML .
In the meanwhile you can change their position modifying the AS code. Open the “com/cyberleaf/powerbook/Book.as” class and go at line 971. You should see 2 lines like these:

_btn_next.y = _btn_next.height*0.15;
_btn_prev.y = _btn_prev.height*0.15;

So, edit these 2 values to change the arrows position. Please consider that 0 is the middle of the book (vertically speaking), so if you want to put them at the top of the book you could write something like this:


_btn_next.y = -book_size[1]*0.5 + _btn_next.height*0.5;

as it is for example for the “first” and “last” pages arrows (line 977).
Or just put their y for example to 100, to have them slightly below the middle.

About the corners:
this is easier, since you can just edit the fla. Open the movieclip in: INTERFACE / BOOK / sheetCorner
Here you have the corners selectable area, in the first layer (called inv).
It is actually invisible, so you should turn on the wireframe view for that layer to be able to see it (or just select it, and it should appear as red).
So, edit the corner area here, but please remember to keep its rotation “pivot” on the bottom right corner (0,0). So you could for example scale it, but please remember to do it just by dragging the top left corner, so to keep the bottom right point in its place.

About the page numbers: even for this one you need to edit AS code.
Just open the same “com/cyberleaf/powerbook/Book.as” class and please go to the method “updatePagesCounter()” around line 640.
Here you can make a search for the string ” | ” and you will see where that character has been used (and so you can replace it with a ” – ” ).

LrdStudios

Thanks for the reply CyberLeaf,

Everything is working as intended except the corners. I enlarged sheetCorner by 400%, however they expanded only in horizontal axis. Here, you can see a screenshot. (I made them visible so you can see what I mean.)

CyberLeaf

Hi, sorry… I forgot that the movieclip is used to define the shape and proportions of the corners, but that the overall size is defined at runtime, to let them scale together with the book.
So, a bit of AS modifications also here… :)

com/cyberleaf/powerbook/Sheet.as – line 970 and following:


if (current_side==0){
...
_cornerTop.height = _side0Back.width*0.3;
_cornerTop.width = _side0Back.height*0.15;

_cornerBottom.width = _side0Back.width*0.3;
_cornerBottom.height = _side0Back.height*0.15;
…
else{…
_cornerTop.width = _side0Back.width*0.3;
_cornerTop.height = _side0Back.height*0.15;

_cornerBottom.height = _side0Back.width*0.3;
_cornerBottom.width = _side0Back.height*0.15;

so, just increase the 0.3 (width) and 0.15 (height) factors for all these lines and you should obtain what you need!

LrdStudios
Hi again CyberLeaf,

Thanks for the answers, I have few more questions to ask, if you don’t mind :)

• I don’t want the book title to be used in info window, how can I disable it?

• I want to use different contact & share windows for each defined book (also summary tooltip, download tooltip etc) Is it possible declare their values on each book.xml’s instead of global.xml?

• I tried placing global.xml into a subfolder; for that I edited /com/cyberleaf/Powerbook.as lines 75 and 224 to:

[Inspectable(defaultValue="source/global.xml", type=String, name="XML Path", variable="url_xml")]

if (url_xml==null || url_xml=="") url_xml="source/global.xml";

however that didn’t worked out. What I am missing?

Thanks in advance CyberLeaf!

CyberLeaf

Hi,
sorry for the delay of my answer.

Book title:
you can:
  • remove the “title” attribute from the Book node (but then the title will also disappear from the Summary and the Library), or you can
  • edit the AS code… go to PowerBook.as, line 533 you should have:

if (book.title!="") infoText = "<p><font size="20">"+book.title+"</font></p>"+infoText;

remove the part referring to “book.title” and you are done.

I will add anyway a new option in the next release, for the Info node… something like “show_booktitle”

Share and contact windows: for how the application has been designed I am sorry the answer is “no” at the moment.
I thought that contacts and share should have remained “global”, since just the info window should have reflected the single book informations… but maybe I thought wrong.
I will think about that, but at the moment I am sorry there is no quick modification to the AS code that would allow you to do that.

Global xml path: how are you using the Power Book? Web page, standalone or another Flash/Flex application?
You only need to recompile the swf if you are using the standalone version (the only one which does not allow you to change the global.xml path),
In a web page you can use Flashvars (page 3 of the help manual), while if you are using the swc in another Flash application you can just set the option from the component properties.
If you instead are using the standalone version, just do that to change the default path:
  • open the fla
  • in the “Main” scene click on the Power Book object on the stage
  • change the “XML Path” option in the component properties (Properties tab)
  • recompile the swf

that’s it! You don’t need to edit AS to do that :)

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • United States
ZIMACOM Purchased

Hello CyberLeaf, Just a sugestion. In your wonderful book. I was thinking that maybe will be wonderful if you can create or ad a thumbnail section king like a gallery where we can add all our magazines something like an archive section where it could be at the botton where we can choose from the new magazine from the oldest, and when u clink on the thmbnail of that magazine will connect to be view in big…

something like this in the issuu section of magazines: http://issuu.com/enteratenews/docs/enterateabril

Well, just an idea maybe will have in consideration in the future so we can have a archive section to add all our magazines and not depend on issuu, so we can do it our selves.

Thanks…a fan of yours…hope will make tons of sales john

CyberLeaf

Hi John,
isn’t it what the Library section already does? I mean to be able to add more books and see their thumbs like in an archive section.
Or do you mean creating an online service and repository like Issuu? (in that case I fear it goes beyond my possibilities :) )

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • United States
ZIMACOM Purchased

Hello CyberLeaf, You are the best….I like your proffesionalism in answer the questions. 1. Well I mean, how many book can I upload if I use the Library. Now I see that there is 3. Can I upload more than 3 books, let say 10 or 20 ??? If I click in the Library section will a book upload making the right connections!!! If so how can I do it base in the instructions.

Thanks CyberLeaf. john

CyberLeaf

Hi John, sorry for the delay.
You can upload as many books as you want. The books list (with their covers) in the Library screen will just scroll down if needed
In the global.xml, in the “Library” node (within the “Interface” node) you also have the option columns that will let you choose in how many columns your books thumbs will be divided (and the “padding” as well, so to reduce the thumbs area size, and so their individual size, since their size and placement is always fluid: it depends on the overall application area size).

To add more books you just need to add more book XMLs.
Please have a look at page 13 of the help manual (Defining the Books List) to understand where you can specify the books xml locations. The easiest way maybe is to add them directly in the “Books” node within the global.xml (as you can see from the demo).

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased
if some one try to see my book using link to try open with password like this one : http://www.andrea.baroni.name/envatoPreviews/powerbook/edge/#/1-10

the magazine will bug, if i hidden nextprev arrows. there is a way to fix ?

CyberLeaf

Hi Lucas, I will check this as soon as possible (I need to make some tests and see where the error is). Thanks for your segnalation!

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

sorry for a lot of questions, but i have more one doubt. can i change the color of pages counter ? in advanced mode ? i have changed my toolbar from RED and i want to change my pages counter. there is a way to do that ?

CyberLeaf

Hi Lucas,
the pages counter changes its color according to the toolbar “buttons_color” property, but only when its type is set to toolbar (so in “advanced” mode its color will remain the same).
But I agree with you… it should change its color maybe even in advanced mode. Or I should add a “color” option to the pages counter node in the XML … I will think about this.

In the meanwhile the only way of changing the pages counter color (while in advande mode) is editing its movieclip in the fla
(INTERFACE / TOOLBAR / toolbarZoomPagesNav_back)

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

there is a way to modify the position of next prev arrows ? i wanna put those arrows close

CyberLeaf

Not at the moment (unless you want to edit a bit of ActionScript), but in the next version I will improve the arrows with more customizations.

CyberLeaf

If you want to edit the ActionScript for the arrows you should have a look at an aswer above I gave to LrdStudios, where I explain where the code for the arrows position is.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

very thanks. all works ok :)

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • Sold between 100 and 1 000 dollars
eddjusted Purchased

Hi, Three Questions: 1. I need to display a pop-up type box containing html formatted data as the user hover’s over an area, instead of showing the area title. Is it possible? 2. Similar to above I need to display a pop-up box containing html formatted data when the user Click’s an area. In this case the pop-up box will stay on the screen until user click’s its cross (close button). Is it possible? 3. Does the book support an Image Slideshow. Like clicking an area with image, it shows the larger image in a lightbox or something with next and previous buttons for other imagery. Can this be done?

thanks and congrats on an awesome product.

CyberLeaf

Hi eddjusted, thanks for your purchase!

1&2: not directly in the Power Book application at the moment… sorry.
If you are using the application in a web page you can call anyway a javascript callback (a function), when the user “clicks” on an area, that will open an html popup or a lightbox window (so, not made with Flash… but there you can add content to it like any normal web page).

3.: not at the moment, but I would like to add that feature in a next release (a sort of Image gallery module)

  • Has been a member for 1-2 years
  • Referred between 1 and 9 users

Hello again,

I really like the library feature in this version. It’s really a wonderful experience working on this product. Just wanted to know do you have any plans of adding single page view for the books? I know zoom mode shows single page view but that one doesn’t show page in 100% view. Are you going to add this feature in future or are there any workarounds for this in current version?

Thanks and good luck for future updates! :)

CyberLeaf

thanks for your support and appreciation :)

good idea… I can add an option for the zoom viewer that will let you choose to resize the page to “fit” and not to “fill” as it is now. So you will see the whole page when you enter the zoom mode.

Default-user

Thanks for the reply.

One question in this case. If we set page mode to “fit”. In case of resizing will it resize considering double page size or single page size? Can it be possible to add a separate button for single page layout just like zoom button and which can again be zoomed by clicking zoom button ?

CyberLeaf

Hi, sorry for the delay of my answer.

While in zoom mode double pages are considered as one unique page, so the “fit” mode will make your double page to fit the screen as a whole.
Thanks for the suggestion on the “single page” mode… I will think about that.
I have yet to decide what to add exactly in the next release, and when to start working on it.. but this may depends also on the sales, which are a bit slow lately (for Flash-made flip books in general I fear…).

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
eric318 Purchased

Hi,

First of all i would like to say that after buying 3 other flipbooks from activeden and trying them out, this is by far the most versatile one. Each of the other 2 that i bought, couldn’t do at least one thing i needed it to do, this book can do it all. Good job!

i am trying to use Hebrew text in my book so i copied “powerBook(Arial+Hebrew)” and pasted it in “activeden-243178-power-book_1.3\PowerBook(1.30)\demos and extras\DEMO”, but when i played it, there was no text at all on page 8 (features page). Am i doing something wrong.

Thanks.

CyberLeaf

Hi eric318, I am glad that you are happy with your purchase! ;)

The other swfs you can find in the “deploy” folder uses “Arial” as the embedded font (instead of “Myriad Web”), so you need to change the font family from the XMLs (sorry, I forgot to explain that, you are right).
So, just open global.xml and look for the “StyleSheet” node


<StyleSheet>
    <![CDATA[
        body{ font-size:14px; font-family:"Arial"; text-align:left; letter-spacing:0px; }
        ...
    </StyleSheet>

and just set “Arial” here in the body attributes. This is used for all the windows texts (info, contacts, etc…)

Do the same then in your book XMLs (always in the StyleSheet nodes). This affects instead the area and text modules in your pages.

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • United States
ZIMACOM Purchased

Hello CyberLeaf, First of all, thnak you…thanks you….thank you for your technical support, so far the BEST OF ACTIVEDEN ….congratulations you are the best. Now I am able to use the book…I love it, I am able to manipulate the changes so far. My clinet is happy.

Now I have a question for this time. 1. Where can I resize the thumbnail ones the page is open I see my 3 magazines…those covers can be resize to a small size??? If so can u be very specific where??? in Global.xml or in Book1.xml???

Thanks, and ones again thanks for taking the time to answer the questions with intelligence. Finally some one with a good attitude!!!

john

CyberLeaf

Hi John,
I am glad you are happy with your purchase, and thanks for the appreciation, again :)

You can control the books thumbs size using the options padding and columns in the “library” node (global.xml)


<library tooltip="CHOOSE A BOOK" open_at_start="true" columns="3" padding="25" show_titles="true" blackbackground_transparency="60" selector="arrow"/>

  • with columns you specify the number of columns in which the book thumbs are divided. Even if you set this to a number higher than your actual thumbs, increasing it will result in reducing the thumbs size (more thumbs must fit within a single row)
  • with padding you control the size (in pixels) of the empty area around the thumbs list (a sort of margin from the application borders). So, increasing the padding, and reducing the actual size of the thumbs list, will result in reducing the single thumbs dimensions (they must be smaller to fit within the reduced available space)
  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
eric318 Purchased

Hi CyberLeaf, Thanks for your reply. Your instructions worked- the Hebrew text appears instead of the question marks i was seeing before, however in Hebrew there are vowels under each letter, the vowels here are not properly aligned with the letters (although it looks fine in the xml).

Eric

CyberLeaf

Unfortunately I am not an expert of Hebrew language, so please send me an email (abaroni[at]gmail.com) with your XML (with the Hebrew text), and maybe a screenshot to let me understand better how the characters should be aligned.

I had helped another customer before who was using Hebrew characters, but he never told me of this problem (maybe I should get the both of you in contact… :) ).
Anyway, if it’s something that can be fixed in Flash I will be glad to help you.

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • United States
ZIMACOM Purchased

Hello CyberLeaf. WONDERFULL , Thanks for your answer was very help full. Now I have one more question from one of my clients. And he askme how many logos can I add at the same time, I read in your instructions that there are many place where can I add the logo, but at the same time and linked how many can I add.

Can you show me how can I add it, I try but it was not succesfull. And spend a whole day trying to figure out…so please can you guide me as always with your wonderfull answers…that for me you are the best my friend.

Thnaks again. john

CyberLeaf

Hi John, sorry for the delay.

To add more logos to the background just add more logo nodes in the global.xml, inside the “Interface” node, this way:


<logo url="assets/backgrounds/yourLogo.png" position="left bottom" link="..." linktarget="_blank"/>

<logo url="assets/backgrounds/yourLogo2.png" position="center top" link="..." />

...

Just set a different position attribute if you do not want them to overlap.
You have 9 predefined positions you can choose from, defined by combining the words top,bottom and middle with left,right and center, as you can see from the example above.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

I’m having a problem with accents. ã õ â ê î pages of the magazine (book.xml). From the menu, all is working fine all the tooltips of the top bar but the rest, nothing works accent , i’m trying to change info window but i have no success. how can i fix it ?

CyberLeaf

Hi,
I don’t remember… which version of the swf are you using? The one with Arial font?
Can you please send me your XMLs with an email so I can have a look at them?
So, only the Info window text is not showing properly, isn’t it? Have you recompiled the swf from the fla?

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

I am interested in buying the Power Book, but I have two questions. Can I use an InDesign file (exported as a .swf) with Power Book? Also, can I turn off the print feature?

CyberLeaf

Hi paperclipped, thanks for your interest in my software!

About InDesign export:
as long as your file is a standard swf you should have no problems using it… so the answer is yes. Anyway, I don’t know about interactivity (if your pages for example contains links to other pages), but you can always recreate it within the flip book if you want, using for example area modules.

You can disable almost every single feature (so for example the print button as well) just by setting an option in the XML .

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
jflorido Purchased

Hello. First of all, congratulations on this great product! I have a website built in Flash CMS (moto cms), will this work with it? If so, where do i upload the files?

CyberLeaf

Hi jflorido, thanks for your purchase! :)

I cannot help you with Moto CSM , since I have never used it and so I don’t know how it works, but I am pretty sure you should be able to include Power Book within it, as a standard swf or even using the swc component maybe… but there should be no problem since it is just a standard Flash application like the others.

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

so, i have compiled to translate my swf archive, but i haven’t change the font. Its Myriad Web and the version is 1.3 , i will send to you included my .fla archive. thanks for helping.

Edit: the accents only work in tooltips from menu, all the rest no.

CyberLeaf

since you have recompiled the swf it must be related to the fonts you have installed on your system.

Have you installed Myriad Web on your computer before recompiling the swf?
Can you please check the “font embedding” panel in the fla (Text > Font Embedding…) if the “Myriad Web” font (normal, bold and italic) has all the characters with accents included in the list on the right?
Alternatively you can also try creating your swf starting from the fla with Arial font (instead of Myriad Web)

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • United States
ZIMACOM Purchased

Hello CyberLeaf, Just to say hello, and thanks, congratulations, the best, you are excellent in technical support. In time, honest, good understanding of the service and answer the questions….so far the book is working wonderfull, my client is Happy and impress and thanks yo you CyberLeaf.

Hope you will have tons of sales…and hopefully I will buy more of your products in the future.

Thanks for your effort, and never change…and for sure you will have more happy coustomers.

Best regards JOHN CEBALLOS

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
lluukinha Purchased

all works ok ! Very thanks :)

now i have onw doubt: can i create one custom_icon with the objective is open other window like info window ? or custom icons only get specified urls ? thanks

CyberLeaf

Hi, I apologize for the delay of my answer. I cannot get online during last week :(

About custom buttons
when you add a “custom_button” to the toolbar (adding it to the “Interface” node in global.xml) you can link it to a book page to open, to an external link or to a javascript callback.
So, you cannot open a second Info window, unless you create it using javascript (so you can for example open an html lightbox-popup just using javascript, put your code within a function, and then call that function/callback with your custom button).

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hello, firstly I must congratulate you for your software, this is one of the best flip-books I found on the internet.

So, there is a way to create a custom button at the toolbar to put this function?

back_btn.addEventListener(MouseEvent.MOUSE_DOWN, backtomain);
function backtomain(event:MouseEvent):void { 
    gotoAndPlay(1, "Scene 1"); 
}

The PowerBook is inside of my Flash project, so I want this button to back to the main scene when its clicked.

Regards

CyberLeaf

Hi CokeCancino, thanks for your purchase and appreciation! :)

You can add custom buttons in the toolbar from the global XML , but they can only make the book jump to a particular page, open an external link or call a javascript callback (page 11 of the help manual for more info).

In your case I can only think of 2 solutions at the moment:
if you Flash application is running within a browser you can use the built-in custom buttons and then call a javascript callback (which is actually just a javascript function active in your html page). From this js function you can then call a function of your main Flash application (just registering a Flash function in your application as an external callback). It is a sort double passage, but it should work.
If, instead, you are not running your main Flash application in a browser (so the swf is not run from an html page) the only solution is to add this button in your main Flash application directly and then overlay it on the Power Book application. It’s not the best solution but it’s reacher easy to implement.
Creating a custom button (with your custom function) WITHIN Power Book requires you to edit the Power Book classes (so to modify the interface and include a new button), which is not so straightforward.

by
by
by
by
by